File tree Expand file tree Collapse file tree 6 files changed +7
-29
lines changed
src/EventHub/EventHub/Models Expand file tree Collapse file tree 6 files changed +7
-29
lines changed Original file line number Diff line number Diff line change @@ -36,19 +36,7 @@ public PSCaptureDescriptionAttributes()
36
36
/// <summary>
37
37
/// Initializes a new instance of the CaptureDescription class.
38
38
/// </summary>
39
- /// <param name="enabled">A value that indicates whether capture
40
- /// description is enabled. </param>
41
- /// <param name="encoding">Enumerates the possible values for the
42
- /// encoding format of capture description. Possible values include:
43
- /// 'Avro', 'AvroDeflate'</param>
44
- /// <param name="intervalInSeconds">The time window allows you to set
45
- /// the frequency with which the capture to Azure Blobs will happen,
46
- /// value should between 60 to 900 seconds</param>
47
- /// <param name="sizeLimitInBytes">The size window defines the amount
48
- /// of data built up in your Event Hub before an capture operation,
49
- /// value should be between 10485760 to 524288000 bytes</param>
50
- /// <param name="destination">Properties of Destination where capture
51
- /// will be stored. (Storage Account, Blob Names)</param>
39
+ /// <param name="captureDescResource"></param>
52
40
public PSCaptureDescriptionAttributes ( Microsoft . Azure . Management . EventHub . Models . CaptureDescription captureDescResource )
53
41
{
54
42
Enabled = captureDescResource . Enabled ;
Original file line number Diff line number Diff line change @@ -43,9 +43,7 @@ public static IList<PSNWRuleSetIpRulesAttributes> PSNWRuleSetIpRulesAttributesCo
43
43
/// <summary>
44
44
/// Initializes a new instance of the NWRuleSetIpRules class.
45
45
/// </summary>
46
- /// <param name="ipMask">IP Mask</param>
47
- /// <param name="action">The IP Filter Action. Possible values include:
48
- /// 'Allow'</param>
46
+ /// <param name="nwiprules"></param>
49
47
public PSNWRuleSetIpRulesAttributes ( NWRuleSetIpRules nwiprules )
50
48
{
51
49
IpMask = nwiprules . IpMask ;
Original file line number Diff line number Diff line change @@ -32,9 +32,7 @@ public PSNWRuleSetVirtualNetworkRulesAttributes()
32
32
/// Initializes a new instance of the NWRuleSetVirtualNetworkRules
33
33
/// class.
34
34
/// </summary>
35
- /// <param name="subnet">Subnet properties</param>
36
- /// <param name="ignoreMissingVnetServiceEndpoint">Value that indicates
37
- /// whether to ignore missing VNet Service Endpoint</param>
35
+ /// <param name="nwVirtualNetworkRules"></param>
38
36
public static IList < PSNWRuleSetVirtualNetworkRulesAttributes > PSNWRuleSetVirtualNetworkRulesAttributesCollection ( IList < NWRuleSetVirtualNetworkRules > nwVirtualNetworkRules )
39
37
{
40
38
List < PSNWRuleSetVirtualNetworkRulesAttributes > VNetRules = new List < PSNWRuleSetVirtualNetworkRulesAttributes > ( ) ;
Original file line number Diff line number Diff line change @@ -35,14 +35,8 @@ public PSNetworkRuleSetAttributes()
35
35
/// <summary>
36
36
/// Initializes a new instance of the NetworkRuleSet class.
37
37
/// </summary>
38
- /// <param name="id">Resource Id</param>
39
- /// <param name="name">Resource name</param>
40
- /// <param name="type">Resource type</param>
41
- /// <param name="defaultAction">Default Action for Network Rule Set.
42
- /// Possible values include: 'Allow', 'Deny'</param>
43
- /// <param name="VirtualNetworkRules">List VirtualNetwork Rules</param>
44
- /// <param name="ipRules">List of IpRules</param>
45
- public PSNetworkRuleSetAttributes ( NetworkRuleSet networkRuleSet )
38
+ /// <param name="networkRuleSet"></param>
39
+ public PSNetworkRuleSetAttributes ( NetworkRuleSet networkRuleSet )
46
40
{
47
41
DefaultAction = networkRuleSet . DefaultAction ;
48
42
TrustedServiceAccessEnabled = networkRuleSet . TrustedServiceAccessEnabled ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public PSSharedAccessSignatureAttributes()
30
30
/// <summary>
31
31
/// Initializes a new instance of the SharedAccessSignature class.
32
32
/// </summary>
33
- /// <param name="SharedAccessSignature ">SharedAccess Signature</param>
33
+ /// <param name="sharedAccessSignature ">SharedAccess Signature</param>
34
34
public PSSharedAccessSignatureAttributes ( string sharedAccessSignature )
35
35
{
36
36
SharedAccessSignature = sharedAccessSignature . Replace ( "SharedAccessSignature" , "" ) ;
Original file line number Diff line number Diff line change @@ -30,7 +30,7 @@ public PSSubnetAttributes()
30
30
/// <summary>
31
31
/// Initializes a new instance of the Subnet class.
32
32
/// </summary>
33
- /// <param name="id">Resource ID of Virtual Network Subnet </param>
33
+ /// <param name="subnet"> </param>
34
34
public PSSubnetAttributes ( Subnet subnet )
35
35
{
36
36
Id = subnet . Id ;
You can’t perform that action at this time.
0 commit comments