import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Outbound Connector resource in Oracle Cloud Infrastructure File Storage service. * * Gets the specified outbound connector's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOutboundConnector = oci.filestorage.getOutboundConnector({ * outboundConnectorId: testOutboundConnectorOciFileStorageOutboundConnector.id, * }); * ``` */ export declare function getOutboundConnector(args: GetOutboundConnectorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getOutboundConnector. */ export interface GetOutboundConnectorArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the outbound connector. */ outboundConnectorId: string; } /** * A collection of values returned by getOutboundConnector. */ export interface GetOutboundConnectorResult { /** * The availability domain the outbound connector is in. May be unset as a blank or NULL value. Example: `Uocm:PHX-AD-1` */ readonly availabilityDomain: string; /** * The LDAP Distinguished Name of the account. */ readonly bindDistinguishedName: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains the outbound connector. */ readonly compartmentId: string; /** * The account type of this outbound connector. */ readonly connectorType: string; /** * Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}` */ readonly definedTags: { [key: string]: string; }; /** * A user-friendly name. It does not have to be unique, and it is changeable. Avoid entering confidential information. Example: `My outbound connector` */ readonly displayName: string; /** * Array of server endpoints to use when connecting with the LDAP bind account. */ readonly endpoints: outputs.FileStorage.GetOutboundConnectorEndpoint[]; /** * Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}` */ readonly freeformTags: { [key: string]: string; }; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the outbound connector. */ readonly id: string; readonly isLockOverride: boolean; /** * Locks associated with this resource. */ readonly locks: outputs.FileStorage.GetOutboundConnectorLock[]; readonly outboundConnectorId: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the password for the LDAP bind account in the Vault. */ readonly passwordSecretId: string; /** * Version of the password secret in the Vault to use. */ readonly passwordSecretVersion: number; /** * The current state of this outbound connector. */ readonly state: string; /** * System tags for this resource. System tags are applied to resources by internal Oracle Cloud Infrastructure services. */ readonly systemTags: { [key: string]: string; }; /** * The date and time the outbound connector was created in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z` */ readonly timeCreated: string; /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the trusted certificate for the LDAP server in the Vault . */ readonly trustedCertificateSecretId: string; /** * Version of the trusted certificate secret in the Vault to use. */ readonly trustedCertificateSecretVersion: number; } /** * This data source provides details about a specific Outbound Connector resource in Oracle Cloud Infrastructure File Storage service. * * Gets the specified outbound connector's information. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testOutboundConnector = oci.filestorage.getOutboundConnector({ * outboundConnectorId: testOutboundConnectorOciFileStorageOutboundConnector.id, * }); * ``` */ export declare function getOutboundConnectorOutput(args: GetOutboundConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getOutboundConnector. */ export interface GetOutboundConnectorOutputArgs { /** * The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the outbound connector. */ outboundConnectorId: pulumi.Input; } //# sourceMappingURL=getOutboundConnector.d.ts.map