Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
36 commits
Select commit Hold shift + click to select a range
d57e4a2
save the auto-generation work
kangsun-ctrl Oct 11, 2020
ab94c6d
add gallery application version update auto-generation
kangsun-ctrl Oct 22, 2020
ecaa68e
nit, add new line
kangsun-ctrl Oct 22, 2020
565c469
update record json
kangsun-ctrl Oct 23, 2020
dfce18d
update record json and add new tests for caps gallery with sharing pr…
kangsun-ctrl Oct 23, 2020
41cff3c
Merge branch 'master' of https://github.com/kangsun-ctrl/azure-sdk-fo…
kangsun-ctrl Oct 26, 2020
548eb77
save work for gallery with sharing profile, caps side test
kangsun-ctrl Dec 3, 2020
0e06c30
update blob as source code
kangsun-ctrl Jan 16, 2021
84c8022
merge
kangsun-ctrl Jan 16, 2021
d88f514
uncheck shared gallery test which can not run right now
kangsun-ctrl Jan 20, 2021
eec14b5
merge
kangsun-ctrl Jan 28, 2021
2ea8208
save
kangsun-ctrl Feb 5, 2021
e50747f
save
kangsun-ctrl Feb 5, 2021
70ad6ef
add shared gallery tests
kangsun-ctrl Feb 8, 2021
051be54
generate files again
kangsun-ctrl Mar 12, 2021
891906e
Revert "generate files again"
kangsun-ctrl Mar 12, 2021
adf5678
update gallery
kangsun-ctrl Mar 12, 2021
c7ff79e
revert unnecessary change
kangsun-ctrl Mar 12, 2021
6237339
resolve merge conflict
kangsun-ctrl Mar 23, 2021
d069151
update examples
kangsun-ctrl Mar 30, 2021
a45f4b5
Merge branch 'cplat-gallery-build' into master
kangsun-ctrl Apr 5, 2021
f7e3bb1
Cplat gallery build (#20407)
grizzlytheodore Apr 14, 2021
5a4a269
Update AssemblyInfo.cs
grizzlytheodore Apr 14, 2021
3ea4d26
update, include all generated files
kangsun-ctrl Apr 15, 2021
aa81408
update
kangsun-ctrl Apr 15, 2021
4feba73
Update Microsoft.Azure.Management.Compute.csproj
grizzlytheodore Apr 15, 2021
6586933
nit
kangsun-ctrl Apr 15, 2021
4bb2445
Update Microsoft.Azure.Management.Compute.csproj
grizzlytheodore Apr 15, 2021
e128572
Update AssemblyInfo.cs
grizzlytheodore Apr 15, 2021
37e507a
Create AssemblyInfo.cs
grizzlytheodore Apr 15, 2021
883acac
commit
grizzlytheodore Apr 15, 2021
b48d52e
Merge branch 'galleryImage-preview' of https://github.com/Azure/azure…
kangsun-ctrl Apr 15, 2021
3160498
update, address comments
kangsun-ctrl Apr 19, 2021
1209e3f
update
kangsun-ctrl Apr 20, 2021
54aa304
update test
kangsun-ctrl May 7, 2021
cc75886
Merge
kangsun-ctrl May 7, 2021
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 @@ -388,7 +388,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests()
List<SharingProfileGroup> groups = new List<SharingProfileGroup> { tenantGroups, subGroups };
SharingUpdate sharingUpdate = new SharingUpdate()
{
OperationType = "Add",
OperationType = SharingUpdateOperationTypes.Add,
Groups = groups
};

Expand All @@ -403,7 +403,7 @@ public void Gallery_WithSharingProfile_CRUD_Tests()
Trace.TraceInformation("Reset this gallery to private before deleting it.");
SharingUpdate resetPrivateUpdate = new SharingUpdate()
{
OperationType = "ResetToPrivate",
OperationType = SharingUpdateOperationTypes.Reset,
Groups = null
};

Expand Down
Loading