Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Rename tenant variable property #907

Draft
wants to merge 5 commits into
base: master
Choose a base branch
from
Draft
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 @@ -7459,8 +7459,8 @@ Octopus.Client.Model.TenantVariables
class GetCommonVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantCommonVariable[])
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] CommonVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] Variables { get; set; }
}
class GetProjectVariablesByTenantIdRequest
{
Expand All @@ -7471,8 +7471,8 @@ Octopus.Client.Model.TenantVariables
class GetProjectVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantProjectVariable[])
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] ProjectVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] Variables { get; set; }
}
class ModifyCommonVariablesByTenantIdCommand
{
Expand All @@ -7484,8 +7484,8 @@ Octopus.Client.Model.TenantVariables
class ModifyCommonVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantCommonVariable[])
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] CommonVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] Variables { get; set; }
}
class ModifyProjectVariablesByTenantIdCommand
{
Expand All @@ -7497,8 +7497,8 @@ Octopus.Client.Model.TenantVariables
class ModifyProjectVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantProjectVariable[])
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] ProjectVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] Variables { get; set; }
}
class ProjectVariableScope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7483,8 +7483,8 @@ Octopus.Client.Model.TenantVariables
class GetCommonVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantCommonVariable[])
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] CommonVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] Variables { get; set; }
}
class GetProjectVariablesByTenantIdRequest
{
Expand All @@ -7495,8 +7495,8 @@ Octopus.Client.Model.TenantVariables
class GetProjectVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantProjectVariable[])
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] ProjectVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] Variables { get; set; }
}
class ModifyCommonVariablesByTenantIdCommand
{
Expand All @@ -7508,8 +7508,8 @@ Octopus.Client.Model.TenantVariables
class ModifyCommonVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantCommonVariable[])
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] CommonVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantCommonVariable[] Variables { get; set; }
}
class ModifyProjectVariablesByTenantIdCommand
{
Expand All @@ -7521,8 +7521,8 @@ Octopus.Client.Model.TenantVariables
class ModifyProjectVariablesByTenantIdResponse
{
.ctor(String, Octopus.Client.Model.TenantVariables.TenantProjectVariable[])
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] ProjectVariables { get; set; }
String TenantId { get; set; }
Octopus.Client.Model.TenantVariables.TenantProjectVariable[] Variables { get; set; }
}
class ProjectVariableScope
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ public class GetCommonVariablesByTenantIdRequest(string tenantId, string spaceId
public string SpaceId { get; set; } = spaceId;
}

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

public TenantCommonVariable[] CommonVariables { get; set; } = commonVariables;
public TenantCommonVariable[] Variables { get; set; } = variables;
}
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@ public class GetProjectVariablesByTenantIdRequest(string tenantId, string spaceI
public string SpaceId { get; set; } = spaceId;
}

public class GetProjectVariablesByTenantIdResponse(string tenantId, TenantProjectVariable[] projectVariables)
public class GetProjectVariablesByTenantIdResponse(string tenantId, TenantProjectVariable[] variables)
{
public string TenantId { get; set; } = tenantId;

public TenantProjectVariable[] ProjectVariables { get; set; } = projectVariables;
public TenantProjectVariable[] Variables { get; set; } = variables;
}
Original file line number Diff line number Diff line change
Expand Up @@ -28,9 +28,9 @@ public class CommonVariableScope(ReferenceCollection environmentIds)
public ReferenceCollection EnvironmentIds { get; set; } = environmentIds;
}

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

public TenantCommonVariable[] CommonVariables { get; set; } = commonVariables;
public TenantCommonVariable[] Variables { get; set; } = variables;
}
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ public class ProjectVariableScope(ReferenceCollection environmentIds)
public ReferenceCollection EnvironmentIds { get; set; } = environmentIds;
}

public class ModifyProjectVariablesByTenantIdResponse(string tenantId, TenantProjectVariable[] projectVariables)
public class ModifyProjectVariablesByTenantIdResponse(string tenantId, TenantProjectVariable[] variables)
{
public string TenantId { get; set; } = tenantId;

public TenantProjectVariable[] ProjectVariables { get; set; } = projectVariables;
public TenantProjectVariable[] Variables { get; set; } = variables;
}