import * as pulumi from "@pulumi/pulumi"; /** * This data source provides details about a specific Repository Object Content resource in Oracle Cloud Infrastructure Devops service. * * Retrieve contents of a specified object. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryObjectContent = oci.devops.getRepositoryObjectContent({ * repositoryId: testRepository.id, * sha: repositoryObjectContentSha, * filePath: repositoryObjectContentFilePath, * }); * ``` */ export declare function getRepositoryObjectContent(args: GetRepositoryObjectContentArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRepositoryObjectContent. */ export interface GetRepositoryObjectContentArgs { /** * A filter to return only commits that affect any of the specified paths. */ filePath?: string; /** * Unique repository identifier. */ repositoryId: string; /** * The SHA of a blob or tree. */ sha: string; } /** * A collection of values returned by getRepositoryObjectContent. */ export interface GetRepositoryObjectContentResult { readonly filePath?: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly repositoryId: string; readonly sha: string; } /** * This data source provides details about a specific Repository Object Content resource in Oracle Cloud Infrastructure Devops service. * * Retrieve contents of a specified object. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryObjectContent = oci.devops.getRepositoryObjectContent({ * repositoryId: testRepository.id, * sha: repositoryObjectContentSha, * filePath: repositoryObjectContentFilePath, * }); * ``` */ export declare function getRepositoryObjectContentOutput(args: GetRepositoryObjectContentOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRepositoryObjectContent. */ export interface GetRepositoryObjectContentOutputArgs { /** * A filter to return only commits that affect any of the specified paths. */ filePath?: pulumi.Input; /** * Unique repository identifier. */ repositoryId: pulumi.Input; /** * The SHA of a blob or tree. */ sha: pulumi.Input; } //# sourceMappingURL=getRepositoryObjectContent.d.ts.map