1. Packages
  2. Oracle Cloud Infrastructure
  3. API Docs
  4. DevOps
  5. getRepositoryDiff
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

oci.DevOps.getRepositoryDiff

Explore with Pulumi AI

oci logo
Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi

    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

    import * as pulumi from "@pulumi/pulumi";
    import * as oci from "@pulumi/oci";
    
    const testRepositoryDiff = oci.DevOps.getRepositoryDiff({
        baseVersion: _var.repository_diff_base_version,
        filePath: _var.repository_diff_file_path,
        repositoryId: oci_devops_repository.test_repository.id,
        targetVersion: _var.repository_diff_target_version,
        isComparisonFromMergeBase: _var.repository_diff_is_comparison_from_merge_base,
    });
    
    import pulumi
    import pulumi_oci as oci
    
    test_repository_diff = oci.DevOps.get_repository_diff(base_version=var["repository_diff_base_version"],
        file_path=var["repository_diff_file_path"],
        repository_id=oci_devops_repository["test_repository"]["id"],
        target_version=var["repository_diff_target_version"],
        is_comparison_from_merge_base=var["repository_diff_is_comparison_from_merge_base"])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-oci/sdk/go/oci/DevOps"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := DevOps.GetRepositoryDiff(ctx, &devops.GetRepositoryDiffArgs{
    			BaseVersion:               _var.Repository_diff_base_version,
    			FilePath:                  _var.Repository_diff_file_path,
    			RepositoryId:              oci_devops_repository.Test_repository.Id,
    			TargetVersion:             _var.Repository_diff_target_version,
    			IsComparisonFromMergeBase: pulumi.BoolRef(_var.Repository_diff_is_comparison_from_merge_base),
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Oci = Pulumi.Oci;
    
    return await Deployment.RunAsync(() => 
    {
        var testRepositoryDiff = Oci.DevOps.GetRepositoryDiff.Invoke(new()
        {
            BaseVersion = @var.Repository_diff_base_version,
            FilePath = @var.Repository_diff_file_path,
            RepositoryId = oci_devops_repository.Test_repository.Id,
            TargetVersion = @var.Repository_diff_target_version,
            IsComparisonFromMergeBase = @var.Repository_diff_is_comparison_from_merge_base,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.oci.DevOps.DevOpsFunctions;
    import com.pulumi.oci.DevOps.inputs.GetRepositoryDiffArgs;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            final var testRepositoryDiff = DevOpsFunctions.getRepositoryDiff(GetRepositoryDiffArgs.builder()
                .baseVersion(var_.repository_diff_base_version())
                .filePath(var_.repository_diff_file_path())
                .repositoryId(oci_devops_repository.test_repository().id())
                .targetVersion(var_.repository_diff_target_version())
                .isComparisonFromMergeBase(var_.repository_diff_is_comparison_from_merge_base())
                .build());
    
        }
    }
    
    variables:
      testRepositoryDiff:
        fn::invoke:
          Function: oci:DevOps:getRepositoryDiff
          Arguments:
            baseVersion: ${var.repository_diff_base_version}
            filePath: ${var.repository_diff_file_path}
            repositoryId: ${oci_devops_repository.test_repository.id}
            targetVersion: ${var.repository_diff_target_version}
            isComparisonFromMergeBase: ${var.repository_diff_is_comparison_from_merge_base}
    

    Using getRepositoryDiff

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function getRepositoryDiff(args: GetRepositoryDiffArgs, opts?: InvokeOptions): Promise<GetRepositoryDiffResult>
    function getRepositoryDiffOutput(args: GetRepositoryDiffOutputArgs, opts?: InvokeOptions): Output<GetRepositoryDiffResult>
    def get_repository_diff(base_version: Optional[str] = None,
                            file_path: Optional[str] = None,
                            is_comparison_from_merge_base: Optional[bool] = None,
                            repository_id: Optional[str] = None,
                            target_version: Optional[str] = None,
                            opts: Optional[InvokeOptions] = None) -> GetRepositoryDiffResult
    def get_repository_diff_output(base_version: Optional[pulumi.Input[str]] = None,
                            file_path: Optional[pulumi.Input[str]] = None,
                            is_comparison_from_merge_base: Optional[pulumi.Input[bool]] = None,
                            repository_id: Optional[pulumi.Input[str]] = None,
                            target_version: Optional[pulumi.Input[str]] = None,
                            opts: Optional[InvokeOptions] = None) -> Output[GetRepositoryDiffResult]
    func GetRepositoryDiff(ctx *Context, args *GetRepositoryDiffArgs, opts ...InvokeOption) (*GetRepositoryDiffResult, error)
    func GetRepositoryDiffOutput(ctx *Context, args *GetRepositoryDiffOutputArgs, opts ...InvokeOption) GetRepositoryDiffResultOutput

    > Note: This function is named GetRepositoryDiff in the Go SDK.

    public static class GetRepositoryDiff 
    {
        public static Task<GetRepositoryDiffResult> InvokeAsync(GetRepositoryDiffArgs args, InvokeOptions? opts = null)
        public static Output<GetRepositoryDiffResult> Invoke(GetRepositoryDiffInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<GetRepositoryDiffResult> getRepositoryDiff(GetRepositoryDiffArgs args, InvokeOptions options)
    // Output-based functions aren't available in Java yet
    
    fn::invoke:
      function: oci:DevOps/getRepositoryDiff:getRepositoryDiff
      arguments:
        # arguments dictionary

    The following arguments are supported:

    BaseVersion string
    The branch to compare changes against.
    FilePath string
    Path to a file within a repository.
    RepositoryId string
    Unique repository identifier.
    TargetVersion string
    The branch where changes are coming from.
    IsComparisonFromMergeBase bool
    Boolean to indicate whether to use merge base or most recent revision.
    BaseVersion string
    The branch to compare changes against.
    FilePath string
    Path to a file within a repository.
    RepositoryId string
    Unique repository identifier.
    TargetVersion string
    The branch where changes are coming from.
    IsComparisonFromMergeBase bool
    Boolean to indicate whether to use merge base or most recent revision.
    baseVersion String
    The branch to compare changes against.
    filePath String
    Path to a file within a repository.
    repositoryId String
    Unique repository identifier.
    targetVersion String
    The branch where changes are coming from.
    isComparisonFromMergeBase Boolean
    Boolean to indicate whether to use merge base or most recent revision.
    baseVersion string
    The branch to compare changes against.
    filePath string
    Path to a file within a repository.
    repositoryId string
    Unique repository identifier.
    targetVersion string
    The branch where changes are coming from.
    isComparisonFromMergeBase boolean
    Boolean to indicate whether to use merge base or most recent revision.
    base_version str
    The branch to compare changes against.
    file_path str
    Path to a file within a repository.
    repository_id str
    Unique repository identifier.
    target_version str
    The branch where changes are coming from.
    is_comparison_from_merge_base bool
    Boolean to indicate whether to use merge base or most recent revision.
    baseVersion String
    The branch to compare changes against.
    filePath String
    Path to a file within a repository.
    repositoryId String
    Unique repository identifier.
    targetVersion String
    The branch where changes are coming from.
    isComparisonFromMergeBase Boolean
    Boolean to indicate whether to use merge base or most recent revision.

    getRepositoryDiff Result

    The following output properties are available:

    AreConflictsInFile bool
    Indicates whether the changed file contains conflicts.
    BaseVersion string
    Changes List<GetRepositoryDiffChange>
    List of changed section in the file.
    FilePath string
    Id string
    The provider-assigned unique ID for this managed resource.
    IsBinary bool
    Indicates whether the file is binary.
    IsLarge bool
    Indicates whether the file is large.
    NewId string
    The ID of the changed object on the target version.
    NewPath string
    The path on the target version to the changed object.
    OldId string
    The ID of the changed object on the base version.
    OldPath string
    The path on the base version to the changed object.
    RepositoryId string
    TargetVersion string
    IsComparisonFromMergeBase bool
    AreConflictsInFile bool
    Indicates whether the changed file contains conflicts.
    BaseVersion string
    Changes []GetRepositoryDiffChange
    List of changed section in the file.
    FilePath string
    Id string
    The provider-assigned unique ID for this managed resource.
    IsBinary bool
    Indicates whether the file is binary.
    IsLarge bool
    Indicates whether the file is large.
    NewId string
    The ID of the changed object on the target version.
    NewPath string
    The path on the target version to the changed object.
    OldId string
    The ID of the changed object on the base version.
    OldPath string
    The path on the base version to the changed object.
    RepositoryId string
    TargetVersion string
    IsComparisonFromMergeBase bool
    areConflictsInFile Boolean
    Indicates whether the changed file contains conflicts.
    baseVersion String
    changes List<GetRepositoryDiffChange>
    List of changed section in the file.
    filePath String
    id String
    The provider-assigned unique ID for this managed resource.
    isBinary Boolean
    Indicates whether the file is binary.
    isLarge Boolean
    Indicates whether the file is large.
    newId String
    The ID of the changed object on the target version.
    newPath String
    The path on the target version to the changed object.
    oldId String
    The ID of the changed object on the base version.
    oldPath String
    The path on the base version to the changed object.
    repositoryId String
    targetVersion String
    isComparisonFromMergeBase Boolean
    areConflictsInFile boolean
    Indicates whether the changed file contains conflicts.
    baseVersion string
    changes GetRepositoryDiffChange[]
    List of changed section in the file.
    filePath string
    id string
    The provider-assigned unique ID for this managed resource.
    isBinary boolean
    Indicates whether the file is binary.
    isLarge boolean
    Indicates whether the file is large.
    newId string
    The ID of the changed object on the target version.
    newPath string
    The path on the target version to the changed object.
    oldId string
    The ID of the changed object on the base version.
    oldPath string
    The path on the base version to the changed object.
    repositoryId string
    targetVersion string
    isComparisonFromMergeBase boolean
    are_conflicts_in_file bool
    Indicates whether the changed file contains conflicts.
    base_version str
    changes Sequence[devops.GetRepositoryDiffChange]
    List of changed section in the file.
    file_path str
    id str
    The provider-assigned unique ID for this managed resource.
    is_binary bool
    Indicates whether the file is binary.
    is_large bool
    Indicates whether the file is large.
    new_id str
    The ID of the changed object on the target version.
    new_path str
    The path on the target version to the changed object.
    old_id str
    The ID of the changed object on the base version.
    old_path str
    The path on the base version to the changed object.
    repository_id str
    target_version str
    is_comparison_from_merge_base bool
    areConflictsInFile Boolean
    Indicates whether the changed file contains conflicts.
    baseVersion String
    changes List<Property Map>
    List of changed section in the file.
    filePath String
    id String
    The provider-assigned unique ID for this managed resource.
    isBinary Boolean
    Indicates whether the file is binary.
    isLarge Boolean
    Indicates whether the file is large.
    newId String
    The ID of the changed object on the target version.
    newPath String
    The path on the target version to the changed object.
    oldId String
    The ID of the changed object on the base version.
    oldPath String
    The path on the base version to the changed object.
    repositoryId String
    targetVersion String
    isComparisonFromMergeBase Boolean

    Supporting Types

    GetRepositoryDiffChange

    BaseLine int
    The number of a line in the base version.
    BaseSpan int
    Number of lines chunk spans in base version.
    DiffSections List<GetRepositoryDiffChangeDiffSection>
    List of difference section.
    TargetLine int
    Line number in target version where changes begin.
    TargetSpan int
    Number of lines chunk spans in target version.
    BaseLine int
    The number of a line in the base version.
    BaseSpan int
    Number of lines chunk spans in base version.
    DiffSections []GetRepositoryDiffChangeDiffSection
    List of difference section.
    TargetLine int
    Line number in target version where changes begin.
    TargetSpan int
    Number of lines chunk spans in target version.
    baseLine Integer
    The number of a line in the base version.
    baseSpan Integer
    Number of lines chunk spans in base version.
    diffSections List<GetRepositoryDiffChangeDiffSection>
    List of difference section.
    targetLine Integer
    Line number in target version where changes begin.
    targetSpan Integer
    Number of lines chunk spans in target version.
    baseLine number
    The number of a line in the base version.
    baseSpan number
    Number of lines chunk spans in base version.
    diffSections GetRepositoryDiffChangeDiffSection[]
    List of difference section.
    targetLine number
    Line number in target version where changes begin.
    targetSpan number
    Number of lines chunk spans in target version.
    base_line int
    The number of a line in the base version.
    base_span int
    Number of lines chunk spans in base version.
    diff_sections Sequence[devops.GetRepositoryDiffChangeDiffSection]
    List of difference section.
    target_line int
    Line number in target version where changes begin.
    target_span int
    Number of lines chunk spans in target version.
    baseLine Number
    The number of a line in the base version.
    baseSpan Number
    Number of lines chunk spans in base version.
    diffSections List<Property Map>
    List of difference section.
    targetLine Number
    Line number in target version where changes begin.
    targetSpan Number
    Number of lines chunk spans in target version.

    GetRepositoryDiffChangeDiffSection

    Lines List<GetRepositoryDiffChangeDiffSectionLine>
    The lines within changed section.
    Type string
    Type of change.
    Lines []GetRepositoryDiffChangeDiffSectionLine
    The lines within changed section.
    Type string
    Type of change.
    lines List<GetRepositoryDiffChangeDiffSectionLine>
    The lines within changed section.
    type String
    Type of change.
    lines GetRepositoryDiffChangeDiffSectionLine[]
    The lines within changed section.
    type string
    Type of change.
    lines Sequence[devops.GetRepositoryDiffChangeDiffSectionLine]
    The lines within changed section.
    type str
    Type of change.
    lines List<Property Map>
    The lines within changed section.
    type String
    Type of change.

    GetRepositoryDiffChangeDiffSectionLine

    BaseLine int
    The number of a line in the base version.
    ConflictMarker string
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    LineContent string
    The contents of a line.
    TargetLine int
    Line number in target version where changes begin.
    BaseLine int
    The number of a line in the base version.
    ConflictMarker string
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    LineContent string
    The contents of a line.
    TargetLine int
    Line number in target version where changes begin.
    baseLine Integer
    The number of a line in the base version.
    conflictMarker String
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    lineContent String
    The contents of a line.
    targetLine Integer
    Line number in target version where changes begin.
    baseLine number
    The number of a line in the base version.
    conflictMarker string
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    lineContent string
    The contents of a line.
    targetLine number
    Line number in target version where changes begin.
    base_line int
    The number of a line in the base version.
    conflict_marker str
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    line_content str
    The contents of a line.
    target_line int
    Line number in target version where changes begin.
    baseLine Number
    The number of a line in the base version.
    conflictMarker String
    Indicates whether a line in a conflicted section of the difference is from the base version, the target version, or if its just a marker indicating the beginning, middle, or end of a conflicted section.
    lineContent String
    The contents of a line.
    targetLine Number
    Line number in target version where changes begin.

    Package Details

    Repository
    oci pulumi/pulumi-oci
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the oci Terraform Provider.
    oci logo
    Oracle Cloud Infrastructure v1.32.0 published on Thursday, Apr 18, 2024 by Pulumi