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

Add .NET SDK for 2023-09-01-preview #39153

Merged
merged 29 commits into from
Oct 31, 2023
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
aaf4328
update 2023-09-01 autorest
sahilpwr Oct 9, 2023
0949dfb
mitigate configuration
live1206 Oct 10, 2023
687b35c
generating API
sahilpwr Oct 10, 2023
e312788
Revert "generating API"
sahilpwr Oct 10, 2023
abd5794
generating .NET SDK
sahilpwr Oct 10, 2023
4ddae00
mitigate breaking changes
live1206 Oct 12, 2023
a5cc7cb
export API
live1206 Oct 13, 2023
6b97fa2
Merge branch 'main' into pr/sahilpwr/39153
live1206 Oct 13, 2023
ffd70f3
update
live1206 Oct 13, 2023
91345f0
adding unit tests
sahilpwr Oct 13, 2023
4248cde
Merge branch 'HelpRp20230901' of https://github.com/sahilpwr/azure-sd…
sahilpwr Oct 13, 2023
77d4bd8
reverting tag
sahilpwr Oct 13, 2023
7dc3b71
revert change
sahilpwr Oct 16, 2023
320a553
fix error
sahilpwr Oct 16, 2023
bae19dd
fix discoverytests
sahilpwr Oct 19, 2023
2d41b6b
address comments
sahilpwr Oct 23, 2023
1453a21
Revert "address comments"
sahilpwr Oct 23, 2023
8a28e85
update tag in assets
sahilpwr Oct 24, 2023
27cc029
Revert "Revert "address comments""
sahilpwr Oct 24, 2023
3d1db27
rename models
sahilpwr Oct 24, 2023
9afe3f6
fix GT tests
sahilpwr Oct 25, 2023
b7bfa0e
remove recording mode
sahilpwr Oct 25, 2023
cb7546b
adding test instructions
sahilpwr Oct 25, 2023
9faca03
update Name,Type and Step
sahilpwr Oct 25, 2023
1a30196
updating changelog
sahilpwr Oct 31, 2023
d480049
fix release date
sahilpwr Oct 31, 2023
01c79bb
fix build errors
sahilpwr Oct 31, 2023
b7131fc
update version
sahilpwr Oct 31, 2023
46570ab
fix changelog
sahilpwr Oct 31, 2023
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
2 changes: 1 addition & 1 deletion sdk/selfhelp/Azure.ResourceManager.SelfHelp/assets.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,5 +2,5 @@
"AssetsRepo": "Azure/azure-sdk-assets",
"AssetsRepoPrefixPath": "net",
"TagPrefix": "net/selfhelp/Azure.ResourceManager.SelfHelp",
"Tag": "net/selfhelp/Azure.ResourceManager.SelfHelp_ac841b5314"
"Tag": "net/selfhelp/Azure.ResourceManager.SelfHelp_45eb17d60c"
}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,10 @@ namespace Azure.ResourceManager.SelfHelp.Tests

public class TroubleshooterTests : SelfHelpManagementTestBase
{
public TroubleshooterTests(bool isAsync) : base(isAsync)//, RecordedTestMode.Record)
private bool isAsync = true;
public TroubleshooterTests(bool isAsync) : base(isAsync, RecordedTestMode.Record)
archerzz marked this conversation as resolved.
Show resolved Hide resolved
{
this.isAsync = isAsync;
}

[Test]
Expand All @@ -23,7 +25,17 @@ public async Task CreateAndGetTroubleshooterTest()
var subId = "6bded6d5-a6af-43e1-96d3-bf71f6f5f8ba";
var resourceGroupName = "DiagnosticsRp-Gateway-Public-Dev-Global";
var resourceName = "DiagRpGwPubDev";
var troubleshooterResourceName = Guid.NewGuid().ToString();
var troubleshooterResourceName = string.Empty;

if (isAsync)
{
troubleshooterResourceName = "0c16f71c-e791-4da2-80d7-f93ddfa2c239";
}
else
{
troubleshooterResourceName = "cc5feaab-3b50-40b9-aaa4-754b6b5e3898";
}

ResourceIdentifier scope = new ResourceIdentifier($"/subscriptions/{subId}/resourceGroups/{resourceGroupName}/providers/Microsoft.KeyVault/vaults/{resourceName}");
TroubleshooterResourceData resourceData = CreateTroubleshooterResourceData(scope);

Expand Down