Skip to content

Commit 03a513d

Browse files
HanagmbCopilot
andauthored
Update sdk/iotoperations/Azure.ResourceManager.IotOperations/src/Customization/Models/AkriConnectorTemplateDiagnostics.cs
Co-authored-by: Copilot <[email protected]>
1 parent 0383104 commit 03a513d

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

sdk/iotoperations/Azure.ResourceManager.IotOperations/src/Customization/Models/AkriConnectorTemplateDiagnostics.cs

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,12 +9,20 @@ namespace Azure.ResourceManager.IotOperations.Models
99
/// <summary> AkriConnectorTemplateDiagnostics properties. </summary>
1010
internal partial class AkriConnectorTemplateDiagnostics
1111
{
12+
/// <summary> Initializes a new instance of <see cref="AkriConnectorTemplateDiagnostics"/>. </summary>
13+
/// <param name="logs"> The log settings for the Connector template. </param>
14+
/// <exception cref="ArgumentNullException"> <paramref name="logs"/> is null. </exception>
15+
public AkriConnectorTemplateDiagnostics(string logs)
16+
{
17+
{
18+
private readonly string _logs;
1219
/// <summary> Initializes a new instance of <see cref="AkriConnectorTemplateDiagnostics"/>. </summary>
1320
/// <param name="logs"> The log settings for the Connector template. </param>
1421
/// <exception cref="ArgumentNullException"> <paramref name="logs"/> is null. </exception>
1522
public AkriConnectorTemplateDiagnostics(string logs)
1623
{
1724
Argument.AssertNotNull(logs, nameof(logs));
25+
_logs = logs;
1826
}
1927
}
2028
}

0 commit comments

Comments
 (0)