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 @@ -106,6 +106,7 @@ public void SavingProfileWorks()
""Name"": ""Contoso Test Subscription"",
""Environment"": ""testCloud"",
""Account"": ""[email protected]"",
""State"": ""Enabled"",
""Properties"": {
""Tenants"": ""3c0ff8a7-e8bb-40e8-ae66-271343379af6""
}
Expand Down Expand Up @@ -146,6 +147,7 @@ public void SavingProfileWorks()
Environment = environment.Name,
Id = new Guid(),
Name = "Contoso Test Subscription",
State = "Enabled",
Properties = { { AzureSubscription.Property.Tenants, tenantId.ToString() } }
};
var tenant = new AzureTenant
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ public partial class AzureSubscription

public string Account { get; set; }

public string State { get; set; }

public Dictionary<Property, string> Properties { get; set; }

public enum Property
Expand Down