@pulumi/harness
Version:
A Pulumi package for creating and managing Harness resources.
116 lines (115 loc) • 2.81 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
import * as outputs from "../types/output";
/**
* Datasource for looking up a Pdc connector.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getConnectorPdc({
* identifier: "identifier",
* });
* ```
*/
export declare function getConnectorPdc(args: GetConnectorPdcArgs, opts?: pulumi.InvokeOptions): Promise<GetConnectorPdcResult>;
/**
* A collection of arguments for invoking getConnectorPdc.
*/
export interface GetConnectorPdcArgs {
/**
* 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 getConnectorPdc.
*/
export interface GetConnectorPdcResult {
/**
* Tags to filter delegates for connection.
*/
readonly delegateSelectors: string[];
/**
* Description of the resource.
*/
readonly description: string;
/**
* Host of the Physical data centers.
*/
readonly hosts: outputs.platform.GetConnectorPdcHost[];
/**
* 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[];
}
/**
* Datasource for looking up a Pdc connector.
*
* ## Example Usage
*
* ```typescript
* import * as pulumi from "@pulumi/pulumi";
* import * as harness from "@pulumi/harness";
*
* const example = harness.platform.getConnectorPdc({
* identifier: "identifier",
* });
* ```
*/
export declare function getConnectorPdcOutput(args: GetConnectorPdcOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetConnectorPdcResult>;
/**
* A collection of arguments for invoking getConnectorPdc.
*/
export interface GetConnectorPdcOutputArgs {
/**
* 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>;
}