import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemCentralManagement(args?: GetSystemCentralManagementArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemCentralManagement. */ export interface GetSystemCentralManagementArgs { vdomparam?: string; } /** * A collection of values returned by GetSystemCentralManagement. */ export interface GetSystemCentralManagementResult { readonly allowMonitor: string; readonly allowPushConfiguration: string; readonly allowPushFirmware: string; readonly allowRemoteFirmwareUpgrade: string; readonly caCert: string; readonly encAlgorithm: string; readonly fmg: string; readonly fmgSourceIp: string; readonly fmgSourceIp6: string; readonly fmgUpdatePort: string; readonly fortigateCloudSsoDefaultProfile: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly includeDefaultServers: string; readonly interface: string; readonly interfaceSelectMethod: string; readonly localCert: string; readonly mode: string; readonly scheduleConfigRestore: string; readonly scheduleScriptRestore: string; readonly serialNumber: string; readonly serverLists: outputs.GetSystemCentralManagementServerList[]; readonly type: string; readonly vdom: string; readonly vdomparam?: string; } export declare function getSystemCentralManagementOutput(args?: GetSystemCentralManagementOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemCentralManagement. */ export interface GetSystemCentralManagementOutputArgs { vdomparam?: pulumi.Input; }