import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getSystemSdnConnector(args: GetSystemSdnConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking GetSystemSdnConnector. */ export interface GetSystemSdnConnectorArgs { name: string; vdomparam?: string; } /** * A collection of values returned by GetSystemSdnConnector. */ export interface GetSystemSdnConnectorResult { readonly accessKey: string; readonly altResourceIp: string; readonly apiKey: string; readonly azureRegion: string; readonly clientId: string; readonly clientSecret: string; readonly compartmentId: string; readonly compartmentLists: outputs.GetSystemSdnConnectorCompartmentList[]; readonly computeGeneration: number; readonly domain: string; readonly externalAccountLists: outputs.GetSystemSdnConnectorExternalAccountList[]; readonly externalIps: outputs.GetSystemSdnConnectorExternalIp[]; readonly forwardingRules: outputs.GetSystemSdnConnectorForwardingRule[]; readonly gcpProject: string; readonly gcpProjectLists: outputs.GetSystemSdnConnectorGcpProjectList[]; readonly groupName: string; readonly haStatus: string; readonly ibmRegion: string; readonly ibmRegionGen1: string; readonly ibmRegionGen2: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly keyPasswd: string; readonly loginEndpoint: string; readonly name: string; readonly nics: outputs.GetSystemSdnConnectorNic[]; readonly ociCert: string; readonly ociFingerprint: string; readonly ociRegion: string; readonly ociRegionLists: outputs.GetSystemSdnConnectorOciRegionList[]; readonly ociRegionType: string; readonly password: string; readonly privateKey: string; readonly proxy: string; readonly region: string; readonly resourceGroup: string; readonly resourceUrl: string; readonly routeTables: outputs.GetSystemSdnConnectorRouteTable[]; readonly routes: outputs.GetSystemSdnConnectorRoute[]; readonly secretKey: string; readonly secretToken: string; readonly server: string; readonly serverCaCert: string; readonly serverCert: string; readonly serverLists: outputs.GetSystemSdnConnectorServerList[]; readonly serverPort: number; readonly serviceAccount: string; readonly status: string; readonly subscriptionId: string; readonly tenantId: string; readonly type: string; readonly updateInterval: number; readonly useMetadataIam: string; readonly userId: string; readonly username: string; readonly vcenterPassword: string; readonly vcenterServer: string; readonly vcenterUsername: string; readonly vdomparam?: string; readonly verifyCertificate: string; readonly vpcId: string; } export declare function getSystemSdnConnectorOutput(args: GetSystemSdnConnectorOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output; /** * A collection of arguments for invoking GetSystemSdnConnector. */ export interface GetSystemSdnConnectorOutputArgs { name: pulumi.Input; vdomparam?: pulumi.Input; }