UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

124 lines (123 loc) 3.04 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Datasource for looking up a Nexus connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getNexusConnector({ * identifier: "identifier", * }); * ``` */ export declare function getNexusConnector(args: GetNexusConnectorArgs, opts?: pulumi.InvokeOptions): Promise<GetNexusConnectorResult>; /** * A collection of arguments for invoking getNexusConnector. */ export interface GetNexusConnectorArgs { /** * Unique identifier of the resource. */ identifier: string; /** * Name of the resource. */ name?: string; /** * Unique identifier of the organization. */ orgId?: string; /** * Unique identifier of the project. */ projectId?: string; } /** * A collection of values returned by getNexusConnector. */ export interface GetNexusConnectorResult { /** * Credentials to use for authentication. */ readonly credentials: outputs.platform.GetNexusConnectorCredential[]; /** * Tags to filter delegates for connection. */ readonly delegateSelectors: string[]; /** * Description of the resource. */ readonly description: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Unique identifier of the resource. */ readonly identifier: string; /** * Name of the resource. */ readonly name?: string; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * URL of the Nexus server. */ readonly url: string; /** * Version of the Nexus server. Valid values are 2.x, 3.x */ readonly version: string; } /** * Datasource for looking up a Nexus connector. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as harness from "@pulumi/harness"; * * const example = harness.platform.getNexusConnector({ * identifier: "identifier", * }); * ``` */ export declare function getNexusConnectorOutput(args: GetNexusConnectorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetNexusConnectorResult>; /** * A collection of arguments for invoking getNexusConnector. */ export interface GetNexusConnectorOutputArgs { /** * Unique identifier of the resource. */ identifier: pulumi.Input<string>; /** * Name of the resource. */ name?: pulumi.Input<string>; /** * Unique identifier of the organization. */ orgId?: pulumi.Input<string>; /** * Unique identifier of the project. */ projectId?: pulumi.Input<string>; }