import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Repository Author resource in Oracle Cloud Infrastructure Devops service. * * Retrieve a list of all the authors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryAuthor = oci.devops.getRepositoryAuthor({ * repositoryId: testRepository.id, * refName: repositoryAuthorRefName, * }); * ``` */ export declare function getRepositoryAuthor(args: GetRepositoryAuthorArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRepositoryAuthor. */ export interface GetRepositoryAuthorArgs { /** * A filter to return only resources that match the given reference name. */ refName?: string; /** * Unique repository identifier. */ repositoryId: string; } /** * A collection of values returned by getRepositoryAuthor. */ export interface GetRepositoryAuthorResult { /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * List of author objects. */ readonly items: outputs.DevOps.GetRepositoryAuthorItem[]; readonly refName?: string; readonly repositoryId: string; } /** * This data source provides details about a specific Repository Author resource in Oracle Cloud Infrastructure Devops service. * * Retrieve a list of all the authors. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryAuthor = oci.devops.getRepositoryAuthor({ * repositoryId: testRepository.id, * refName: repositoryAuthorRefName, * }); * ``` */ export declare function getRepositoryAuthorOutput(args: GetRepositoryAuthorOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRepositoryAuthor. */ export interface GetRepositoryAuthorOutputArgs { /** * A filter to return only resources that match the given reference name. */ refName?: pulumi.Input; /** * Unique repository identifier. */ repositoryId: pulumi.Input; } //# sourceMappingURL=getRepositoryAuthor.d.ts.map