本文整理汇总了C#中Microsoft.Azure.Common.Authentication.ProfileClient.RemoveAccount方法的典型用法代码示例。如果您正苦于以下问题:C# ProfileClient.RemoveAccount方法的具体用法?C# ProfileClient.RemoveAccount怎么用?C# ProfileClient.RemoveAccount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Microsoft.Azure.Common.Authentication.ProfileClient
的用法示例。
在下文中一共展示了ProfileClient.RemoveAccount方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: RemoveAzureAccountRemovesInMemoryAccount
public void RemoveAzureAccountRemovesInMemoryAccount()
{
MemoryDataStore dataStore = new MemoryDataStore();
AzureSession.DataStore = dataStore;
ProfileClient client = new ProfileClient(currentProfile);
client.Profile.Subscriptions[azureSubscription1.Id] = azureSubscription1;
client.Profile.Subscriptions[azureSubscription2.Id] = azureSubscription2;
client.Profile.Accounts[azureAccount.Id] = azureAccount;
azureSubscription3withoutUser.Account = "test2";
client.Profile.Accounts["test2"] = new AzureAccount
{
Id = "test2",
Type = AzureAccount.AccountType.User,
Properties = new Dictionary<AzureAccount.Property, string>
{
{AzureAccount.Property.Subscriptions, azureSubscription1.Id.ToString()}
}
};
client.Profile.Subscriptions[azureSubscription1.Id].Account = azureAccount.Id;
client.Profile.Environments[azureEnvironment.Name] = azureEnvironment;
currentProfile.DefaultSubscription = azureSubscription1;
client.RemoveAccount(azureAccount.Id);
Assert.Equal("test2", currentProfile.Context.Account.Id);
Assert.Equal("test2", currentProfile.Context.Subscription.Account);
Assert.Equal(azureSubscription1.Id, currentProfile.Context.Subscription.Id);
client.RemoveAccount("test2");
Assert.Null(currentProfile.Context.Account);
Assert.Null(currentProfile.Context.Subscription);
Assert.Null(currentProfile.Context.Environment);
}
示例2: RemoveAzureAccountRemovesDefaultSubscriptionAndWritesWarning
public void RemoveAzureAccountRemovesDefaultSubscriptionAndWritesWarning()
{
MemoryDataStore dataStore = new MemoryDataStore();
AzureSession.DataStore = dataStore;
ProfileClient client = new ProfileClient(currentProfile);
client.Profile.Subscriptions[azureSubscription1.Id] = azureSubscription1;
client.Profile.Subscriptions[azureSubscription2.Id] = azureSubscription2;
client.Profile.Accounts[azureAccount.Id] = azureAccount;
azureSubscription3withoutUser.Account = "test2";
client.Profile.Accounts["test2"] = new AzureAccount
{
Id = "test2",
Type = AzureAccount.AccountType.User,
Properties = new Dictionary<AzureAccount.Property, string>
{
{AzureAccount.Property.Subscriptions, azureSubscription3withoutUser.Id.ToString()}
}
};
client.Profile.Subscriptions[azureSubscription3withoutUser.Id] = azureSubscription3withoutUser;
client.Profile.Environments[azureEnvironment.Name] = azureEnvironment;
List<string> log = new List<string>();
client.WarningLog = log.Add;
Assert.Equal(3, client.Profile.Subscriptions.Count);
var account = client.RemoveAccount("test");
Assert.Equal(1, client.Profile.Subscriptions.Count);
Assert.Equal("test", account.Id);
Assert.Equal(2, account.GetPropertyAsArray(AzureAccount.Property.Subscriptions).Length);
Assert.Equal(1, log.Count);
Assert.Equal(
"The default subscription is being removed. Use Select-AzureSubscription -Default <subscriptionName> to select a new default subscription.",
log[0]);
}
示例3: RemoveAzureAccountRemovesDefaultAccountFromSubscription
public void RemoveAzureAccountRemovesDefaultAccountFromSubscription()
{
MemoryDataStore dataStore = new MemoryDataStore();
AzureSession.DataStore = dataStore;
currentProfile = new AzureProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile));
ProfileClient client = new ProfileClient(currentProfile);
client.Profile.Subscriptions[azureSubscription1.Id] = azureSubscription1;
client.Profile.Subscriptions[azureSubscription2.Id] = azureSubscription2;
client.Profile.Accounts[azureAccount.Id] = azureAccount;
azureSubscription3withoutUser.Account = "test2";
client.Profile.Accounts["test2"] = new AzureAccount
{
Id = "test2",
Type = AzureAccount.AccountType.User,
Properties = new Dictionary<AzureAccount.Property, string>
{
{AzureAccount.Property.Subscriptions, azureSubscription1.Id.ToString()}
}
};
client.Profile.Subscriptions[azureSubscription1.Id].Account = azureAccount.Id;
client.Profile.Environments[azureEnvironment.Name] = azureEnvironment;
var account = client.RemoveAccount(azureAccount.Id);
Assert.Equal("test2", client.Profile.Subscriptions[azureSubscription1.Id].Account);
}
示例4: RemoveAzureAccountRemovesSubscriptions
public void RemoveAzureAccountRemovesSubscriptions()
{
MemoryDataStore dataStore = new MemoryDataStore();
AzureSession.DataStore = dataStore;
currentProfile = new AzureProfile(Path.Combine(AzureSession.ProfileDirectory, AzureSession.ProfileFile));
ProfileClient client = new ProfileClient(currentProfile);
client.Profile.Subscriptions[azureSubscription1.Id] = azureSubscription1;
client.Profile.Subscriptions[azureSubscription2.Id] = azureSubscription2;
client.Profile.Accounts[azureAccount.Id] = azureAccount;
azureSubscription3withoutUser.Account = "test2";
client.Profile.Accounts["test2"] = new AzureAccount
{
Id = "test2",
Type = AzureAccount.AccountType.User,
Properties = new Dictionary<AzureAccount.Property, string>
{
{AzureAccount.Property.Subscriptions, azureSubscription3withoutUser.Id.ToString()}
}
};
client.Profile.Subscriptions[azureSubscription3withoutUser.Id] = azureSubscription3withoutUser;
client.Profile.Environments[azureEnvironment.Name] = azureEnvironment;
List<string> log = new List<string>();
client.WarningLog = log.Add;
Assert.Equal(3, client.Profile.Subscriptions.Count);
client.RemoveAccount("test2");
Assert.Equal(2, client.Profile.Subscriptions.Count);
Assert.Equal(0, log.Count);
}