pmcf
Version:
Poor mans configuration management
110 lines (109 loc) • 3.07 kB
text/typescript
export const networkAddressType: string[];
export namespace networkAttributes {
export let scope: {
values: string[];
type: string;
isKey: boolean;
writable: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
default?: any;
set?: Function;
get?: Function;
env?: string[] | string;
};
let _class: {
values: string[];
type: string;
isKey: boolean;
writable: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
default?: any;
set?: Function;
get?: Function;
env?: string[] | string;
};
export { _class as class };
export let kind: {
values: string[];
type: string;
isKey: boolean;
writable: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
default?: any;
set?: Function;
get?: Function;
env?: string[] | string;
};
export { string_attribute_writable as ssid };
export { string_attribute_writable as psk };
export { string_attribute_writable as secretName };
export let metric: {
type: string;
isKey: boolean;
writable: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
default?: any;
set?: Function;
get?: Function;
env?: string[] | string;
};
export let mtu: {
default: number;
type: string;
isKey: boolean;
writable: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
set?: Function;
get?: Function;
env?: string[] | string;
};
export namespace gateway {
let type: string;
let collection: boolean;
let writable: boolean;
}
export { boolean_attribute_writable as multicastDNS };
}
export namespace networkAddressAttributes {
export let hostName: {
writable: boolean;
type: string;
isKey: boolean;
mandatory: boolean;
collection: boolean;
private?: boolean;
depends?: string;
description?: string;
default?: any;
set?: Function;
get?: Function;
env?: string[] | string;
};
export { string_collection_attribute_writable as cidrAddresses };
export { string_attribute_writable as cidrAddress };
export { string_collection_attribute_writable as addresses };
export { string_attribute_writable as address };
}
import { string_attribute_writable } from "pacc";
import { boolean_attribute_writable } from "pacc";
import { string_collection_attribute_writable } from "pacc";