コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="CompatibilityDto" /> class.
 /// </summary>
 /// <param name="compatible">compatible.</param>
 /// <param name="agent">agent.</param>
 /// <param name="buildType">buildType.</param>
 /// <param name="unmetRequirements">unmetRequirements.</param>
 public CompatibilityDto(bool?compatible = default(bool?), AgentDto agent = default(AgentDto), BuildTypeDto buildType = default(BuildTypeDto), RequirementsDto unmetRequirements = default(RequirementsDto))
 {
     this.Compatible        = compatible;
     this.Agent             = agent;
     this.BuildType         = buildType;
     this.UnmetRequirements = unmetRequirements;
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="SnapshotDependencyDto" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="name">name.</param>
 /// <param name="type">type.</param>
 /// <param name="disabled">disabled.</param>
 /// <param name="inherited">inherited.</param>
 /// <param name="href">href.</param>
 /// <param name="properties">properties.</param>
 /// <param name="sourceBuildType">sourceBuildType.</param>
 public SnapshotDependencyDto(string id = default(string), string name = default(string), string type = default(string), bool?disabled = default(bool?), bool?inherited = default(bool?), string href = default(string), PropertiesDto properties = default(PropertiesDto), BuildTypeDto sourceBuildType = default(BuildTypeDto))
 {
     this.Id              = id;
     this.Name            = name;
     this.Type            = type;
     this.Disabled        = disabled;
     this.Inherited       = inherited;
     this.Href            = href;
     this.Properties      = properties;
     this.SourceBuildType = sourceBuildType;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="NewBuildTypeDescriptionDto" /> class.
 /// </summary>
 /// <param name="copyAllAssociatedSettings">copyAllAssociatedSettings.</param>
 /// <param name="projectsIdsMap">projectsIdsMap.</param>
 /// <param name="buildTypesIdsMap">buildTypesIdsMap.</param>
 /// <param name="vcsRootsIdsMap">vcsRootsIdsMap.</param>
 /// <param name="name">name.</param>
 /// <param name="id">id.</param>
 /// <param name="sourceBuildTypeLocator">sourceBuildTypeLocator.</param>
 /// <param name="sourceBuildType">sourceBuildType.</param>
 public NewBuildTypeDescriptionDto(bool?copyAllAssociatedSettings = default(bool?), PropertiesDto projectsIdsMap = default(PropertiesDto), PropertiesDto buildTypesIdsMap = default(PropertiesDto), PropertiesDto vcsRootsIdsMap = default(PropertiesDto), string name = default(string), string id = default(string), string sourceBuildTypeLocator = default(string), BuildTypeDto sourceBuildType = default(BuildTypeDto))
 {
     this.CopyAllAssociatedSettings = copyAllAssociatedSettings;
     this.ProjectsIdsMap            = projectsIdsMap;
     this.BuildTypesIdsMap          = buildTypesIdsMap;
     this.VcsRootsIdsMap            = vcsRootsIdsMap;
     this.Name = name;
     this.Id   = id;
     this.SourceBuildTypeLocator = sourceBuildTypeLocator;
     this.SourceBuildType        = sourceBuildType;
 }
コード例 #4
0
 /// <summary>
 /// Initializes a new instance of the <see cref="TriggeredByDto" /> class.
 /// </summary>
 /// <param name="type">type.</param>
 /// <param name="details">details.</param>
 /// <param name="date">date.</param>
 /// <param name="displayText">displayText.</param>
 /// <param name="rawValue">rawValue.</param>
 /// <param name="user">user.</param>
 /// <param name="build">build.</param>
 /// <param name="buildType">buildType.</param>
 /// <param name="properties">properties.</param>
 public TriggeredByDto(string type = default(string), string details = default(string), string date = default(string), string displayText = default(string), string rawValue = default(string), UserDto user = default(UserDto), BuildDto build = default(BuildDto), BuildTypeDto buildType = default(BuildTypeDto), PropertiesDto properties = default(PropertiesDto))
 {
     this.Type        = type;
     this.Details     = details;
     this.Date        = date;
     this.DisplayText = displayText;
     this.RawValue    = rawValue;
     this.User        = user;
     this.Build       = build;
     this.BuildType   = buildType;
     this.Properties  = properties;
 }
コード例 #5
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProjectDto" /> class.
 /// </summary>
 /// <param name="id">id.</param>
 /// <param name="internalId">internalId.</param>
 /// <param name="uuid">uuid.</param>
 /// <param name="name">name.</param>
 /// <param name="parentProjectId">parentProjectId.</param>
 /// <param name="parentProjectInternalId">parentProjectInternalId.</param>
 /// <param name="parentProjectName">parentProjectName.</param>
 /// <param name="archived">archived.</param>
 /// <param name="description">description.</param>
 /// <param name="href">href.</param>
 /// <param name="webUrl">webUrl.</param>
 /// <param name="links">links.</param>
 /// <param name="parentProject">parentProject.</param>
 /// <param name="readOnlyUI">readOnlyUI.</param>
 /// <param name="defaultTemplate">defaultTemplate.</param>
 /// <param name="buildTypes">buildTypes.</param>
 /// <param name="templates">templates.</param>
 /// <param name="parameters">parameters.</param>
 /// <param name="vcsRoots">vcsRoots.</param>
 /// <param name="projectFeatures">projectFeatures.</param>
 /// <param name="projects">projects.</param>
 /// <param name="cloudProfiles">cloudProfiles.</param>
 /// <param name="locator">locator.</param>
 public ProjectDto(string id = default(string), string internalId = default(string), string uuid = default(string), string name = default(string), string parentProjectId = default(string), string parentProjectInternalId = default(string), string parentProjectName = default(string), bool?archived = default(bool?), string description = default(string), string href = default(string), string webUrl = default(string), LinksDto links = default(LinksDto), ProjectDto parentProject = default(ProjectDto), StateFieldDto readOnlyUI = default(StateFieldDto), BuildTypeDto defaultTemplate = default(BuildTypeDto), BuildTypesDto buildTypes = default(BuildTypesDto), BuildTypesDto templates = default(BuildTypesDto), PropertiesDto parameters = default(PropertiesDto), VcsRootsDto vcsRoots = default(VcsRootsDto), ProjectFeaturesDto projectFeatures = default(ProjectFeaturesDto), ProjectsDto projects = default(ProjectsDto), CloudProfilesDto cloudProfiles = default(CloudProfilesDto), string locator = default(string))
 {
     this.Id                      = id;
     this.InternalId              = internalId;
     this.Uuid                    = uuid;
     this.Name                    = name;
     this.ParentProjectId         = parentProjectId;
     this.ParentProjectInternalId = parentProjectInternalId;
     this.ParentProjectName       = parentProjectName;
     this.Archived                = archived;
     this.Description             = description;
     this.Href                    = href;
     this.WebUrl                  = webUrl;
     this.Links                   = links;
     this.ParentProject           = parentProject;
     this.ReadOnlyUI              = readOnlyUI;
     this.DefaultTemplate         = defaultTemplate;
     this.BuildTypes              = buildTypes;
     this.Templates               = templates;
     this.Parameters              = parameters;
     this.VcsRoots                = vcsRoots;
     this.ProjectFeatures         = projectFeatures;
     this.Projects                = projects;
     this.CloudProfiles           = cloudProfiles;
     this.Locator                 = locator;
 }
コード例 #6
0
 /// <summary>
 /// Initializes a new instance of the <see cref="ProblemScopeDto" /> class.
 /// </summary>
 /// <param name="project">project.</param>
 /// <param name="buildTypes">buildTypes.</param>
 /// <param name="buildType">buildType.</param>
 public ProblemScopeDto(ProjectDto project = default(ProjectDto), BuildTypesDto buildTypes = default(BuildTypesDto), BuildTypeDto buildType = default(BuildTypeDto))
 {
     this.Project    = project;
     this.BuildTypes = buildTypes;
     this.BuildType  = buildType;
 }
コード例 #7
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RelatedEntityDto" /> class.
 /// </summary>
 /// <param name="type">type.</param>
 /// <param name="unknown">unknown.</param>
 /// <param name="internalId">internalId.</param>
 /// <param name="text">text.</param>
 /// <param name="build">build.</param>
 /// <param name="buildType">buildType.</param>
 /// <param name="project">project.</param>
 /// <param name="user">user.</param>
 /// <param name="group">group.</param>
 /// <param name="test">test.</param>
 /// <param name="problem">problem.</param>
 /// <param name="agent">agent.</param>
 /// <param name="vcsRoot">vcsRoot.</param>
 /// <param name="change">change.</param>
 /// <param name="agentPool">agentPool.</param>
 public RelatedEntityDto(string type = default(string), bool?unknown = default(bool?), string internalId = default(string), string text = default(string), BuildDto build = default(BuildDto), BuildTypeDto buildType = default(BuildTypeDto), ProjectDto project = default(ProjectDto), UserDto user = default(UserDto), GroupDto group = default(GroupDto), TestDto test = default(TestDto), ProblemDto problem = default(ProblemDto), AgentDto agent = default(AgentDto), VcsRootDto vcsRoot = default(VcsRootDto), ChangeDto change = default(ChangeDto), AgentPoolDto agentPool = default(AgentPoolDto))
 {
     this.Type       = type;
     this.Unknown    = unknown;
     this.InternalId = internalId;
     this.Text       = text;
     this.Build      = build;
     this.BuildType  = buildType;
     this.Project    = project;
     this.User       = user;
     this.Group      = group;
     this.Test       = test;
     this.Problem    = problem;
     this.Agent      = agent;
     this.VcsRoot    = vcsRoot;
     this.Change     = change;
     this.AgentPool  = agentPool;
 }