File tree Expand file tree Collapse file tree 2 files changed +10
-0
lines changed
src/Resources/ResourceManager Expand file tree Collapse file tree 2 files changed +10
-0
lines changed Original file line number Diff line number Diff line change 437
437
<Label >ResourceId</Label >
438
438
<PropertyName >Id</PropertyName >
439
439
</ListItem >
440
+ <ListItem >
441
+ <Label >Tags</Label >
442
+ <PropertyName >TagsTable</PropertyName >
443
+ </ListItem >
440
444
</ListItems >
441
445
</ListEntry >
442
446
</ListEntries >
Original file line number Diff line number Diff line change 16
16
using Microsoft . Azure . Commands . ResourceManager . Cmdlets . Entities . Resources ;
17
17
using Microsoft . Azure . Commands . ResourceManager . Cmdlets . Extensions ;
18
18
using Microsoft . Azure . Commands . ResourceManager . Cmdlets . SdkExtensions ;
19
+ using Microsoft . Azure . Commands . ResourceManager . Common . Tags ;
19
20
using Microsoft . Azure . Management . ResourceManager . Models ;
20
21
using Newtonsoft . Json . Linq ;
21
22
using System ;
@@ -63,6 +64,11 @@ public class PSResource
63
64
64
65
public IDictionary < string , string > Tags { get ; set ; }
65
66
67
+ public string TagsTable
68
+ {
69
+ get { return ResourcesExtensions . ConstructTagsTable ( TagsConversionHelper . CreateTagHashtable ( Tags ) ) ; }
70
+ }
71
+
66
72
public string SubscriptionId { get ; set ; }
67
73
68
74
public DateTime ? CreatedTime { get ; set ; }
You can’t perform that action at this time.
0 commit comments