Skip to content

Commit 11e616d

Browse files
author
Hana Sheto
committed
working with test to push to asset file
1 parent 07d1963 commit 11e616d

15 files changed

+648
-33
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
#nullable disable
4+
using System;
5+
using System.Collections.Generic;
6+
7+
namespace Azure.ResourceManager.IotOperations.Models
8+
{
9+
/// <summary> AkriConnectorTemplateDiagnostics properties. </summary>
10+
internal partial class AkriConnectorTemplateDiagnostics
11+
{
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+
Argument.AssertNotNull(logs, nameof(logs));
18+
}
19+
}
20+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
/// <summary>
17+
/// A class representing the IotOperationsBrokerAuthentication data model.
18+
/// Instance broker authentication resource
19+
/// </summary>
20+
public partial class IotOperationsBrokerAuthenticationData : ResourceData
21+
{
22+
/// <summary> Initializes a new instance of <see cref="IotOperationsBrokerAuthenticationData"/>. </summary>
23+
/// <param name="extendedLocation"> Edge location of the resource. </param>
24+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
25+
public IotOperationsBrokerAuthenticationData(IotOperationsExtendedLocation extendedLocation) : base()
26+
{
27+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
28+
ExtendedLocation = extendedLocation;
29+
}
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
/// <summary>
17+
/// A class representing the IotOperationsBrokerAuthorization data model.
18+
/// Instance broker authorizations resource
19+
/// </summary>
20+
public partial class IotOperationsBrokerAuthorizationData : ResourceData
21+
{
22+
/// <summary> Initializes a new instance of <see cref="IotOperationsBrokerAuthorizationData"/>. </summary>
23+
/// <param name="extendedLocation"> Edge location of the resource. </param>
24+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
25+
public IotOperationsBrokerAuthorizationData(IotOperationsExtendedLocation extendedLocation) : base()
26+
{
27+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
28+
ExtendedLocation = extendedLocation;
29+
}
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
/// <summary>
17+
/// A class representing the IotOperationsBroker data model.
18+
/// Instance broker resource
19+
/// </summary>
20+
public partial class IotOperationsBrokerData : ResourceData
21+
{
22+
23+
/// <summary> Initializes a new instance of <see cref="IotOperationsBrokerData"/>. </summary>
24+
/// <param name="extendedLocation"> Edge location of the resource. </param>
25+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
26+
public IotOperationsBrokerData(IotOperationsExtendedLocation extendedLocation) : base()
27+
{
28+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
29+
ExtendedLocation = extendedLocation;
30+
}
31+
}
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
/// <summary>
17+
/// A class representing the IotOperationsBrokerListener data model.
18+
/// Instance broker resource
19+
/// </summary>
20+
public partial class IotOperationsBrokerListenerData : ResourceData
21+
{
22+
/// <summary> Initializes a new instance of <see cref="IotOperationsBrokerListenerData"/>. </summary>
23+
/// <param name="extendedLocation"> Edge location of the resource. </param>
24+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
25+
public IotOperationsBrokerListenerData(IotOperationsExtendedLocation extendedLocation) : base()
26+
{
27+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
28+
ExtendedLocation = extendedLocation;
29+
}
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,32 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
/// <summary>
17+
/// A class representing the IotOperationsDataflow data model.
18+
/// Dataflow resource for instance dataflow profiles
19+
/// </summary>
20+
public partial class IotOperationsDataflowData : ResourceData
21+
{
22+
/// <summary> Initializes a new instance of <see cref="IotOperationsDataflowData"/>. </summary>
23+
/// <param name="extendedLocation"> Edge location of the resource. </param>
24+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
25+
public IotOperationsDataflowData(IotOperationsExtendedLocation extendedLocation) : base()
26+
{
27+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
28+
ExtendedLocation = extendedLocation;
29+
}
30+
}
31+
32+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
public partial class IotOperationsDataflowEndpointData : ResourceData
17+
{
18+
19+
20+
/// <summary> Initializes a new instance of <see cref="IotOperationsDataflowEndpointData"/>. </summary>
21+
/// <param name="extendedLocation"> Edge location of the resource. </param>
22+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
23+
public IotOperationsDataflowEndpointData(IotOperationsExtendedLocation extendedLocation) : base()
24+
{
25+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
26+
ExtendedLocation = extendedLocation;
27+
}
28+
}
29+
30+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
// Copyright (c) Microsoft Corporation. All rights reserved.
2+
// Licensed under the MIT License.
3+
4+
// <auto-generated/>
5+
6+
#nullable disable
7+
8+
using System;
9+
using System.Collections.Generic;
10+
using Azure.Core;
11+
using Azure.ResourceManager.IotOperations.Models;
12+
using Azure.ResourceManager.Models;
13+
14+
namespace Azure.ResourceManager.IotOperations
15+
{
16+
public partial class IotOperationsDataflowProfileData : ResourceData
17+
{
18+
/// <summary> Initializes a new instance of <see cref="IotOperationsDataflowProfileData"/>. </summary>
19+
/// <param name="extendedLocation"> Edge location of the resource. </param>
20+
/// <exception cref="ArgumentNullException"> <paramref name="extendedLocation"/> is null. </exception>
21+
public IotOperationsDataflowProfileData(IotOperationsExtendedLocation extendedLocation) : base()
22+
{
23+
Argument.AssertNotNull(extendedLocation, nameof(extendedLocation));
24+
ExtendedLocation = extendedLocation;
25+
}
26+
}
27+
28+
}

sdk/iotoperations/Azure.ResourceManager.IotOperations/src/Generated/ArmIotOperationsModelFactory.cs

Lines changed: 0 additions & 26 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

sdk/iotoperations/Azure.ResourceManager.IotOperations/src/Generated/Models/AkriConnectorTemplateProperties.cs

Lines changed: 5 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)