-
Notifications
You must be signed in to change notification settings - Fork 4.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
64 changed files
with
2,434 additions
and
1,892 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 16 additions & 0 deletions
16
sdk/iot/Azure.Iot.Hub.Service/src/Customized/Models/ExportJobRequestOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Iot.Hub.Service.Models | ||
{ | ||
/// <summary> | ||
/// Optional properties for export jobs. | ||
/// </summary> | ||
public class ExportJobRequestOptions : JobRequestOptions | ||
{ | ||
/// <summary> | ||
/// The name of the blob that contains the export devices registry information for the IoT Hub. If not provided by the user, it will default to "devices.txt". | ||
/// </summary> | ||
public string OutputBlobName { get; set; } | ||
} | ||
} |
21 changes: 21 additions & 0 deletions
21
sdk/iot/Azure.Iot.Hub.Service/src/Customized/Models/ImportJobRequestOptions.cs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. | ||
|
||
namespace Azure.Iot.Hub.Service.Models | ||
{ | ||
/// <summary> | ||
/// Optional properties for import jobs. | ||
/// </summary> | ||
public class ImportJobRequestOptions : JobRequestOptions | ||
{ | ||
/// <summary> | ||
/// The name of the blob that will contain the status of importing devices. If not provided by the user, it will default to "devices.txt". | ||
/// </summary> | ||
public string InputBlobName { get; set; } | ||
|
||
/// <summary> | ||
/// The name of the blob that contains the export devices registry information for the IoT Hub. If not provided by the user, it will default to "devices.txt". | ||
/// </summary> | ||
public string OutputBlobName { get; set; } | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
45 changes: 1 addition & 44 deletions
45
sdk/iot/Azure.Iot.Hub.Service/src/Generated/JobsRestClient.cs
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.