Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -7299,8 +7299,8 @@ Octopus.Client.Model.TenantVariables
{
class CommonVariableScope
{
.ctor(String[])
String[] EnvironmentIds { get; set; }
.ctor(Octopus.Client.Model.ReferenceCollection)
Octopus.Client.Model.ReferenceCollection EnvironmentIds { get; set; }
}
class GetCommonVariablesByTenantIdRequest
{
Expand Down Expand Up @@ -7354,8 +7354,8 @@ Octopus.Client.Model.TenantVariables
}
class ProjectVariableScope
{
.ctor(String[])
String[] EnvironmentIds { get; set; }
.ctor(Octopus.Client.Model.ReferenceCollection)
Octopus.Client.Model.ReferenceCollection EnvironmentIds { get; set; }
}
class TenantCommonVariable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7323,8 +7323,8 @@ Octopus.Client.Model.TenantVariables
{
class CommonVariableScope
{
.ctor(String[])
String[] EnvironmentIds { get; set; }
.ctor(Octopus.Client.Model.ReferenceCollection)
Octopus.Client.Model.ReferenceCollection EnvironmentIds { get; set; }
}
class GetCommonVariablesByTenantIdRequest
{
Expand Down Expand Up @@ -7378,8 +7378,8 @@ Octopus.Client.Model.TenantVariables
}
class ProjectVariableScope
{
.ctor(String[])
String[] EnvironmentIds { get; set; }
.ctor(Octopus.Client.Model.ReferenceCollection)
Octopus.Client.Model.ReferenceCollection EnvironmentIds { get; set; }
}
class TenantCommonVariable
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ public class TenantCommonVariable(string libraryVariableSetId, string templateId
public CommonVariableScope Scope { get; set; } = scope;
}

public class CommonVariableScope(string[] environmentIds)
public class CommonVariableScope(ReferenceCollection environmentIds)
{
public string[] EnvironmentIds { get; set; } = environmentIds;
public ReferenceCollection EnvironmentIds { get; set; } = environmentIds;
}

public class ModifyCommonVariablesByTenantIdResponse(string tenantId, TenantCommonVariable[] commonVariables)
{
public string TenantId { get; set; } = tenantId;

public TenantCommonVariable[] CommonVariables { get; set; } = commonVariables;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,9 @@ public class TenantProjectVariable(
public ProjectVariableScope Scope { get; set; } = scope;
}

public class ProjectVariableScope(string[] environmentIds)
public class ProjectVariableScope(ReferenceCollection environmentIds)
{
public string[] EnvironmentIds { get; set; } = environmentIds;
public ReferenceCollection EnvironmentIds { get; set; } = environmentIds;
}

public class ModifyProjectVariablesByTenantIdResponse(string tenantId, TenantProjectVariable[] projectVariables)
Expand Down
Loading