From e7dec574cecda8764ecac5c1e7a2bc9b6cd8b750 Mon Sep 17 00:00:00 2001 From: Tony Murray Date: Sun, 14 Jul 2024 11:17:10 -0500 Subject: [PATCH] Change entPhysical table column defaults (#16199) * Change entPhysical table column defaults * Update db_schema.yaml * Restore unrelated db_schema change --- ...13_133839_modify_ent_physical_defaults.php | 42 + misc/db_schema.yaml | 16 +- tests/data/ciena-rls_6500-r2.json | 2 +- tests/data/cimc.json | 4 +- tests/data/junos.json | 112 +- tests/data/junos_ex.json | 72 +- tests/data/junos_ex4600mp.json | 104 +- tests/data/junos_mx5t-isis.json | 48 +- tests/data/junos_qfx5100.json | 20 +- tests/data/junos_rpm.json | 24 +- tests/data/junos_srx3600.json | 640 +++---- tests/data/junos_vmx.json | 10 +- tests/data/linux_lsi.json | 368 ++-- tests/data/schleifenbauer.json | 228 +-- tests/data/schleifenbauer_dpm27e.json | 736 ++++---- tests/data/tait-infra93_tb9300.json | 4 +- tests/data/timos_7705.json | 16 +- tests/data/timos_hc.json | 16 +- tests/data/timos_ixr-s.json | 16 +- tests/data/vrp_5720-32x-ei.json | 104 +- tests/data/vrp_5720-vrf.json | 472 ++--- tests/data/vrp_5720.json | 104 +- tests/data/vrp_ac6605-26.json | 12 +- tests/data/vrp_ar169sfp.json | 4 +- tests/data/vrp_ne.json | 164 +- tests/data/vrp_power.json | 1580 ++++++++--------- 26 files changed, 2480 insertions(+), 2438 deletions(-) create mode 100644 database/migrations/2024_07_13_133839_modify_ent_physical_defaults.php diff --git a/database/migrations/2024_07_13_133839_modify_ent_physical_defaults.php b/database/migrations/2024_07_13_133839_modify_ent_physical_defaults.php new file mode 100644 index 0000000000..f9118d119b --- /dev/null +++ b/database/migrations/2024_07_13_133839_modify_ent_physical_defaults.php @@ -0,0 +1,42 @@ +text('entPhysicalDescr')->nullable()->change(); + $table->text('entPhysicalClass')->nullable()->change(); + $table->text('entPhysicalName')->nullable()->change(); + $table->text('entPhysicalModelName')->nullable()->change(); + $table->text('entPhysicalSerialNum')->nullable()->change(); + $table->integer('entPhysicalContainedIn')->default(0)->change(); + $table->integer('entPhysicalParentRelPos')->default(-1)->change(); + $table->text('entPhysicalMfgName')->nullable()->change(); + }); + } + + /** + * Reverse the migrations. + */ + public function down(): void + { + Schema::table('entPhysical', function (Blueprint $table) { + $table->text('entPhysicalDescr')->change(); + $table->text('entPhysicalClass')->change(); + $table->text('entPhysicalName')->change(); + $table->text('entPhysicalModelName')->change(); + $table->text('entPhysicalSerialNum')->change(); + $table->integer('entPhysicalContainedIn')->change(); + $table->integer('entPhysicalParentRelPos')->change(); + $table->text('entPhysicalMfgName')->change(); + }); + } +}; diff --git a/misc/db_schema.yaml b/misc/db_schema.yaml index 17fcceffa8..02d38b6676 100644 --- a/misc/db_schema.yaml +++ b/misc/db_schema.yaml @@ -778,21 +778,21 @@ entPhysical: - { Field: entPhysical_id, Type: 'int unsigned', 'Null': false, Extra: auto_increment } - { Field: device_id, Type: 'int unsigned', 'Null': false, Extra: '' } - { Field: entPhysicalIndex, Type: int, 'Null': false, Extra: '' } - - { Field: entPhysicalDescr, Type: text, 'Null': false, Extra: '' } - - { Field: entPhysicalClass, Type: text, 'Null': false, Extra: '' } - - { Field: entPhysicalName, Type: text, 'Null': false, Extra: '' } + - { Field: entPhysicalDescr, Type: text, 'Null': true, Extra: '' } + - { Field: entPhysicalClass, Type: text, 'Null': true, Extra: '' } + - { Field: entPhysicalName, Type: text, 'Null': true, Extra: '' } - { Field: entPhysicalHardwareRev, Type: varchar(64), 'Null': true, Extra: '' } - { Field: entPhysicalFirmwareRev, Type: varchar(64), 'Null': true, Extra: '' } - { Field: entPhysicalSoftwareRev, Type: varchar(64), 'Null': true, Extra: '' } - { Field: entPhysicalAlias, Type: varchar(32), 'Null': true, Extra: '' } - { Field: entPhysicalAssetID, Type: varchar(32), 'Null': true, Extra: '' } - { Field: entPhysicalIsFRU, Type: varchar(8), 'Null': true, Extra: '' } - - { Field: entPhysicalModelName, Type: text, 'Null': false, Extra: '' } + - { Field: entPhysicalModelName, Type: text, 'Null': true, Extra: '' } - { Field: entPhysicalVendorType, Type: text, 'Null': true, Extra: '' } - - { Field: entPhysicalSerialNum, Type: text, 'Null': false, Extra: '' } - - { Field: entPhysicalContainedIn, Type: int, 'Null': false, Extra: '' } - - { Field: entPhysicalParentRelPos, Type: int, 'Null': false, Extra: '' } - - { Field: entPhysicalMfgName, Type: text, 'Null': false, Extra: '' } + - { Field: entPhysicalSerialNum, Type: text, 'Null': true, Extra: '' } + - { Field: entPhysicalContainedIn, Type: int, 'Null': false, Extra: '', Default: '0' } + - { Field: entPhysicalParentRelPos, Type: int, 'Null': false, Extra: '', Default: '-1' } + - { Field: entPhysicalMfgName, Type: text, 'Null': true, Extra: '' } - { Field: ifIndex, Type: int, 'Null': true, Extra: '' } Indexes: PRIMARY: { Name: PRIMARY, Columns: [entPhysical_id], Unique: true, Type: BTREE } diff --git a/tests/data/ciena-rls_6500-r2.json b/tests/data/ciena-rls_6500-r2.json index e83de76fc9..7e4df9a805 100644 --- a/tests/data/ciena-rls_6500-r2.json +++ b/tests/data/ciena-rls_6500-r2.json @@ -15783,7 +15783,7 @@ "entPhysicalIsFRU": "true", "entPhysicalModelName": "NTK809XA", "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Ciena", diff --git a/tests/data/cimc.json b/tests/data/cimc.json index 7a3a4583a1..03d048d134 100644 --- a/tests/data/cimc.json +++ b/tests/data/cimc.json @@ -396,7 +396,7 @@ "entPhysicalSerialNum": "Not Specified", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { @@ -415,7 +415,7 @@ "entPhysicalSerialNum": "Not Specified", "entPhysicalContainedIn": 2, "entPhysicalParentRelPos": -1, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/junos.json b/tests/data/junos.json index b10e47e251..1b38a28d45 100644 --- a/tests/data/junos.json +++ b/tests/data/junos.json @@ -29865,8 +29865,8 @@ "entPhysical": [ { "entPhysicalIndex": 2110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Power Supply: Power Supply 0 @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29874,9 +29874,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29884,8 +29884,8 @@ }, { "entPhysicalIndex": 2210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Power Supply: Power Supply 0 @ 1/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29893,9 +29893,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29903,8 +29903,8 @@ }, { "entPhysicalIndex": 4111, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 1 @ 0/0/0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29912,9 +29912,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29922,8 +29922,8 @@ }, { "entPhysicalIndex": 4112, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 2 @ 0/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29931,9 +29931,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29941,8 +29941,8 @@ }, { "entPhysicalIndex": 4113, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 3 @ 0/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29950,9 +29950,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29960,8 +29960,8 @@ }, { "entPhysicalIndex": 4211, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 1 @ 1/0/0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29969,9 +29969,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29979,8 +29979,8 @@ }, { "entPhysicalIndex": 4212, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 2 @ 1/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -29988,9 +29988,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -29998,8 +29998,8 @@ }, { "entPhysicalIndex": 4213, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN: Fan 3 @ 1/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30007,9 +30007,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30017,8 +30017,8 @@ }, { "entPhysicalIndex": 7100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4200-24T, 8 POE @ 0/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30026,9 +30026,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30036,8 +30036,8 @@ }, { "entPhysicalIndex": 7200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4200-24T, 8 POE @ 1/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30045,9 +30045,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30055,8 +30055,8 @@ }, { "entPhysicalIndex": 8110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x 10/100/1000 Base-T @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30064,9 +30064,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30074,8 +30074,8 @@ }, { "entPhysicalIndex": 8210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x 10/100/1000 Base-T @ 1/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30083,9 +30083,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30093,8 +30093,8 @@ }, { "entPhysicalIndex": 9100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30102,9 +30102,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -30112,8 +30112,8 @@ }, { "entPhysicalIndex": 9200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -30121,9 +30121,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", diff --git a/tests/data/junos_ex.json b/tests/data/junos_ex.json index 5a2fe4fd92..6b6941b823 100644 --- a/tests/data/junos_ex.json +++ b/tests/data/junos_ex.json @@ -816,8 +816,8 @@ "entPhysical": [ { "entPhysicalIndex": 2110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -825,9 +825,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -835,8 +835,8 @@ }, { "entPhysicalIndex": 2120, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Power Supply 1 @ 0/1/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -844,9 +844,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -854,8 +854,8 @@ }, { "entPhysicalIndex": 4110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -863,9 +863,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -873,8 +873,8 @@ }, { "entPhysicalIndex": 4120, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 0/1/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -882,9 +882,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -892,8 +892,8 @@ }, { "entPhysicalIndex": 7100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FPC: EX3400-48T @ 0/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -901,9 +901,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -911,8 +911,8 @@ }, { "entPhysicalIndex": 8110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PIC: 48x10/100/1000 Base-T @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -920,9 +920,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -930,8 +930,8 @@ }, { "entPhysicalIndex": 8120, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PIC: 2x40G QSFP @ 0/1/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -939,9 +939,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -949,8 +949,8 @@ }, { "entPhysicalIndex": 8130, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x10G SFP/SFP+ @ 0/2/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -958,9 +958,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -968,8 +968,8 @@ }, { "entPhysicalIndex": 9100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -977,9 +977,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", diff --git a/tests/data/junos_ex4600mp.json b/tests/data/junos_ex4600mp.json index 2ebc846ce4..1d9cd55422 100644 --- a/tests/data/junos_ex4600mp.json +++ b/tests/data/junos_ex4600mp.json @@ -179906,7 +179906,7 @@ { "entPhysicalIndex": 2110, "entPhysicalDescr": "Power Supply 0 @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 0/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -179925,7 +179925,7 @@ { "entPhysicalIndex": 2210, "entPhysicalDescr": "Power Supply 0 @ 1/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 1/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -179944,7 +179944,7 @@ { "entPhysicalIndex": 2310, "entPhysicalDescr": "Power Supply 0 @ 2/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 2/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -179963,7 +179963,7 @@ { "entPhysicalIndex": 2410, "entPhysicalDescr": "Power Supply 0 @ 3/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 3/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -179982,7 +179982,7 @@ { "entPhysicalIndex": 2510, "entPhysicalDescr": "Power Supply 0 @ 4/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 4/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -180001,7 +180001,7 @@ { "entPhysicalIndex": 2610, "entPhysicalDescr": "Power Supply 0 @ 5/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 5/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -180020,7 +180020,7 @@ { "entPhysicalIndex": 2710, "entPhysicalDescr": "Power Supply 0 @ 6/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 6/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -180039,7 +180039,7 @@ { "entPhysicalIndex": 2810, "entPhysicalDescr": "Power Supply 0 @ 7/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 7/0/*", "entPhysicalHardwareRev": "REV 03", "entPhysicalFirmwareRev": null, @@ -180058,7 +180058,7 @@ { "entPhysicalIndex": 4110, "entPhysicalDescr": "Fan Tray 0 @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180077,7 +180077,7 @@ { "entPhysicalIndex": 4120, "entPhysicalDescr": "Fan Tray 1 @ 0/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 0/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180096,7 +180096,7 @@ { "entPhysicalIndex": 4210, "entPhysicalDescr": "Fan Tray 0 @ 1/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 1/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180115,7 +180115,7 @@ { "entPhysicalIndex": 4220, "entPhysicalDescr": "Fan Tray 1 @ 1/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 1/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180134,7 +180134,7 @@ { "entPhysicalIndex": 4310, "entPhysicalDescr": "Fan Tray 0 @ 2/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 2/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180153,7 +180153,7 @@ { "entPhysicalIndex": 4320, "entPhysicalDescr": "Fan Tray 1 @ 2/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 2/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180172,7 +180172,7 @@ { "entPhysicalIndex": 4410, "entPhysicalDescr": "Fan Tray 0 @ 3/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 3/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180191,7 +180191,7 @@ { "entPhysicalIndex": 4420, "entPhysicalDescr": "Fan Tray 1 @ 3/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 3/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180210,7 +180210,7 @@ { "entPhysicalIndex": 4510, "entPhysicalDescr": "Fan Tray 0 @ 4/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 4/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180229,7 +180229,7 @@ { "entPhysicalIndex": 4520, "entPhysicalDescr": "Fan Tray 1 @ 4/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 4/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180248,7 +180248,7 @@ { "entPhysicalIndex": 4610, "entPhysicalDescr": "Fan Tray 0 @ 5/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 5/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180267,7 +180267,7 @@ { "entPhysicalIndex": 4620, "entPhysicalDescr": "Fan Tray 1 @ 5/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 5/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180286,7 +180286,7 @@ { "entPhysicalIndex": 4710, "entPhysicalDescr": "Fan Tray 0 @ 6/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 6/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180305,7 +180305,7 @@ { "entPhysicalIndex": 4720, "entPhysicalDescr": "Fan Tray 1 @ 6/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 6/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180324,7 +180324,7 @@ { "entPhysicalIndex": 4810, "entPhysicalDescr": "Fan Tray 0 @ 7/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 7/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180343,7 +180343,7 @@ { "entPhysicalIndex": 4820, "entPhysicalDescr": "Fan Tray 1 @ 7/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 7/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180362,7 +180362,7 @@ { "entPhysicalIndex": 7100, "entPhysicalDescr": "FPC: EX4300-48MP @ 0/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 0/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180381,7 +180381,7 @@ { "entPhysicalIndex": 7200, "entPhysicalDescr": "FPC: EX4300-48MP @ 1/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 1/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180400,7 +180400,7 @@ { "entPhysicalIndex": 7300, "entPhysicalDescr": "FPC: EX4300-48MP @ 2/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 2/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180419,7 +180419,7 @@ { "entPhysicalIndex": 7400, "entPhysicalDescr": "FPC: EX4300-48MP @ 3/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 3/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180438,7 +180438,7 @@ { "entPhysicalIndex": 7500, "entPhysicalDescr": "FPC: EX4300-48MP @ 4/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 4/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180457,7 +180457,7 @@ { "entPhysicalIndex": 7600, "entPhysicalDescr": "FPC: EX4300-48MP @ 5/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 5/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180476,7 +180476,7 @@ { "entPhysicalIndex": 7700, "entPhysicalDescr": "FPC: EX4300-48MP @ 6/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 6/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180495,7 +180495,7 @@ { "entPhysicalIndex": 7800, "entPhysicalDescr": "FPC: EX4300-48MP @ 7/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: EX4300-48MP @ 7/*/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180514,7 +180514,7 @@ { "entPhysicalIndex": 8110, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 0/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180533,7 +180533,7 @@ { "entPhysicalIndex": 8120, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 0/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 0/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180552,7 +180552,7 @@ { "entPhysicalIndex": 8130, "entPhysicalDescr": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 0/2/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 0/2/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180571,7 +180571,7 @@ { "entPhysicalIndex": 8210, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 1/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 1/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180590,7 +180590,7 @@ { "entPhysicalIndex": 8220, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 1/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 1/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180609,7 +180609,7 @@ { "entPhysicalIndex": 8230, "entPhysicalDescr": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 1/2/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 2x40G/1x100G QSFP+/QSFP28 @ 1/2/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180628,7 +180628,7 @@ { "entPhysicalIndex": 8310, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 2/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 2/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180647,7 +180647,7 @@ { "entPhysicalIndex": 8320, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 2/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 2/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180666,7 +180666,7 @@ { "entPhysicalIndex": 8410, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 3/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 3/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180685,7 +180685,7 @@ { "entPhysicalIndex": 8420, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 3/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 3/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180704,7 +180704,7 @@ { "entPhysicalIndex": 8510, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 4/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 4/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180723,7 +180723,7 @@ { "entPhysicalIndex": 8520, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 4/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 4/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180742,7 +180742,7 @@ { "entPhysicalIndex": 8610, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 5/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 5/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180761,7 +180761,7 @@ { "entPhysicalIndex": 8620, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 5/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 5/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180780,7 +180780,7 @@ { "entPhysicalIndex": 8710, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 6/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 6/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180799,7 +180799,7 @@ { "entPhysicalIndex": 8720, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 6/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 6/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180818,7 +180818,7 @@ { "entPhysicalIndex": 8810, "entPhysicalDescr": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 7/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 24x10M/100M/1G Base-T & 24x 100M/1G/2.5G/5G/10G Base-T @ 7/0/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180837,7 +180837,7 @@ { "entPhysicalIndex": 8820, "entPhysicalDescr": "PIC: 4x40G QSFP+ @ 7/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x40G QSFP+ @ 7/1/*", "entPhysicalHardwareRev": "REV 05", "entPhysicalFirmwareRev": null, @@ -180856,7 +180856,7 @@ { "entPhysicalIndex": 9100, "entPhysicalDescr": "Routing Engine 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -180875,7 +180875,7 @@ { "entPhysicalIndex": 9200, "entPhysicalDescr": "Routing Engine 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, diff --git a/tests/data/junos_mx5t-isis.json b/tests/data/junos_mx5t-isis.json index d9d77092ea..435cb1ea22 100644 --- a/tests/data/junos_mx5t-isis.json +++ b/tests/data/junos_mx5t-isis.json @@ -11587,7 +11587,7 @@ { "entPhysicalIndex": 1100, "entPhysicalDescr": "midplane", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "midplane", "entPhysicalHardwareRev": "REV 08", "entPhysicalFirmwareRev": null, @@ -11606,7 +11606,7 @@ { "entPhysicalIndex": 2100, "entPhysicalDescr": "PEM 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PEM 0", "entPhysicalHardwareRev": "Rev 04", "entPhysicalFirmwareRev": null, @@ -11625,7 +11625,7 @@ { "entPhysicalIndex": 4100, "entPhysicalDescr": "Fan Tray", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11644,7 +11644,7 @@ { "entPhysicalIndex": 4110, "entPhysicalDescr": "Fan 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11663,7 +11663,7 @@ { "entPhysicalIndex": 4120, "entPhysicalDescr": "Fan 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11682,7 +11682,7 @@ { "entPhysicalIndex": 4130, "entPhysicalDescr": "Fan 3", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 3", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11701,7 +11701,7 @@ { "entPhysicalIndex": 4140, "entPhysicalDescr": "Fan 4", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 4", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11720,7 +11720,7 @@ { "entPhysicalIndex": 4150, "entPhysicalDescr": "Fan 5", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan 5", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11739,7 +11739,7 @@ { "entPhysicalIndex": 6100, "entPhysicalDescr": "TFEB MX5-T", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "TFEB MX5-T", "entPhysicalHardwareRev": "REV 08", "entPhysicalFirmwareRev": null, @@ -11758,7 +11758,7 @@ { "entPhysicalIndex": 6110, "entPhysicalDescr": "TFEB Intake temperature sensor", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "TFEB Intake temperature sensor", "entPhysicalHardwareRev": "REV 08", "entPhysicalFirmwareRev": null, @@ -11777,7 +11777,7 @@ { "entPhysicalIndex": 7100, "entPhysicalDescr": "FPC: MPC BUILTIN @ 0/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: MPC BUILTIN @ 0/*/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11796,7 +11796,7 @@ { "entPhysicalIndex": 7200, "entPhysicalDescr": "FPC: MPC BUILTIN @ 1/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: MPC BUILTIN @ 1/*/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11815,7 +11815,7 @@ { "entPhysicalIndex": 8110, "entPhysicalDescr": "PIC: 4x 10GE XFP @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 4x 10GE XFP @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11834,7 +11834,7 @@ { "entPhysicalIndex": 8210, "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 10x 1GE(LAN) SFP @ 1/0/*", "entPhysicalHardwareRev": "REV 26", "entPhysicalFirmwareRev": null, @@ -11853,7 +11853,7 @@ { "entPhysicalIndex": 8220, "entPhysicalDescr": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 10x 1GE(LAN) SFP @ 1/1/*", "entPhysicalHardwareRev": "REV 26", "entPhysicalFirmwareRev": null, @@ -11872,7 +11872,7 @@ { "entPhysicalIndex": 9100, "entPhysicalDescr": "Routing Engine", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11891,7 +11891,7 @@ { "entPhysicalIndex": 10100, "entPhysicalDescr": "FPM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11910,7 +11910,7 @@ { "entPhysicalIndex": 10110, "entPhysicalDescr": "FPM Board", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM Board", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11929,7 +11929,7 @@ { "entPhysicalIndex": 10120, "entPhysicalDescr": "FPM Display", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM Display", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11948,7 +11948,7 @@ { "entPhysicalIndex": 10130, "entPhysicalDescr": "FPM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11967,7 +11967,7 @@ { "entPhysicalIndex": 10140, "entPhysicalDescr": "FPM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11986,7 +11986,7 @@ { "entPhysicalIndex": 10150, "entPhysicalDescr": "FPM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPM", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -12005,7 +12005,7 @@ { "entPhysicalIndex": 20110, "entPhysicalDescr": "MIC: 4x 10GE XFP @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MIC: 4x 10GE XFP @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -12024,7 +12024,7 @@ { "entPhysicalIndex": 20210, "entPhysicalDescr": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MIC: 3D 20x 1GE(LAN) SFP @ 1/0/*", "entPhysicalHardwareRev": "REV 26", "entPhysicalFirmwareRev": null, diff --git a/tests/data/junos_qfx5100.json b/tests/data/junos_qfx5100.json index eeef382439..11e7ae45ef 100644 --- a/tests/data/junos_qfx5100.json +++ b/tests/data/junos_qfx5100.json @@ -11081,7 +11081,7 @@ { "entPhysicalIndex": 2110, "entPhysicalDescr": "Power Supply 0 @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 0 @ 0/0/*", "entPhysicalHardwareRev": "REV 04", "entPhysicalFirmwareRev": null, @@ -11100,7 +11100,7 @@ { "entPhysicalIndex": 2120, "entPhysicalDescr": "Power Supply 1 @ 0/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Power Supply 1 @ 0/1/*", "entPhysicalHardwareRev": "REV 04", "entPhysicalFirmwareRev": null, @@ -11119,7 +11119,7 @@ { "entPhysicalIndex": 4110, "entPhysicalDescr": "Fan Tray 0 @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 0 @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11138,7 +11138,7 @@ { "entPhysicalIndex": 4120, "entPhysicalDescr": "Fan Tray 1 @ 0/1/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 1 @ 0/1/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11157,7 +11157,7 @@ { "entPhysicalIndex": 4130, "entPhysicalDescr": "Fan Tray 2 @ 0/2/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 2 @ 0/2/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11176,7 +11176,7 @@ { "entPhysicalIndex": 4140, "entPhysicalDescr": "Fan Tray 3 @ 0/3/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 3 @ 0/3/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11195,7 +11195,7 @@ { "entPhysicalIndex": 4150, "entPhysicalDescr": "Fan Tray 4 @ 0/4/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Fan Tray 4 @ 0/4/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11214,7 +11214,7 @@ { "entPhysicalIndex": 7100, "entPhysicalDescr": "FPC: QFX5100-48S-6Q @ 0/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: QFX5100-48S-6Q @ 0/*/*", "entPhysicalHardwareRev": "REV 09", "entPhysicalFirmwareRev": null, @@ -11233,7 +11233,7 @@ { "entPhysicalIndex": 8110, "entPhysicalDescr": "PIC: 48x10G-6x40G @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 48x10G-6x40G @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -11252,7 +11252,7 @@ { "entPhysicalIndex": 9100, "entPhysicalDescr": "Routing Engine 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, diff --git a/tests/data/junos_rpm.json b/tests/data/junos_rpm.json index 6a7ca26da8..6dcc055465 100644 --- a/tests/data/junos_rpm.json +++ b/tests/data/junos_rpm.json @@ -13206,7 +13206,7 @@ { "entPhysicalIndex": 1100, "entPhysicalDescr": "midplane", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "midplane", "entPhysicalHardwareRev": "REV 56", "entPhysicalFirmwareRev": null, @@ -13225,7 +13225,7 @@ { "entPhysicalIndex": 2100, "entPhysicalDescr": "PEM 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PEM 0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13244,7 +13244,7 @@ { "entPhysicalIndex": 4100, "entPhysicalDescr": "SRX240 PowerSupply fan 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 PowerSupply fan 1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13263,7 +13263,7 @@ { "entPhysicalIndex": 4200, "entPhysicalDescr": "SRX240 PowerSupply fan 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 PowerSupply fan 2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13282,7 +13282,7 @@ { "entPhysicalIndex": 4300, "entPhysicalDescr": "SRX240 CPU fan 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 CPU fan 1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13301,7 +13301,7 @@ { "entPhysicalIndex": 4400, "entPhysicalDescr": "SRX240 CPU fan 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 CPU fan 2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13320,7 +13320,7 @@ { "entPhysicalIndex": 4500, "entPhysicalDescr": "SRX240 IO fan 1", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 IO fan 1", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13339,7 +13339,7 @@ { "entPhysicalIndex": 4600, "entPhysicalDescr": "SRX240 IO fan 2", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "SRX240 IO fan 2", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13358,7 +13358,7 @@ { "entPhysicalIndex": 7100, "entPhysicalDescr": "FPC: FPC @ 0/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: FPC @ 0/*/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13377,7 +13377,7 @@ { "entPhysicalIndex": 8110, "entPhysicalDescr": "PIC: 16x GE Base PIC @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: 16x GE Base PIC @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13396,7 +13396,7 @@ { "entPhysicalIndex": 9100, "entPhysicalDescr": "Routing Engine", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine", "entPhysicalHardwareRev": "REV 56", "entPhysicalFirmwareRev": null, @@ -13415,7 +13415,7 @@ { "entPhysicalIndex": 9110, "entPhysicalDescr": "USB Hub", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "USB Hub", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, diff --git a/tests/data/junos_srx3600.json b/tests/data/junos_srx3600.json index 9dc4de4121..83d14eebc3 100644 --- a/tests/data/junos_srx3600.json +++ b/tests/data/junos_srx3600.json @@ -12771,8 +12771,8 @@ "entPhysical": [ { "entPhysicalIndex": 1100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 midplane", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12780,9 +12780,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12790,8 +12790,8 @@ }, { "entPhysicalIndex": 1200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 midplane", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12799,9 +12799,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12809,8 +12809,8 @@ }, { "entPhysicalIndex": 2100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PEM 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12818,9 +12818,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12828,8 +12828,8 @@ }, { "entPhysicalIndex": 2200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PEM 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12837,9 +12837,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12847,8 +12847,8 @@ }, { "entPhysicalIndex": 2300, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PEM 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12856,9 +12856,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12866,8 +12866,8 @@ }, { "entPhysicalIndex": 2400, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PEM 3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12875,9 +12875,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12885,8 +12885,8 @@ }, { "entPhysicalIndex": 2500, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PEM 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12894,9 +12894,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12904,8 +12904,8 @@ }, { "entPhysicalIndex": 2600, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PEM 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12913,9 +12913,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12923,8 +12923,8 @@ }, { "entPhysicalIndex": 2700, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PEM 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12932,9 +12932,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12942,8 +12942,8 @@ }, { "entPhysicalIndex": 2800, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PEM 3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12951,9 +12951,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12961,8 +12961,8 @@ }, { "entPhysicalIndex": 4100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan Tray", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12970,9 +12970,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12980,8 +12980,8 @@ }, { "entPhysicalIndex": 4110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -12989,9 +12989,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -12999,8 +12999,8 @@ }, { "entPhysicalIndex": 4120, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13008,9 +13008,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13018,8 +13018,8 @@ }, { "entPhysicalIndex": 4130, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13027,9 +13027,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13037,8 +13037,8 @@ }, { "entPhysicalIndex": 4140, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13046,9 +13046,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13056,8 +13056,8 @@ }, { "entPhysicalIndex": 4150, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13065,9 +13065,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13075,8 +13075,8 @@ }, { "entPhysicalIndex": 4160, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13084,9 +13084,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13094,8 +13094,8 @@ }, { "entPhysicalIndex": 4170, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13103,9 +13103,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13113,8 +13113,8 @@ }, { "entPhysicalIndex": 4180, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13122,9 +13122,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13132,8 +13132,8 @@ }, { "entPhysicalIndex": 4190, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13141,9 +13141,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13151,8 +13151,8 @@ }, { "entPhysicalIndex": 4200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan Tray", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13160,9 +13160,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13170,8 +13170,8 @@ }, { "entPhysicalIndex": 4210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13179,9 +13179,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13189,8 +13189,8 @@ }, { "entPhysicalIndex": 4220, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13198,9 +13198,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13208,8 +13208,8 @@ }, { "entPhysicalIndex": 4230, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13217,9 +13217,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13227,8 +13227,8 @@ }, { "entPhysicalIndex": 4240, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13236,9 +13236,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13246,8 +13246,8 @@ }, { "entPhysicalIndex": 4250, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13255,9 +13255,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13265,8 +13265,8 @@ }, { "entPhysicalIndex": 4260, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13274,9 +13274,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13284,8 +13284,8 @@ }, { "entPhysicalIndex": 4270, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13293,9 +13293,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13303,8 +13303,8 @@ }, { "entPhysicalIndex": 4280, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13312,9 +13312,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13322,8 +13322,8 @@ }, { "entPhysicalIndex": 4290, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13331,9 +13331,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13341,8 +13341,8 @@ }, { "entPhysicalIndex": 7100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SFB 12GE @ 0/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13350,9 +13350,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13360,8 +13360,8 @@ }, { "entPhysicalIndex": 7200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX1k3k 2x10GE NP-IOC @ 1/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13369,9 +13369,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13379,8 +13379,8 @@ }, { "entPhysicalIndex": 7500, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX1k3k 2x10GE NP-IOC @ 4/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13388,9 +13388,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13398,8 +13398,8 @@ }, { "entPhysicalIndex": 7700, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 6/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13407,9 +13407,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13417,8 +13417,8 @@ }, { "entPhysicalIndex": 7800, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 7/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13426,9 +13426,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13436,8 +13436,8 @@ }, { "entPhysicalIndex": 7900, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 8/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13445,9 +13445,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13455,8 +13455,8 @@ }, { "entPhysicalIndex": 8110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: 8x 1GE-TX 4x 1GE-SFP @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13464,9 +13464,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13474,8 +13474,8 @@ }, { "entPhysicalIndex": 8210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: 2x 10GE-SFP+ @ 1/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13483,9 +13483,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13493,8 +13493,8 @@ }, { "entPhysicalIndex": 8510, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: 2x 10GE-SFP+ @ 4/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13502,9 +13502,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13512,8 +13512,8 @@ }, { "entPhysicalIndex": 8710, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Cp-Flow @ 6/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13521,9 +13521,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13531,8 +13531,8 @@ }, { "entPhysicalIndex": 8810, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Flow @ 7/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13540,9 +13540,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13550,8 +13550,8 @@ }, { "entPhysicalIndex": 8910, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Flow @ 8/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13559,9 +13559,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13569,8 +13569,8 @@ }, { "entPhysicalIndex": 9100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Routing Engine 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13578,9 +13578,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13588,8 +13588,8 @@ }, { "entPhysicalIndex": 9300, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Routing Engine 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13597,9 +13597,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13607,8 +13607,8 @@ }, { "entPhysicalIndex": 10110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPM Board", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13616,9 +13616,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13626,8 +13626,8 @@ }, { "entPhysicalIndex": 10210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPM Board", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13635,9 +13635,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13645,8 +13645,8 @@ }, { "entPhysicalIndex": 12100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 CB 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13654,9 +13654,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13664,8 +13664,8 @@ }, { "entPhysicalIndex": 12200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 CB 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13673,9 +13673,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13683,8 +13683,8 @@ }, { "entPhysicalIndex": 12300, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 CB 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13692,9 +13692,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13702,8 +13702,8 @@ }, { "entPhysicalIndex": 12400, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 CB 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13711,9 +13711,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13721,8 +13721,8 @@ }, { "entPhysicalIndex": 41100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 Fan 10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13730,9 +13730,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13740,8 +13740,8 @@ }, { "entPhysicalIndex": 42100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 Fan 10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13749,9 +13749,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13759,8 +13759,8 @@ }, { "entPhysicalIndex": 71000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 9/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13768,9 +13768,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13778,8 +13778,8 @@ }, { "entPhysicalIndex": 71100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k NPC @ 10/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13787,9 +13787,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13797,8 +13797,8 @@ }, { "entPhysicalIndex": 71200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 11/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13806,9 +13806,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13816,8 +13816,8 @@ }, { "entPhysicalIndex": 71300, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 FPC: SRX3k SPC @ 12/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13825,9 +13825,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13835,8 +13835,8 @@ }, { "entPhysicalIndex": 71400, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SFB 12GE @ 0/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13844,9 +13844,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13854,8 +13854,8 @@ }, { "entPhysicalIndex": 71500, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX1k3k 2x10GE NP-IOC @ 1/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13863,9 +13863,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13873,8 +13873,8 @@ }, { "entPhysicalIndex": 71800, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX1k3k 2x10GE NP-IOC @ 4/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13882,9 +13882,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13892,8 +13892,8 @@ }, { "entPhysicalIndex": 72000, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 6/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13901,9 +13901,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13911,8 +13911,8 @@ }, { "entPhysicalIndex": 72100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 7/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13920,9 +13920,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13930,8 +13930,8 @@ }, { "entPhysicalIndex": 72200, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 8/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13939,9 +13939,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13949,8 +13949,8 @@ }, { "entPhysicalIndex": 72300, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 9/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13958,9 +13958,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13968,8 +13968,8 @@ }, { "entPhysicalIndex": 72400, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k NPC @ 10/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13977,9 +13977,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -13987,8 +13987,8 @@ }, { "entPhysicalIndex": 72500, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 11/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -13996,9 +13996,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14006,8 +14006,8 @@ }, { "entPhysicalIndex": 72600, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 FPC: SRX3k SPC @ 12/*/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14015,9 +14015,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14025,8 +14025,8 @@ }, { "entPhysicalIndex": 81010, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Flow @ 9/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14034,9 +14034,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14044,8 +14044,8 @@ }, { "entPhysicalIndex": 81110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: NPC PIC @ 10/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14053,9 +14053,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14063,8 +14063,8 @@ }, { "entPhysicalIndex": 81210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Flow @ 11/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14072,9 +14072,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14082,8 +14082,8 @@ }, { "entPhysicalIndex": 81310, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node0 PIC: SPU Flow @ 12/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14091,9 +14091,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14101,8 +14101,8 @@ }, { "entPhysicalIndex": 81410, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: 8x 1GE-TX 4x 1GE-SFP @ 0/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14110,9 +14110,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14120,8 +14120,8 @@ }, { "entPhysicalIndex": 81510, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: 2x 10GE-SFP+ @ 1/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14129,9 +14129,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14139,8 +14139,8 @@ }, { "entPhysicalIndex": 81810, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: 2x 10GE-SFP+ @ 4/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14148,9 +14148,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14158,8 +14158,8 @@ }, { "entPhysicalIndex": 82010, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Cp-Flow @ 6/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14167,9 +14167,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14177,8 +14177,8 @@ }, { "entPhysicalIndex": 82110, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Flow @ 7/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14186,9 +14186,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14196,8 +14196,8 @@ }, { "entPhysicalIndex": 82210, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Flow @ 8/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14205,9 +14205,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14215,8 +14215,8 @@ }, { "entPhysicalIndex": 82310, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Flow @ 9/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14224,9 +14224,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14234,8 +14234,8 @@ }, { "entPhysicalIndex": 82410, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: NPC PIC @ 10/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14243,9 +14243,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14253,8 +14253,8 @@ }, { "entPhysicalIndex": 82510, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Flow @ 11/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14262,9 +14262,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", @@ -14272,8 +14272,8 @@ }, { "entPhysicalIndex": 82610, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "node1 PIC: SPU Flow @ 12/0/*", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -14281,9 +14281,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "Juniper", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Juniper", diff --git a/tests/data/junos_vmx.json b/tests/data/junos_vmx.json index c070ad6f7b..c77d253fb9 100644 --- a/tests/data/junos_vmx.json +++ b/tests/data/junos_vmx.json @@ -13053,7 +13053,7 @@ { "entPhysicalIndex": 1100, "entPhysicalDescr": "midplane", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "midplane", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13072,7 +13072,7 @@ { "entPhysicalIndex": 7100, "entPhysicalDescr": "FPC: Virtual FPC @ 0/*/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "FPC: Virtual FPC @ 0/*/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13091,7 +13091,7 @@ { "entPhysicalIndex": 8110, "entPhysicalDescr": "PIC: Virtual @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "PIC: Virtual @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13110,7 +13110,7 @@ { "entPhysicalIndex": 9100, "entPhysicalDescr": "Routing Engine 0", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "Routing Engine 0", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, @@ -13129,7 +13129,7 @@ { "entPhysicalIndex": 20110, "entPhysicalDescr": "MIC: Virtual @ 0/0/*", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "MIC: Virtual @ 0/0/*", "entPhysicalHardwareRev": "", "entPhysicalFirmwareRev": null, diff --git a/tests/data/linux_lsi.json b/tests/data/linux_lsi.json index 455864563a..3ea6e36b77 100644 --- a/tests/data/linux_lsi.json +++ b/tests/data/linux_lsi.json @@ -11265,9 +11265,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11284,9 +11284,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11303,9 +11303,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11322,9 +11322,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11341,9 +11341,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11360,9 +11360,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11379,9 +11379,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11398,9 +11398,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11417,9 +11417,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11436,9 +11436,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11455,9 +11455,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11474,9 +11474,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11493,9 +11493,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 210, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11512,9 +11512,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11531,9 +11531,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11550,9 +11550,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11569,9 +11569,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11588,9 +11588,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11607,9 +11607,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11626,9 +11626,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11645,9 +11645,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11664,9 +11664,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11683,9 +11683,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11702,9 +11702,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11721,9 +11721,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11740,9 +11740,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11759,9 +11759,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11778,9 +11778,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11797,9 +11797,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11816,9 +11816,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11835,9 +11835,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11854,9 +11854,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11873,9 +11873,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11892,9 +11892,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 218, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11911,9 +11911,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11930,9 +11930,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11949,9 +11949,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11968,9 +11968,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -11987,9 +11987,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12006,9 +12006,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12025,9 +12025,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12044,9 +12044,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12063,9 +12063,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12082,9 +12082,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12101,9 +12101,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12120,9 +12120,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12139,9 +12139,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12158,9 +12158,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12177,9 +12177,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12196,9 +12196,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12215,9 +12215,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12234,9 +12234,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12253,9 +12253,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12272,9 +12272,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12291,9 +12291,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12310,9 +12310,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12329,9 +12329,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12348,9 +12348,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 219, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12367,9 +12367,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12386,9 +12386,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12405,9 +12405,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12424,9 +12424,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12443,9 +12443,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12462,9 +12462,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12481,9 +12481,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12500,9 +12500,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12519,9 +12519,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12538,9 +12538,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12557,9 +12557,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12576,9 +12576,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12595,9 +12595,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12614,9 +12614,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12633,9 +12633,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12652,9 +12652,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12671,9 +12671,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12690,9 +12690,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12709,9 +12709,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12728,9 +12728,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12747,9 +12747,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 273, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12766,9 +12766,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12785,9 +12785,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12804,9 +12804,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12823,9 +12823,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12842,9 +12842,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12861,9 +12861,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12880,9 +12880,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12899,9 +12899,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12918,9 +12918,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12937,9 +12937,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12956,9 +12956,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 295, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12975,9 +12975,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 462, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", @@ -12994,9 +12994,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 462, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "", diff --git a/tests/data/schleifenbauer.json b/tests/data/schleifenbauer.json index 9ae40de9ec..a6a8d2256c 100644 --- a/tests/data/schleifenbauer.json +++ b/tests/data/schleifenbauer.json @@ -736,9 +736,9 @@ "entPhysicalAlias": "t=master", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -755,9 +755,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -774,9 +774,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -793,9 +793,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -812,9 +812,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -831,9 +831,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -850,9 +850,9 @@ "entPhysicalAlias": "t=slave2", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -869,9 +869,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -888,9 +888,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -907,9 +907,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -926,9 +926,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -945,9 +945,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -964,9 +964,9 @@ "entPhysicalAlias": "t=slave3", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -983,9 +983,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1002,9 +1002,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1021,9 +1021,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1040,9 +1040,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1059,9 +1059,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1078,9 +1078,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1097,9 +1097,9 @@ "entPhysicalAlias": "blaat", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1116,9 +1116,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1135,9 +1135,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1154,9 +1154,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1173,9 +1173,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1192,9 +1192,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1211,9 +1211,9 @@ "entPhysicalAlias": "mekker", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1230,9 +1230,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1249,9 +1249,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1268,9 +1268,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1287,9 +1287,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1306,9 +1306,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1325,9 +1325,9 @@ "entPhysicalAlias": "kwaak", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1344,9 +1344,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1363,9 +1363,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1382,9 +1382,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1401,9 +1401,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1420,9 +1420,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1439,9 +1439,9 @@ "entPhysicalAlias": "tok", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1458,9 +1458,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1477,9 +1477,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1496,9 +1496,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1515,9 +1515,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1534,9 +1534,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1553,9 +1553,9 @@ "entPhysicalAlias": "knor", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1572,9 +1572,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1591,9 +1591,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1610,9 +1610,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1629,9 +1629,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1648,9 +1648,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1667,9 +1667,9 @@ "entPhysicalAlias": "mooh", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1686,9 +1686,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1705,9 +1705,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1724,9 +1724,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1743,9 +1743,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1762,9 +1762,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1781,9 +1781,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -1800,9 +1800,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1300000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", diff --git a/tests/data/schleifenbauer_dpm27e.json b/tests/data/schleifenbauer_dpm27e.json index 35ac2881a4..a5ff838851 100644 --- a/tests/data/schleifenbauer_dpm27e.json +++ b/tests/data/schleifenbauer_dpm27e.json @@ -2236,9 +2236,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2255,9 +2255,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2274,9 +2274,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2293,9 +2293,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2312,9 +2312,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2331,9 +2331,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1101000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2350,9 +2350,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2369,9 +2369,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2388,9 +2388,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2407,9 +2407,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2426,9 +2426,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2445,9 +2445,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1102000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2464,9 +2464,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2483,9 +2483,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2502,9 +2502,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2521,9 +2521,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2540,9 +2540,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2559,9 +2559,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1103000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2578,9 +2578,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2597,9 +2597,9 @@ "entPhysicalAlias": "channel1", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2616,9 +2616,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2635,9 +2635,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2654,9 +2654,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2673,9 +2673,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2692,9 +2692,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1201000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2711,9 +2711,9 @@ "entPhysicalAlias": "channel2", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2730,9 +2730,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2749,9 +2749,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2768,9 +2768,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2787,9 +2787,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2806,9 +2806,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1202000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2825,9 +2825,9 @@ "entPhysicalAlias": "channel3", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2844,9 +2844,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2863,9 +2863,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2882,9 +2882,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2901,9 +2901,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2920,9 +2920,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1203000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2939,9 +2939,9 @@ "entPhysicalAlias": "channel4", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2958,9 +2958,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2977,9 +2977,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -2996,9 +2996,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3015,9 +3015,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3034,9 +3034,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1204000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3053,9 +3053,9 @@ "entPhysicalAlias": "channel5", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3072,9 +3072,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3091,9 +3091,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3110,9 +3110,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3129,9 +3129,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3148,9 +3148,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1205000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3167,9 +3167,9 @@ "entPhysicalAlias": "channel6", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 6, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3186,9 +3186,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3205,9 +3205,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3224,9 +3224,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3243,9 +3243,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3262,9 +3262,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1206000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3281,9 +3281,9 @@ "entPhysicalAlias": "channel7", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 7, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3300,9 +3300,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1207000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3319,9 +3319,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1207000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3338,9 +3338,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1207000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3357,9 +3357,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1207000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3376,9 +3376,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1207000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3395,9 +3395,9 @@ "entPhysicalAlias": "channel8", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 8, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3414,9 +3414,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1208000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3433,9 +3433,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1208000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3452,9 +3452,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1208000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3471,9 +3471,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1208000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3490,9 +3490,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1208000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3509,9 +3509,9 @@ "entPhysicalAlias": "channel9", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 9, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3528,9 +3528,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1209000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3547,9 +3547,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1209000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3566,9 +3566,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1209000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3585,9 +3585,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1209000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3604,9 +3604,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1209000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3623,9 +3623,9 @@ "entPhysicalAlias": "channel10", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 10, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3642,9 +3642,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1210000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3661,9 +3661,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1210000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3680,9 +3680,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1210000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3699,9 +3699,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1210000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3718,9 +3718,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1210000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3737,9 +3737,9 @@ "entPhysicalAlias": "channel11", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 11, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3756,9 +3756,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1211000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3775,9 +3775,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1211000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3794,9 +3794,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1211000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3813,9 +3813,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1211000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3832,9 +3832,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1211000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3851,9 +3851,9 @@ "entPhysicalAlias": "channel12", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 12, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3870,9 +3870,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1212000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3889,9 +3889,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1212000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3908,9 +3908,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1212000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3927,9 +3927,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1212000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3946,9 +3946,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1212000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3965,9 +3965,9 @@ "entPhysicalAlias": "channel13", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 13, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -3984,9 +3984,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1213000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4003,9 +4003,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1213000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4022,9 +4022,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1213000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4041,9 +4041,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1213000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4060,9 +4060,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1213000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4079,9 +4079,9 @@ "entPhysicalAlias": "channel14", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 14, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4098,9 +4098,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1214000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4117,9 +4117,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1214000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4136,9 +4136,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1214000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4155,9 +4155,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1214000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4174,9 +4174,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1214000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4193,9 +4193,9 @@ "entPhysicalAlias": "channel15", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 15, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4212,9 +4212,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1215000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4231,9 +4231,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1215000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4250,9 +4250,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1215000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4269,9 +4269,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1215000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4288,9 +4288,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1215000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4307,9 +4307,9 @@ "entPhysicalAlias": "channel16", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 16, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4326,9 +4326,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1216000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4345,9 +4345,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1216000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4364,9 +4364,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1216000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4383,9 +4383,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1216000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4402,9 +4402,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1216000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4421,9 +4421,9 @@ "entPhysicalAlias": "channel17", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 17, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4440,9 +4440,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1217000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4459,9 +4459,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1217000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4478,9 +4478,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1217000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4497,9 +4497,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1217000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4516,9 +4516,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1217000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4535,9 +4535,9 @@ "entPhysicalAlias": "channel18", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 18, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4554,9 +4554,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1218000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4573,9 +4573,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1218000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4592,9 +4592,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1218000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4611,9 +4611,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1218000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4630,9 +4630,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1218000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4649,9 +4649,9 @@ "entPhysicalAlias": "channel19", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 19, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4668,9 +4668,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1219000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4687,9 +4687,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1219000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4706,9 +4706,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1219000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4725,9 +4725,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1219000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4744,9 +4744,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1219000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4763,9 +4763,9 @@ "entPhysicalAlias": "channel20", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 20, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4782,9 +4782,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1220000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4801,9 +4801,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1220000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4820,9 +4820,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1220000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4839,9 +4839,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1220000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4858,9 +4858,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1220000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4877,9 +4877,9 @@ "entPhysicalAlias": "channel21", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 21, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4896,9 +4896,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1221000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4915,9 +4915,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1221000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4934,9 +4934,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1221000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4953,9 +4953,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1221000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4972,9 +4972,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1221000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -4991,9 +4991,9 @@ "entPhysicalAlias": "channel22", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 22, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5010,9 +5010,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1222000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5029,9 +5029,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1222000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5048,9 +5048,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1222000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5067,9 +5067,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1222000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5086,9 +5086,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1222000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5105,9 +5105,9 @@ "entPhysicalAlias": "channel23", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 23, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5124,9 +5124,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1223000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5143,9 +5143,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1223000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5162,9 +5162,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1223000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5181,9 +5181,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1223000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5200,9 +5200,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1223000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5219,9 +5219,9 @@ "entPhysicalAlias": "channel24", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 24, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5238,9 +5238,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1224000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5257,9 +5257,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1224000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5276,9 +5276,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1224000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5295,9 +5295,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1224000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5314,9 +5314,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1224000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5333,9 +5333,9 @@ "entPhysicalAlias": "channel25", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 25, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5352,9 +5352,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1225000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5371,9 +5371,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1225000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5390,9 +5390,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1225000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5409,9 +5409,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1225000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5428,9 +5428,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1225000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5447,9 +5447,9 @@ "entPhysicalAlias": "channel26", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 26, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5466,9 +5466,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1226000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5485,9 +5485,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1226000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5504,9 +5504,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1226000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5523,9 +5523,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1226000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5542,9 +5542,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1226000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5561,9 +5561,9 @@ "entPhysicalAlias": "channel27", "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1200000, "entPhysicalParentRelPos": 27, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5580,9 +5580,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1227000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5599,9 +5599,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1227000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5618,9 +5618,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1227000, "entPhysicalParentRelPos": 3, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5637,9 +5637,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1227000, "entPhysicalParentRelPos": 4, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5656,9 +5656,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1227000, "entPhysicalParentRelPos": 5, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5675,9 +5675,9 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": -1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5694,9 +5694,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1300000, "entPhysicalParentRelPos": 1, "entPhysicalMfgName": "Schleifenbauer Products B.V.", @@ -5713,9 +5713,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": null, "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 1300000, "entPhysicalParentRelPos": 2, "entPhysicalMfgName": "Schleifenbauer Products B.V.", diff --git a/tests/data/tait-infra93_tb9300.json b/tests/data/tait-infra93_tb9300.json index 20edd504ea..af62ea28dd 100644 --- a/tests/data/tait-infra93_tb9300.json +++ b/tests/data/tait-infra93_tb9300.json @@ -4951,9 +4951,9 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 10, "entPhysicalParentRelPos": 0, "entPhysicalMfgName": "TAIT", diff --git a/tests/data/timos_7705.json b/tests/data/timos_7705.json index 8866017b84..518e24e8f9 100644 --- a/tests/data/timos_7705.json +++ b/tests/data/timos_7705.json @@ -8716,7 +8716,7 @@ { "entPhysicalIndex": 2, "entPhysicalDescr": "7705 IOM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "iom-sar", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -8724,18 +8724,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "iom-sar", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 6, "entPhysicalDescr": "1g/10g 7705 SAR-8 CSM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "csmv2-10g", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -8743,12 +8743,12 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "csmv2-10g", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/timos_hc.json b/tests/data/timos_hc.json index 95d593ef8a..78f1ff8485 100644 --- a/tests/data/timos_hc.json +++ b/tests/data/timos_hc.json @@ -8569,7 +8569,7 @@ { "entPhysicalIndex": 71, "entPhysicalDescr": "Integrated CPM card for SAR-Hm system", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "cpm-sar-hm", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -8577,18 +8577,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "cpm-sar-hm", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 72, "entPhysicalDescr": "Integrated IOM card for SAR-Hm system", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "iom-sar-hm", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -8596,12 +8596,12 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "iom-sar-hm", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/timos_ixr-s.json b/tests/data/timos_ixr-s.json index de073393bf..f0ea224a5f 100644 --- a/tests/data/timos_ixr-s.json +++ b/tests/data/timos_ixr-s.json @@ -17305,7 +17305,7 @@ { "entPhysicalIndex": 90, "entPhysicalDescr": "IXR-s CPM", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "cpm-ixr-s", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -17313,18 +17313,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "cpm-ixr-s", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 92, "entPhysicalDescr": "48p 10GE SFP+, 6p 100GE QSFP28", - "entPhysicalClass": "", + "entPhysicalClass": null, "entPhysicalName": "imm48-sfp++6-qsfp28", "entPhysicalHardwareRev": "1.0", "entPhysicalFirmwareRev": null, @@ -17332,12 +17332,12 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "imm48-sfp++6-qsfp28", - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ] diff --git a/tests/data/vrp_5720-32x-ei.json b/tests/data/vrp_5720-32x-ei.json index 8ebb8e975a..950ec4a4d5 100644 --- a/tests/data/vrp_5720-32x-ei.json +++ b/tests/data/vrp_5720-32x-ei.json @@ -16284,7 +16284,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -16293,7 +16293,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.536900", "entPhysicalSerialNum": "2102359579DMHC000288", "entPhysicalContainedIn": 0, @@ -16303,7 +16303,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -16312,7 +16312,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -16341,7 +16341,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -16350,7 +16350,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16360,7 +16360,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -16369,7 +16369,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16379,7 +16379,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -16388,7 +16388,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16398,7 +16398,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -16407,7 +16407,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16417,7 +16417,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -16426,7 +16426,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16436,7 +16436,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -16445,7 +16445,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16455,7 +16455,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -16464,7 +16464,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16474,7 +16474,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -16483,7 +16483,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16493,7 +16493,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -16502,7 +16502,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16512,7 +16512,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -16521,7 +16521,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16531,7 +16531,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -16540,7 +16540,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16550,7 +16550,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -16559,7 +16559,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16569,7 +16569,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -16578,7 +16578,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16588,7 +16588,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -16597,7 +16597,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16607,7 +16607,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -16616,7 +16616,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16626,7 +16626,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -16635,7 +16635,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17272,7 +17272,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -17281,7 +17281,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17291,7 +17291,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -17300,7 +17300,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17310,7 +17310,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -17319,7 +17319,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17329,7 +17329,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -17338,7 +17338,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17348,7 +17348,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -17357,7 +17357,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17367,7 +17367,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -17376,7 +17376,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17386,7 +17386,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -17395,7 +17395,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -17405,7 +17405,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -17414,7 +17414,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_5720-vrf.json b/tests/data/vrp_5720-vrf.json index a6315c12c6..cfca586209 100644 --- a/tests/data/vrp_5720-vrf.json +++ b/tests/data/vrp_5720-vrf.json @@ -36466,7 +36466,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -36475,7 +36475,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.536897", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, @@ -36485,7 +36485,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -36494,7 +36494,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -36523,7 +36523,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -36532,7 +36532,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36542,7 +36542,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -36551,7 +36551,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36561,7 +36561,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -36570,7 +36570,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36580,7 +36580,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -36589,7 +36589,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36599,7 +36599,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -36608,7 +36608,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36637,7 +36637,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -36646,7 +36646,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36656,7 +36656,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -36665,7 +36665,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36694,7 +36694,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -36703,7 +36703,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36713,7 +36713,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -36722,7 +36722,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36732,7 +36732,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -36741,7 +36741,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36751,7 +36751,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -36760,7 +36760,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36770,7 +36770,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -36779,7 +36779,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36789,7 +36789,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -36798,7 +36798,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36808,7 +36808,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -36817,7 +36817,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36827,7 +36827,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -36836,7 +36836,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -36846,7 +36846,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -36855,7 +36855,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -37872,7 +37872,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -37881,7 +37881,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -37900,7 +37900,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.12.537094", "entPhysicalSerialNum": "21359576DMHC000248", "entPhysicalContainedIn": 68157445, @@ -37910,7 +37910,7 @@ }, { "entPhysicalIndex": 68173836, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/1", "entPhysicalHardwareRev": "", @@ -37919,7 +37919,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -37938,7 +37938,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536752", "entPhysicalSerialNum": "02DWDMHB001394", "entPhysicalContainedIn": 68173836, @@ -37957,7 +37957,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68173837, @@ -37976,7 +37976,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68173837, @@ -37986,7 +37986,7 @@ }, { "entPhysicalIndex": 68190220, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/2", "entPhysicalHardwareRev": "", @@ -37995,7 +37995,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38005,7 +38005,7 @@ }, { "entPhysicalIndex": 68206604, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/3", "entPhysicalHardwareRev": "", @@ -38014,7 +38014,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38024,7 +38024,7 @@ }, { "entPhysicalIndex": 68222988, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/4", "entPhysicalHardwareRev": "", @@ -38033,7 +38033,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38043,7 +38043,7 @@ }, { "entPhysicalIndex": 68239372, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/5", "entPhysicalHardwareRev": "", @@ -38052,7 +38052,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38071,7 +38071,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVHC000775", "entPhysicalContainedIn": 68239372, @@ -38081,7 +38081,7 @@ }, { "entPhysicalIndex": 68255756, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/6", "entPhysicalHardwareRev": "", @@ -38090,7 +38090,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38109,7 +38109,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVH9003694", "entPhysicalContainedIn": 68255756, @@ -38119,7 +38119,7 @@ }, { "entPhysicalIndex": 68272140, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/7", "entPhysicalHardwareRev": "", @@ -38128,7 +38128,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38147,7 +38147,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536762", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68272140, @@ -38157,7 +38157,7 @@ }, { "entPhysicalIndex": 68288524, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/8", "entPhysicalHardwareRev": "", @@ -38166,7 +38166,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38176,7 +38176,7 @@ }, { "entPhysicalIndex": 68304908, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/9", "entPhysicalHardwareRev": "", @@ -38185,7 +38185,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38195,7 +38195,7 @@ }, { "entPhysicalIndex": 68321292, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/10", "entPhysicalHardwareRev": "", @@ -38204,7 +38204,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38214,7 +38214,7 @@ }, { "entPhysicalIndex": 68337676, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/11", "entPhysicalHardwareRev": "", @@ -38223,7 +38223,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38233,7 +38233,7 @@ }, { "entPhysicalIndex": 68354060, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/12", "entPhysicalHardwareRev": "", @@ -38242,7 +38242,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38252,7 +38252,7 @@ }, { "entPhysicalIndex": 68370444, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/13", "entPhysicalHardwareRev": "", @@ -38261,7 +38261,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38271,7 +38271,7 @@ }, { "entPhysicalIndex": 68386828, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/14", "entPhysicalHardwareRev": "", @@ -38280,7 +38280,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38290,7 +38290,7 @@ }, { "entPhysicalIndex": 68403212, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/15", "entPhysicalHardwareRev": "", @@ -38299,7 +38299,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38309,7 +38309,7 @@ }, { "entPhysicalIndex": 68419596, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 1/16", "entPhysicalHardwareRev": "", @@ -38318,7 +38318,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38337,7 +38337,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38356,7 +38356,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38375,7 +38375,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38394,7 +38394,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38413,7 +38413,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38432,7 +38432,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38451,7 +38451,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38470,7 +38470,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38489,7 +38489,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38508,7 +38508,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38527,7 +38527,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38546,7 +38546,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38565,7 +38565,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38584,7 +38584,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38603,7 +38603,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38622,7 +38622,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38641,7 +38641,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38660,7 +38660,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38679,7 +38679,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38698,7 +38698,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38717,7 +38717,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38736,7 +38736,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38755,7 +38755,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38774,7 +38774,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38793,7 +38793,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38812,7 +38812,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38831,7 +38831,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38850,7 +38850,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38869,7 +38869,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38888,7 +38888,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38907,7 +38907,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38926,7 +38926,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38945,7 +38945,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38964,7 +38964,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -38983,7 +38983,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39002,7 +39002,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39021,7 +39021,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39040,7 +39040,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39059,7 +39059,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39078,7 +39078,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39097,7 +39097,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39116,7 +39116,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39135,7 +39135,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39154,7 +39154,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39173,7 +39173,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39192,7 +39192,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39211,7 +39211,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39230,7 +39230,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39249,7 +39249,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39268,7 +39268,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39287,7 +39287,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39306,7 +39306,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39325,7 +39325,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 68157449, @@ -39335,7 +39335,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -39344,7 +39344,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -39363,7 +39363,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.12.537094", "entPhysicalSerialNum": "21359576DMHC000230", "entPhysicalContainedIn": 69206021, @@ -39373,7 +39373,7 @@ }, { "entPhysicalIndex": 69222412, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/1", "entPhysicalHardwareRev": "", @@ -39382,7 +39382,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39401,7 +39401,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536752", "entPhysicalSerialNum": "02DWDMHB001110", "entPhysicalContainedIn": 69222412, @@ -39420,7 +39420,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69222413, @@ -39439,7 +39439,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.0", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69222413, @@ -39449,7 +39449,7 @@ }, { "entPhysicalIndex": 69238796, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/2", "entPhysicalHardwareRev": "", @@ -39458,7 +39458,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39468,7 +39468,7 @@ }, { "entPhysicalIndex": 69255180, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/3", "entPhysicalHardwareRev": "", @@ -39477,7 +39477,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39487,7 +39487,7 @@ }, { "entPhysicalIndex": 69271564, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/4", "entPhysicalHardwareRev": "", @@ -39496,7 +39496,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39506,7 +39506,7 @@ }, { "entPhysicalIndex": 69287948, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/5", "entPhysicalHardwareRev": "", @@ -39515,7 +39515,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39534,7 +39534,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVHC001188", "entPhysicalContainedIn": 69287948, @@ -39544,7 +39544,7 @@ }, { "entPhysicalIndex": 69304332, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/6", "entPhysicalHardwareRev": "", @@ -39553,7 +39553,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39572,7 +39572,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536702", "entPhysicalSerialNum": "21311BXVHVH9003712", "entPhysicalContainedIn": 69304332, @@ -39582,7 +39582,7 @@ }, { "entPhysicalIndex": 69320716, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/7", "entPhysicalHardwareRev": "", @@ -39591,7 +39591,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39610,7 +39610,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.536762", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69320716, @@ -39620,7 +39620,7 @@ }, { "entPhysicalIndex": 69337100, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/8", "entPhysicalHardwareRev": "", @@ -39629,7 +39629,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39639,7 +39639,7 @@ }, { "entPhysicalIndex": 69353484, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/9", "entPhysicalHardwareRev": "", @@ -39648,7 +39648,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39658,7 +39658,7 @@ }, { "entPhysicalIndex": 69369868, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/10", "entPhysicalHardwareRev": "", @@ -39667,7 +39667,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39677,7 +39677,7 @@ }, { "entPhysicalIndex": 69386252, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/11", "entPhysicalHardwareRev": "", @@ -39686,7 +39686,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39696,7 +39696,7 @@ }, { "entPhysicalIndex": 69402636, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/12", "entPhysicalHardwareRev": "", @@ -39705,7 +39705,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39715,7 +39715,7 @@ }, { "entPhysicalIndex": 69419020, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/13", "entPhysicalHardwareRev": "", @@ -39724,7 +39724,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39734,7 +39734,7 @@ }, { "entPhysicalIndex": 69435404, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/14", "entPhysicalHardwareRev": "", @@ -39743,7 +39743,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39753,7 +39753,7 @@ }, { "entPhysicalIndex": 69451788, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/15", "entPhysicalHardwareRev": "", @@ -39762,7 +39762,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39772,7 +39772,7 @@ }, { "entPhysicalIndex": 69468172, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 2/16", "entPhysicalHardwareRev": "", @@ -39781,7 +39781,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39800,7 +39800,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39819,7 +39819,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39838,7 +39838,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39857,7 +39857,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39876,7 +39876,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39895,7 +39895,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39914,7 +39914,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39933,7 +39933,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39952,7 +39952,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39971,7 +39971,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -39990,7 +39990,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40009,7 +40009,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40028,7 +40028,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40047,7 +40047,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40066,7 +40066,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40085,7 +40085,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40104,7 +40104,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40123,7 +40123,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40142,7 +40142,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40161,7 +40161,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40180,7 +40180,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40199,7 +40199,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40218,7 +40218,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40237,7 +40237,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40256,7 +40256,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40275,7 +40275,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40294,7 +40294,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40313,7 +40313,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40332,7 +40332,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40351,7 +40351,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40370,7 +40370,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40389,7 +40389,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40408,7 +40408,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40427,7 +40427,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40446,7 +40446,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40465,7 +40465,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40484,7 +40484,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40503,7 +40503,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40522,7 +40522,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40541,7 +40541,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40560,7 +40560,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40579,7 +40579,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40598,7 +40598,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40617,7 +40617,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40636,7 +40636,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40655,7 +40655,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40674,7 +40674,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40693,7 +40693,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40712,7 +40712,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659458", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40731,7 +40731,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40750,7 +40750,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40769,7 +40769,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40788,7 +40788,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.659461", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 69206025, @@ -40798,7 +40798,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -40807,7 +40807,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40817,7 +40817,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -40826,7 +40826,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40836,7 +40836,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -40845,7 +40845,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40855,7 +40855,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -40864,7 +40864,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40874,7 +40874,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -40883,7 +40883,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -40893,7 +40893,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -40902,7 +40902,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_5720.json b/tests/data/vrp_5720.json index 5e2a30deef..79191dbe7f 100644 --- a/tests/data/vrp_5720.json +++ b/tests/data/vrp_5720.json @@ -16667,7 +16667,7 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "chassis", "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": "", @@ -16676,7 +16676,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.536897", "entPhysicalSerialNum": "2102359576DMHC000120", "entPhysicalContainedIn": 0, @@ -16686,7 +16686,7 @@ }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -16695,7 +16695,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -16724,7 +16724,7 @@ }, { "entPhysicalIndex": 67125260, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/1", "entPhysicalHardwareRev": "", @@ -16733,7 +16733,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16743,7 +16743,7 @@ }, { "entPhysicalIndex": 67141644, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/2", "entPhysicalHardwareRev": "", @@ -16752,7 +16752,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16762,7 +16762,7 @@ }, { "entPhysicalIndex": 67158028, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/3", "entPhysicalHardwareRev": "", @@ -16771,7 +16771,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16781,7 +16781,7 @@ }, { "entPhysicalIndex": 67174412, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -16790,7 +16790,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16800,7 +16800,7 @@ }, { "entPhysicalIndex": 67190796, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -16809,7 +16809,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16838,7 +16838,7 @@ }, { "entPhysicalIndex": 67207180, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/6", "entPhysicalHardwareRev": "", @@ -16847,7 +16847,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16857,7 +16857,7 @@ }, { "entPhysicalIndex": 67223564, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/7", "entPhysicalHardwareRev": "", @@ -16866,7 +16866,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16895,7 +16895,7 @@ }, { "entPhysicalIndex": 67239948, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/8", "entPhysicalHardwareRev": "", @@ -16904,7 +16904,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16914,7 +16914,7 @@ }, { "entPhysicalIndex": 67256332, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/9", "entPhysicalHardwareRev": "", @@ -16923,7 +16923,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16933,7 +16933,7 @@ }, { "entPhysicalIndex": 67272716, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/10", "entPhysicalHardwareRev": "", @@ -16942,7 +16942,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16952,7 +16952,7 @@ }, { "entPhysicalIndex": 67289100, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/11", "entPhysicalHardwareRev": "", @@ -16961,7 +16961,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16971,7 +16971,7 @@ }, { "entPhysicalIndex": 67305484, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/12", "entPhysicalHardwareRev": "", @@ -16980,7 +16980,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -16990,7 +16990,7 @@ }, { "entPhysicalIndex": 67321868, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/13", "entPhysicalHardwareRev": "", @@ -16999,7 +16999,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17009,7 +17009,7 @@ }, { "entPhysicalIndex": 67338252, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/14", "entPhysicalHardwareRev": "", @@ -17018,7 +17018,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17028,7 +17028,7 @@ }, { "entPhysicalIndex": 67354636, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/15", "entPhysicalHardwareRev": "", @@ -17037,7 +17037,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -17047,7 +17047,7 @@ }, { "entPhysicalIndex": 67371020, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/16", "entPhysicalHardwareRev": "", @@ -17056,7 +17056,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108873, @@ -18073,7 +18073,7 @@ }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": "", @@ -18082,7 +18082,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18092,7 +18092,7 @@ }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": "", @@ -18101,7 +18101,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18111,7 +18111,7 @@ }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": "", @@ -18120,7 +18120,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18130,7 +18130,7 @@ }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": "", @@ -18139,7 +18139,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18149,7 +18149,7 @@ }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": "", @@ -18158,7 +18158,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18168,7 +18168,7 @@ }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": "", @@ -18177,7 +18177,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18187,7 +18187,7 @@ }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": "", @@ -18196,7 +18196,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, @@ -18206,7 +18206,7 @@ }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": "", @@ -18215,7 +18215,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 67108867, diff --git a/tests/data/vrp_ac6605-26.json b/tests/data/vrp_ac6605-26.json index c8b173496a..b51fbb5b15 100644 --- a/tests/data/vrp_ac6605-26.json +++ b/tests/data/vrp_ac6605-26.json @@ -7585,7 +7585,7 @@ }, { "entPhysicalIndex": 5, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -7594,7 +7594,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 3, @@ -8136,7 +8136,7 @@ }, { "entPhysicalIndex": 65548, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/4", "entPhysicalHardwareRev": "", @@ -8145,7 +8145,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, @@ -8155,7 +8155,7 @@ }, { "entPhysicalIndex": 81932, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Card slot 0/5", "entPhysicalHardwareRev": "", @@ -8164,7 +8164,7 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 9, diff --git a/tests/data/vrp_ar169sfp.json b/tests/data/vrp_ar169sfp.json index dbd654d92c..569e4cbcaf 100644 --- a/tests/data/vrp_ar169sfp.json +++ b/tests/data/vrp_ar169sfp.json @@ -3547,7 +3547,7 @@ }, { "entPhysicalIndex": 5, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": "", @@ -3556,7 +3556,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 3, diff --git a/tests/data/vrp_ne.json b/tests/data/vrp_ne.json index c8335ca14e..e943f12318 100644 --- a/tests/data/vrp_ne.json +++ b/tests/data/vrp_ne.json @@ -6861,7 +6861,7 @@ "entPhysical": [ { "entPhysicalIndex": 16777216, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "chassis", "entPhysicalName": "NE40E-M2K-B frame", "entPhysicalHardwareRev": "", @@ -6870,7 +6870,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.11.580941", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 0, @@ -6880,7 +6880,7 @@ }, { "entPhysicalIndex": 16973824, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "IPU slot 3", "entPhysicalHardwareRev": "", @@ -6889,7 +6889,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -6899,7 +6899,7 @@ }, { "entPhysicalIndex": 16973825, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "module", "entPhysicalName": "IPU 3", "entPhysicalHardwareRev": "IPU REV B", @@ -6908,7 +6908,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.15.675812", "entPhysicalSerialNum": "2102352DQV10L3000003", "entPhysicalContainedIn": 16973824, @@ -6918,7 +6918,7 @@ }, { "entPhysicalIndex": 16973826, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "module", "entPhysicalName": "CX68E4NLAXF0 0/3", "entPhysicalHardwareRev": "", @@ -6927,7 +6927,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.561830", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -6937,7 +6937,7 @@ }, { "entPhysicalIndex": 16974080, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "CFCARD slot 3/0", "entPhysicalHardwareRev": "", @@ -6946,7 +6946,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -6956,7 +6956,7 @@ }, { "entPhysicalIndex": 16978176, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "module", "entPhysicalName": "CFCARD 3/0", "entPhysicalHardwareRev": "", @@ -6965,7 +6965,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.13.561151", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16974080, @@ -6975,7 +6975,7 @@ }, { "entPhysicalIndex": 16978177, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/0", "entPhysicalHardwareRev": "", @@ -6984,7 +6984,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "G1909057256", "entPhysicalContainedIn": 16973826, @@ -6994,7 +6994,7 @@ }, { "entPhysicalIndex": 16978178, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/1", "entPhysicalHardwareRev": "", @@ -7003,7 +7003,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "G1909057257", "entPhysicalContainedIn": 16973826, @@ -7013,7 +7013,7 @@ }, { "entPhysicalIndex": 16978179, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/2", "entPhysicalHardwareRev": "", @@ -7022,7 +7022,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7032,7 +7032,7 @@ }, { "entPhysicalIndex": 16978180, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "40GE0/3/3", "entPhysicalHardwareRev": "", @@ -7041,7 +7041,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7051,7 +7051,7 @@ }, { "entPhysicalIndex": 16978181, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/4", "entPhysicalHardwareRev": "", @@ -7060,7 +7060,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7070,7 +7070,7 @@ }, { "entPhysicalIndex": 16978182, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/5", "entPhysicalHardwareRev": "", @@ -7079,7 +7079,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7089,7 +7089,7 @@ }, { "entPhysicalIndex": 16978183, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/6", "entPhysicalHardwareRev": "", @@ -7098,7 +7098,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7108,7 +7108,7 @@ }, { "entPhysicalIndex": 16978184, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/7", "entPhysicalHardwareRev": "", @@ -7117,7 +7117,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901513301", "entPhysicalContainedIn": 16973826, @@ -7127,7 +7127,7 @@ }, { "entPhysicalIndex": 16978185, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/8", "entPhysicalHardwareRev": "", @@ -7136,7 +7136,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901513801", "entPhysicalContainedIn": 16973826, @@ -7146,7 +7146,7 @@ }, { "entPhysicalIndex": 16978186, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/9", "entPhysicalHardwareRev": "", @@ -7155,7 +7155,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "S1901512801", "entPhysicalContainedIn": 16973826, @@ -7165,7 +7165,7 @@ }, { "entPhysicalIndex": 16978187, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/10", "entPhysicalHardwareRev": "", @@ -7174,7 +7174,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7184,7 +7184,7 @@ }, { "entPhysicalIndex": 16978188, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/11", "entPhysicalHardwareRev": "", @@ -7193,7 +7193,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7203,7 +7203,7 @@ }, { "entPhysicalIndex": 16978189, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/12", "entPhysicalHardwareRev": "", @@ -7212,7 +7212,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7222,7 +7222,7 @@ }, { "entPhysicalIndex": 16978190, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/13", "entPhysicalHardwareRev": "", @@ -7231,7 +7231,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "AD1325LE0A1", "entPhysicalContainedIn": 16973826, @@ -7241,7 +7241,7 @@ }, { "entPhysicalIndex": 16978191, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/14", "entPhysicalHardwareRev": "", @@ -7250,7 +7250,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7260,7 +7260,7 @@ }, { "entPhysicalIndex": 16978192, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/15", "entPhysicalHardwareRev": "", @@ -7269,7 +7269,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7279,7 +7279,7 @@ }, { "entPhysicalIndex": 16978193, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/16", "entPhysicalHardwareRev": "", @@ -7288,7 +7288,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7298,7 +7298,7 @@ }, { "entPhysicalIndex": 16978194, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/17", "entPhysicalHardwareRev": "", @@ -7307,7 +7307,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7317,7 +7317,7 @@ }, { "entPhysicalIndex": 16978195, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/18", "entPhysicalHardwareRev": "", @@ -7326,7 +7326,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7336,7 +7336,7 @@ }, { "entPhysicalIndex": 16978196, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/19", "entPhysicalHardwareRev": "", @@ -7345,7 +7345,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7355,7 +7355,7 @@ }, { "entPhysicalIndex": 16978197, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/20", "entPhysicalHardwareRev": "", @@ -7364,7 +7364,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7374,7 +7374,7 @@ }, { "entPhysicalIndex": 16978198, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/21", "entPhysicalHardwareRev": "", @@ -7383,7 +7383,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7393,7 +7393,7 @@ }, { "entPhysicalIndex": 16978199, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/22", "entPhysicalHardwareRev": "", @@ -7402,7 +7402,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7412,7 +7412,7 @@ }, { "entPhysicalIndex": 16978200, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/3/23", "entPhysicalHardwareRev": "", @@ -7421,7 +7421,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973826, @@ -7431,7 +7431,7 @@ }, { "entPhysicalIndex": 16978689, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet3/2/0", "entPhysicalHardwareRev": "", @@ -7440,7 +7440,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.574", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -7450,7 +7450,7 @@ }, { "entPhysicalIndex": 16978690, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet3/2/1", "entPhysicalHardwareRev": "", @@ -7459,7 +7459,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.574", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -7469,7 +7469,7 @@ }, { "entPhysicalIndex": 16982273, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "port", "entPhysicalName": "GigabitEthernet0/0/0", "entPhysicalHardwareRev": "", @@ -7478,7 +7478,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.14.6", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16973825, @@ -7488,7 +7488,7 @@ }, { "entPhysicalIndex": 17039360, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "POWER slot 4", "entPhysicalHardwareRev": "", @@ -7497,7 +7497,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7507,7 +7507,7 @@ }, { "entPhysicalIndex": 17039361, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "powerSupply", "entPhysicalName": "POWER 4", "entPhysicalHardwareRev": "PSU700A REV E", @@ -7516,7 +7516,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.15.564801", "entPhysicalSerialNum": "2102312HGXBTL2000042", "entPhysicalContainedIn": 17039360, @@ -7526,7 +7526,7 @@ }, { "entPhysicalIndex": 17104896, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "POWER slot 5", "entPhysicalHardwareRev": "", @@ -7535,7 +7535,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7545,7 +7545,7 @@ }, { "entPhysicalIndex": 17104897, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "powerSupply", "entPhysicalName": "POWER 5", "entPhysicalHardwareRev": "PSU700A REV E", @@ -7554,7 +7554,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.15.564801", "entPhysicalSerialNum": "2102312HGXBTL2000041", "entPhysicalContainedIn": 17104896, @@ -7564,7 +7564,7 @@ }, { "entPhysicalIndex": 17170432, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "FAN slot 6", "entPhysicalHardwareRev": "", @@ -7573,7 +7573,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7583,7 +7583,7 @@ }, { "entPhysicalIndex": 17170433, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "fan", "entPhysicalName": "FAN 6", "entPhysicalHardwareRev": "", @@ -7592,7 +7592,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "true", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.15.564799", "entPhysicalSerialNum": "2102311PBL10L3000057", "entPhysicalContainedIn": 17170432, @@ -7602,7 +7602,7 @@ }, { "entPhysicalIndex": 17235968, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "container", "entPhysicalName": "CLK slot 7", "entPhysicalHardwareRev": "", @@ -7611,7 +7611,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "zeroDotZero", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 16777216, @@ -7621,7 +7621,7 @@ }, { "entPhysicalIndex": 17235969, - "entPhysicalDescr": "", + "entPhysicalDescr": null, "entPhysicalClass": "module", "entPhysicalName": "CLK 7", "entPhysicalHardwareRev": "", @@ -7630,7 +7630,7 @@ "entPhysicalAlias": "", "entPhysicalAssetID": "", "entPhysicalIsFRU": "false", - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": "enterprises.2011.20021210.12.561156", "entPhysicalSerialNum": "", "entPhysicalContainedIn": 17235968, diff --git a/tests/data/vrp_power.json b/tests/data/vrp_power.json index 67b33b70b2..928802d306 100644 --- a/tests/data/vrp_power.json +++ b/tests/data/vrp_power.json @@ -1463,8 +1463,8 @@ "entPhysical": [ { "entPhysicalIndex": 67108867, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "HUAWEI S5720 Routing Switch", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1472,18 +1472,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 67108869, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 0", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1491,18 +1491,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68157445, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1510,18 +1510,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68157449, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "MPU Board 1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1529,18 +1529,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68173836, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1548,18 +1548,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68173837, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "ES5D21VST000 Card 1/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1567,18 +1567,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68190220, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1586,18 +1586,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68206604, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1605,18 +1605,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68222988, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1624,18 +1624,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68239372, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1643,18 +1643,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68239373, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "POWER Card 1/PWR1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1662,18 +1662,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68255756, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1681,18 +1681,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68255757, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "POWER Card 1/PWR2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1700,18 +1700,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68272140, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1719,18 +1719,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68272141, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN Card 1/FAN1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1738,18 +1738,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68288524, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1757,18 +1757,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68304908, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1776,18 +1776,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68321292, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1795,18 +1795,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68337676, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/11", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1814,18 +1814,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68354060, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/12", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1833,18 +1833,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68370444, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/13", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1852,18 +1852,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68386828, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/14", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1871,18 +1871,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68403212, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/15", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1890,18 +1890,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68419596, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 1/16", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1909,18 +1909,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68452430, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1928,18 +1928,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485198, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1947,18 +1947,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485262, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1966,18 +1966,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485326, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -1985,18 +1985,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485390, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2004,18 +2004,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485454, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2023,18 +2023,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485518, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2042,18 +2042,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485582, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2061,18 +2061,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485646, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2080,18 +2080,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485710, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2099,18 +2099,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485774, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2118,18 +2118,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485838, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/11", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2137,18 +2137,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485902, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/12", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2156,18 +2156,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68485966, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/13", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2175,18 +2175,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486030, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/14", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2194,18 +2194,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486094, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/15", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2213,18 +2213,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486158, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/16", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2232,18 +2232,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486222, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/17", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2251,18 +2251,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486286, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/18", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2270,18 +2270,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486350, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/19", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2289,18 +2289,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486414, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/20", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2308,18 +2308,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486478, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/21", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2327,18 +2327,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486542, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/22", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2346,18 +2346,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486606, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/23", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2365,18 +2365,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486670, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/24", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2384,18 +2384,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486734, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/25", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2403,18 +2403,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486798, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/26", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2422,18 +2422,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486862, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/27", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2441,18 +2441,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486926, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/28", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2460,18 +2460,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68486990, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/29", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2479,18 +2479,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487054, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/30", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2498,18 +2498,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487118, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/31", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2517,18 +2517,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487182, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/32", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2536,18 +2536,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487246, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/33", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2555,18 +2555,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487310, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/34", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2574,18 +2574,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487374, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/35", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2593,18 +2593,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487438, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/36", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2612,18 +2612,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487502, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/37", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2631,18 +2631,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487566, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/38", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2650,18 +2650,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487630, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/39", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2669,18 +2669,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487694, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/40", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2688,18 +2688,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487758, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/41", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2707,18 +2707,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487822, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/42", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2726,18 +2726,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487886, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/43", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2745,18 +2745,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68487950, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/44", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2764,18 +2764,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488014, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/45", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2783,18 +2783,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488078, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/46", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2802,18 +2802,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488142, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/47", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2821,18 +2821,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68488206, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet1/0/48", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2840,18 +2840,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68517966, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2859,18 +2859,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518030, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2878,18 +2878,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518094, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2897,18 +2897,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 68518158, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet1/0/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2916,18 +2916,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69206021, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2935,18 +2935,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69206025, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "MPU Board 2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2954,18 +2954,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69222412, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2973,18 +2973,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69222413, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "ES5D21VST000 Card 2/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -2992,18 +2992,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69238796, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3011,18 +3011,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69255180, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3030,18 +3030,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69271564, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3049,18 +3049,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69287948, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3068,18 +3068,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69287949, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "POWER Card 2/PWR1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3087,18 +3087,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69304332, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3106,18 +3106,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69304333, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "POWER Card 2/PWR2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3125,18 +3125,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69320716, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3144,18 +3144,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69320717, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "FAN Card 2/FAN1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3163,18 +3163,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69337100, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3182,18 +3182,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69353484, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3201,18 +3201,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69369868, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3220,18 +3220,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69386252, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/11", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3239,18 +3239,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69402636, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/12", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3258,18 +3258,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69419020, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/13", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3277,18 +3277,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69435404, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/14", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3296,18 +3296,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69451788, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/15", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3315,18 +3315,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69468172, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Card slot 2/16", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3334,18 +3334,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69501006, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "MEth0/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3353,18 +3353,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533774, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3372,18 +3372,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533838, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3391,18 +3391,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533902, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3410,18 +3410,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69533966, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3429,18 +3429,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534030, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3448,18 +3448,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534094, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3467,18 +3467,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534158, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3486,18 +3486,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534222, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3505,18 +3505,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534286, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/9", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3524,18 +3524,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534350, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/10", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3543,18 +3543,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534414, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/11", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3562,18 +3562,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534478, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/12", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3581,18 +3581,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534542, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/13", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3600,18 +3600,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534606, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/14", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3619,18 +3619,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534670, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/15", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3638,18 +3638,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534734, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/16", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3657,18 +3657,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534798, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/17", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3676,18 +3676,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534862, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/18", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3695,18 +3695,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534926, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/19", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3714,18 +3714,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69534990, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/20", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3733,18 +3733,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535054, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/21", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3752,18 +3752,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535118, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/22", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3771,18 +3771,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535182, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/23", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3790,18 +3790,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535246, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/24", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3809,18 +3809,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535310, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/25", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3828,18 +3828,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535374, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/26", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3847,18 +3847,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535438, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/27", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3866,18 +3866,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535502, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/28", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3885,18 +3885,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535566, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/29", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3904,18 +3904,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535630, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/30", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3923,18 +3923,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535694, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/31", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3942,18 +3942,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535758, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/32", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3961,18 +3961,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535822, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/33", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3980,18 +3980,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535886, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/34", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -3999,18 +3999,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69535950, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/35", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4018,18 +4018,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536014, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/36", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4037,18 +4037,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536078, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/37", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4056,18 +4056,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536142, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/38", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4075,18 +4075,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536206, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/39", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4094,18 +4094,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536270, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/40", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4113,18 +4113,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536334, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/41", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4132,18 +4132,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536398, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/42", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4151,18 +4151,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536462, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/43", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4170,18 +4170,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536526, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/44", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4189,18 +4189,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536590, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/45", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4208,18 +4208,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536654, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/46", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4227,18 +4227,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536718, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/47", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4246,18 +4246,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69536782, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "GigabitEthernet2/0/48", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4265,18 +4265,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566542, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/1", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4284,18 +4284,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566606, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/2", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4303,18 +4303,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566670, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4322,18 +4322,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 69566734, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "XGigabitEthernet2/0/4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4341,18 +4341,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 70254597, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 3", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4360,18 +4360,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 71303173, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 4", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4379,18 +4379,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 72351749, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 5", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4398,18 +4398,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 73400325, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 6", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4417,18 +4417,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 74448901, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 7", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4436,18 +4436,18 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null }, { "entPhysicalIndex": 75497477, - "entPhysicalDescr": "", - "entPhysicalClass": "", + "entPhysicalDescr": null, + "entPhysicalClass": null, "entPhysicalName": "Board slot 8", "entPhysicalHardwareRev": null, "entPhysicalFirmwareRev": null, @@ -4455,12 +4455,12 @@ "entPhysicalAlias": null, "entPhysicalAssetID": null, "entPhysicalIsFRU": null, - "entPhysicalModelName": "", + "entPhysicalModelName": null, "entPhysicalVendorType": null, - "entPhysicalSerialNum": "", + "entPhysicalSerialNum": null, "entPhysicalContainedIn": 0, "entPhysicalParentRelPos": 0, - "entPhysicalMfgName": "", + "entPhysicalMfgName": null, "ifIndex": null } ]