first working types

This commit is contained in:
2022-12-06 17:20:45 +03:00
parent a1b03b81c0
commit 7d0d1b53ae
14 changed files with 129 additions and 75 deletions

View File

@@ -19,19 +19,22 @@ public class Subnetwork {
public string Permissions { get; }
public bool PingSubnet { get; }
public bool DiscoverSubnet { get; }
public bool ResolveDNS { get; }
public bool DNSRecursive { get; }
public bool DNSRecords { get; }
public int NameserverId { get; }
public bool ScanAgent { get; }
public bool IsFolder { get; }
public bool IsFull { get; }
public bool IsPool { get; }
public int TagId { get; }
public int Threshold { get; }
public int LocationId { get; }
public DateTime? EditDate { get; }
public DateTime? LastScan { get; }
public DateTime? LastDiscovery { get; }
public bool ResolveDNS { get; }
public Object Calculation { get; }
public Object? ExtendedData { get; }
public Subnetwork(
int id,
string subnet,
@@ -49,19 +52,22 @@ public class Subnetwork {
string permissions,
bool pingSubnet,
bool discoverSubnet,
bool resolveDNS,
bool dnsRecursive,
bool dnsRecords,
int nameserverId,
bool scanAgent,
bool isFolder,
bool isFull,
bool isPool,
int tagId,
int threshold,
int locationId,
DateTime? editDate,
DateTime? lastScan,
DateTime? lastDiscovery,
bool resolveDNS
Object calculation,
Object? custom_fields
) {
this.Id = id;
this.Subnet = subnet;
@@ -79,19 +85,22 @@ public class Subnetwork {
this.Permissions = permissions;
this.PingSubnet = pingSubnet;
this.DiscoverSubnet = discoverSubnet;
this.ResolveDNS = resolveDNS;
this.DNSRecursive = dnsRecursive;
this.DNSRecords = dnsRecords;
this.NameserverId = nameserverId;
this.ScanAgent = scanAgent;
this.IsFolder = isFolder;
this.IsFull = isFull;
this.IsPool = isPool;
this.TagId = tagId;
this.Threshold = threshold;
this.LocationId = locationId;
this.EditDate = editDate;
this.LastScan = lastScan;
this.LastDiscovery = lastDiscovery;
this.ResolveDNS = resolveDNS;
this.Calculation = calculation;
this.ExtendedData = custom_fields;
}
public string GetCIDR() {

View File

@@ -1,4 +1,5 @@
namespace PS.IPAM;
using System;
[Serializable]
public class Tag {

View File

@@ -1,28 +1,35 @@
namespace PS.IPAM;
using System;
using System.Dynamic;
[Serializable]
public class Vlan {
public class Vlan : DynamicObject {
public int Id { get; }
public int DomainId { get; }
public string Name { get; }
public int Number { get; }
public string Description { get; }
public DateTime? EditDate { get; }
public int CustomerId { get; }
public Object? ExtendedData { get; }
public Vlan (
int id,
int vlanId,
int domainId,
string name,
int number,
string description,
DateTime? editDate
DateTime? editDate,
int customer_id,
Object? custom_fields
) {
this.Id = id;
this.Id = vlanId;
this.DomainId = domainId;
this.Name = name;
this.Number = number;
this.Description = description;
this.EditDate = editDate;
this.CustomerId = customer_id;
this.ExtendedData = custom_fields;
}
public override string ToString()

View File

@@ -1,6 +1,7 @@
namespace PS.IPAM;
using System;
[Serializable]
public enum methods {
GET,
POST,

View File

@@ -1,12 +1,13 @@
namespace PS.IPAM;
using System;
[Serializable]
public enum types {
address,
domain,
section,
subnetwork,
tag,
vlan,
vrf
Address,
Domain,
Section,
Subnetwork,
Tag,
Vlan,
Vrf
}