UNPKG

@pulumi/harness

Version:

A Pulumi package for creating and managing Harness resources.

131 lines (130 loc) 3.76 kB
import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Datasource for looking up a Custom Secret Manager connector. */ export declare function getConnectorCustomSecretManager(args: GetConnectorCustomSecretManagerArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorCustomSecretManagerResult>; /** * A collection of arguments for invoking getConnectorCustomSecretManager. */ export interface GetConnectorCustomSecretManagerArgs { /** * Tags to filter delegates for connection. */ delegateSelectors?: string[]; /** * 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 getConnectorCustomSecretManager. */ export interface GetConnectorCustomSecretManagerResult { /** * 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; /** * Specifies whether the secrets manager runs on a Harness delegate. */ readonly onDelegate: boolean; /** * Unique identifier of the organization. */ readonly orgId?: string; /** * Unique identifier of the project. */ readonly projectId?: string; /** * SSH secret reference for the custom secrets manager, Computed if 'on_delegate' is false. */ readonly sshSecretRef: string; /** * Tags to associate with the resource. */ readonly tags: string[]; /** * Host where the custom secrets manager is located, Computed if 'on_delegate' is false. */ readonly targetHost: string; readonly templateInputs: outputs.platform.GetConnectorCustomSecretManagerTemplateInput[]; /** * Reference to the template used for managing secrets. */ readonly templateRef: string; /** * Timeout in seconds for secrets management operations. */ readonly timeout: number; /** * Type of the custom secrets manager, typically set to 'CustomSecretManager'. */ readonly type: string; /** * Version identifier of the secrets management template. */ readonly versionLabel: string; /** * The working directory for operations, Computed if 'on_delegate' is false. */ readonly workingDirectory: string; } /** * Datasource for looking up a Custom Secret Manager connector. */ export declare function getConnectorCustomSecretManagerOutput(args: GetConnectorCustomSecretManagerOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorCustomSecretManagerResult>; /** * A collection of arguments for invoking getConnectorCustomSecretManager. */ export interface GetConnectorCustomSecretManagerOutputArgs { /** * Tags to filter delegates for connection. */ delegateSelectors?: pulumi.Input<pulumi.Input<string>[]>; /** * 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>; }