@lbrlabs/pulumi-harness
Version:
A Pulumi package for creating and managing Harness resources.
77 lines (76 loc) • 2.15 kB
TypeScript
import * as pulumi from "@pulumi/pulumi";
/**
* Data source for retrieving a GitOps RepoCert.
*/
export declare function getGitopsRepoCert(args: GetGitopsRepoCertArgs, opts?: pulumi.InvokeOptions): Promise<GetGitopsRepoCertResult>;
/**
* A collection of arguments for invoking getGitopsRepoCert.
*/
export interface GetGitopsRepoCertArgs {
/**
* account identifier of the Repository Certificates.
*/
accountId: string;
/**
* agent identifier of the Repository Certificates.
*/
agentId?: string;
/**
* organization identifier of the Repository Certificates.
*/
orgId?: string;
/**
* project identifier of the Repository Certificates.
*/
projectId?: string;
}
/**
* A collection of values returned by getGitopsRepoCert.
*/
export interface GetGitopsRepoCertResult {
/**
* account identifier of the Repository Certificates.
*/
readonly accountId: string;
/**
* agent identifier of the Repository Certificates.
*/
readonly agentId?: string;
/**
* The provider-assigned unique ID for this managed resource.
*/
readonly id: string;
/**
* organization identifier of the Repository Certificates.
*/
readonly orgId?: string;
/**
* project identifier of the Repository Certificates.
*/
readonly projectId?: string;
}
/**
* Data source for retrieving a GitOps RepoCert.
*/
export declare function getGitopsRepoCertOutput(args: GetGitopsRepoCertOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGitopsRepoCertResult>;
/**
* A collection of arguments for invoking getGitopsRepoCert.
*/
export interface GetGitopsRepoCertOutputArgs {
/**
* account identifier of the Repository Certificates.
*/
accountId: pulumi.Input<string>;
/**
* agent identifier of the Repository Certificates.
*/
agentId?: pulumi.Input<string>;
/**
* organization identifier of the Repository Certificates.
*/
orgId?: pulumi.Input<string>;
/**
* project identifier of the Repository Certificates.
*/
projectId?: pulumi.Input<string>;
}