interface AddressObjectConfig {
    response: {
        result: {
            address: {
                entry: {
                    $: {
                        name: string;
                    };
                    description?: string;
                    fqdn?: string;
                    ip-netmask?: string;
                    tag?: {
                        member: string | string[];
                    };
                }[];
            };
        };
    };
}

Properties

Properties

response: {
    result: {
        address: {
            entry: {
                $: {
                    name: string;
                };
                description?: string;
                fqdn?: string;
                ip-netmask?: string;
                tag?: {
                    member: string | string[];
                };
            }[];
        };
    };
}

Type declaration

  • result: {
        address: {
            entry: {
                $: {
                    name: string;
                };
                description?: string;
                fqdn?: string;
                ip-netmask?: string;
                tag?: {
                    member: string | string[];
                };
            }[];
        };
    }
    • address: {
          entry: {
              $: {
                  name: string;
              };
              description?: string;
              fqdn?: string;
              ip-netmask?: string;
              tag?: {
                  member: string | string[];
              };
          }[];
      }
      • entry: {
            $: {
                name: string;
            };
            description?: string;
            fqdn?: string;
            ip-netmask?: string;
            tag?: {
                member: string | string[];
            };
        }[]

Generated using TypeDoc