Skip to content

Commit b9b71b7

Browse files
committed
remove 'published' property from PSDataset
1 parent 5e9c717 commit b9b71b7

File tree

3 files changed

+0
-21
lines changed

3 files changed

+0
-21
lines changed

src/ResourceManager/DataFactories/Commands.DataFactories/Microsoft.Azure.Commands.DataFactories.dll-Help.xml

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1775,7 +1775,6 @@
17751775
Location :
17761776
Policy :
17771777
Structure : {}
1778-
Published : False
17791778

17801779
DatasetName : DAUncyclopediaClickEvents
17811780
ResourceGroupName : ADF
@@ -1784,7 +1783,6 @@
17841783
Location :
17851784
Policy :
17861785
Structure : {}
1787-
Published : False
17881786

17891787
DatasetName : DAUncycloAggregatedData
17901788
ResourceGroupName : ADF
@@ -1793,7 +1791,6 @@
17931791
Location :
17941792
Policy :
17951793
Structure : {}
1796-
Published : False
17971794
</dev:code>
17981795
<dev:remarks>
17991796
<maml:para>This command gets information about all datasets in the data factory named UncycloADF. </maml:para>
@@ -1818,7 +1815,6 @@
18181815
Location : Microsoft.DataFactories.AzureBlobLocation
18191816
Policy : Microsoft.DataFactories.Policy
18201817
Structure : {}
1821-
Published : False
18221818
</dev:code>
18231819
<dev:remarks>
18241820
<maml:para>This command gets information about the dataset named DAUncyclopediaClickEvents in the data factory named UncycloADF.</maml:para>
@@ -3816,7 +3812,6 @@
38163812
Location : Microsoft.DataFactories.AzureBlobLocation
38173813
Policy : Microsoft.DataFactories.Policy
38183814
Structure : {}
3819-
Published : False
38203815
</dev:code>
38213816
<dev:remarks>
38223817
<maml:para>This command creates a dataset named DA_UncyclopediaClickEvents in the data factory named UncycloADF. The command bases the dataset on information in the DAUncyclopediaClickEvents.json file. </maml:para>

src/ResourceManager/DataFactories/Commands.DataFactories/Microsoft.Azure.Commands.DataFactories.format.ps1xml

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -72,10 +72,6 @@
7272
<Label>Structure</Label>
7373
<PropertyName>Structure</PropertyName>
7474
</ListItem>
75-
<ListItem>
76-
<Label>Published</Label>
77-
<PropertyName>Published</PropertyName>
78-
</ListItem>
7975
<ListItem>
8076
<Label>Properties</Label>
8177
<PropertyName>Properties</PropertyName>

src/ResourceManager/DataFactories/Commands.DataFactories/Models/PSDataset.cs

Lines changed: 0 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -107,18 +107,6 @@ public IList<DataElement> Structure
107107
}
108108
}
109109

110-
public bool? Published
111-
{
112-
get
113-
{
114-
return this.dataset.Properties.Published;
115-
}
116-
set
117-
{
118-
this.dataset.Properties.Published = value;
119-
}
120-
}
121-
122110
public TableProperties Properties
123111
{
124112
get

0 commit comments

Comments
 (0)