import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * This data source provides details about a specific Repository Diff resource in Oracle Cloud Infrastructure Devops service. * * Gets the line-by-line difference between file on different commits. This API will be deprecated on Wed, 29 Mar 2023 01:00:00 GMT as it does not get recognized when filePath has '/'. This will be replaced by "/repositories/{repositoryId}/file/diffs" * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryDiff = oci.devops.getRepositoryDiff({ * baseVersion: repositoryDiffBaseVersion, * filePath: repositoryDiffFilePath, * repositoryId: testRepository.id, * targetVersion: repositoryDiffTargetVersion, * isComparisonFromMergeBase: repositoryDiffIsComparisonFromMergeBase === "true", * }); * ``` */ export declare function getRepositoryDiff(args: GetRepositoryDiffArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getRepositoryDiff. */ export interface GetRepositoryDiffArgs { /** * The branch to compare changes against. */ baseVersion: string; /** * Path to a file within a repository. */ filePath: string; /** * Boolean to indicate whether to use merge base or most recent revision. */ isComparisonFromMergeBase?: boolean; /** * Unique repository identifier. */ repositoryId: string; /** * The branch where changes are coming from. */ targetVersion: string; } /** * A collection of values returned by getRepositoryDiff. */ export interface GetRepositoryDiffResult { /** * Indicates whether the changed file contains conflicts. */ readonly areConflictsInFile: boolean; readonly baseVersion: string; /** * List of changed section in the file. */ readonly changes: outputs.DevOps.GetRepositoryDiffChange[]; readonly filePath: string; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; /** * Indicates whether the file is binary. */ readonly isBinary: boolean; readonly isComparisonFromMergeBase?: boolean; /** * Indicates whether the file is large. */ readonly isLarge: boolean; /** * The ID of the changed object on the target version. */ readonly newId: string; /** * The path on the target version to the changed object. */ readonly newPath: string; /** * The ID of the changed object on the base version. */ readonly oldId: string; /** * The path on the base version to the changed object. */ readonly oldPath: string; readonly repositoryId: string; readonly targetVersion: string; } /** * This data source provides details about a specific Repository Diff resource in Oracle Cloud Infrastructure Devops service. * * Gets the line-by-line difference between file on different commits. This API will be deprecated on Wed, 29 Mar 2023 01:00:00 GMT as it does not get recognized when filePath has '/'. This will be replaced by "/repositories/{repositoryId}/file/diffs" * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as oci from "@pulumi/oci"; * * const testRepositoryDiff = oci.devops.getRepositoryDiff({ * baseVersion: repositoryDiffBaseVersion, * filePath: repositoryDiffFilePath, * repositoryId: testRepository.id, * targetVersion: repositoryDiffTargetVersion, * isComparisonFromMergeBase: repositoryDiffIsComparisonFromMergeBase === "true", * }); * ``` */ export declare function getRepositoryDiffOutput(args: GetRepositoryDiffOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getRepositoryDiff. */ export interface GetRepositoryDiffOutputArgs { /** * The branch to compare changes against. */ baseVersion: pulumi.Input; /** * Path to a file within a repository. */ filePath: pulumi.Input; /** * Boolean to indicate whether to use merge base or most recent revision. */ isComparisonFromMergeBase?: pulumi.Input; /** * Unique repository identifier. */ repositoryId: pulumi.Input; /** * The branch where changes are coming from. */ targetVersion: pulumi.Input; } //# sourceMappingURL=getRepositoryDiff.d.ts.map