Show / Hide Table of Contents

Class DevopsCodeRepositoryFilterAttributes

Attributes to filter DevOps code repository events.

Inheritance
object
DevopsCodeRepositoryFilterAttributes
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DevopsService.Models
Assembly: OCI.DotNetSDK.Devops.dll
Syntax
public class DevopsCodeRepositoryFilterAttributes

Properties

BaseRef

Declaration
[JsonProperty(PropertyName = "baseRef")]
public string BaseRef { get; set; }
Property Value
Type Description
string

The target branch for pull requests; not applicable for push requests.

FileFilter

Declaration
[JsonProperty(PropertyName = "fileFilter")]
public FileFilter FileFilter { get; set; }
Property Value
Type Description
FileFilter

HeadRef

Declaration
[JsonProperty(PropertyName = "headRef")]
public string HeadRef { get; set; }
Property Value
Type Description
string

Branch for push event; source branch for pull requests

In this article
Back to top