ConflictMetadata

public struct ConflictMetadata : AWSShape

Undocumented

  • Declaration

    Swift

    public static var _members: [AWSShapeMember]
  • A boolean value indicating whether there are conflicts in the content of a file.

    Declaration

    Swift

    public let contentConflict: Bool?
  • A boolean value indicating whether there are conflicts in the file mode of a file.

    Declaration

    Swift

    public let fileModeConflict: Bool?
  • The file modes of the file in the source, destination, and base of the merge.

    Declaration

    Swift

    public let fileModes: FileModes?
  • The path of the file that contains conflicts.

    Declaration

    Swift

    public let filePath: String?
  • The file sizes of the file in the source, destination, and base of the merge.

    Declaration

    Swift

    public let fileSizes: FileSizes?
  • A boolean value (true or false) indicating whether the file is binary or textual in the source, destination, and base of the merge.

    Declaration

    Swift

    public let isBinaryFile: IsBinaryFile?
  • Whether an add, modify, or delete operation caused the conflict between the source and destination of the merge.

    Declaration

    Swift

    public let mergeOperations: MergeOperations?
  • The number of conflicts, including both hunk conflicts and metadata conflicts.

    Declaration

    Swift

    public let numberOfConflicts: Int?
  • A boolean value (true or false) indicating whether there are conflicts between the branches in the object type of a file, folder, or submodule.

    Declaration

    Swift

    public let objectTypeConflict: Bool?
  • Information about any object type conflicts in a merge operation.

    Declaration

    Swift

    public let objectTypes: ObjectTypes?
  • Undocumented

    Declaration

    Swift

    public init(contentConflict: Bool? = nil, fileModeConflict: Bool? = nil, fileModes: FileModes? = nil, filePath: String? = nil, fileSizes: FileSizes? = nil, isBinaryFile: IsBinaryFile? = nil, mergeOperations: MergeOperations? = nil, numberOfConflicts: Int? = nil, objectTypeConflict: Bool? = nil, objectTypes: ObjectTypes? = nil)