forked from Azure/azure-powershell
-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[IotCentral] Az.IotCentral completed the Track 1 to SDK (Azure#26151)
* update iotcentral sdk * create GeneratedSdkIssues.csv * Update changelog
- Loading branch information
1 parent
7c9a9fb
commit 33f0648
Showing
37 changed files
with
5,807 additions
and
49 deletions.
There are no files selected for viewing
2,409 changes: 2,409 additions & 0 deletions
2,409
src/IotCentral/IotCentral.Management.Sdk/Generated/AppsOperations.cs
Large diffs are not rendered by default.
Oops, something went wrong.
607 changes: 607 additions & 0 deletions
607
src/IotCentral/IotCentral.Management.Sdk/Generated/AppsOperationsExtensions.cs
Large diffs are not rendered by default.
Oops, something went wrong.
400 changes: 400 additions & 0 deletions
400
src/IotCentral/IotCentral.Management.Sdk/Generated/IAppsOperations.cs
Large diffs are not rendered by default.
Oops, something went wrong.
84 changes: 84 additions & 0 deletions
84
src/IotCentral/IotCentral.Management.Sdk/Generated/IIotCentralClient.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,84 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.IotCentral | ||
{ | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
using Newtonsoft.Json; | ||
|
||
/// <summary> | ||
/// Use this API to manage IoT Central Applications in your Azure | ||
/// subscription. | ||
/// </summary> | ||
public partial interface IIotCentralClient : System.IDisposable | ||
{ | ||
/// <summary> | ||
/// The base URI of the service. | ||
/// </summary> | ||
System.Uri BaseUri { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets json serialization settings. | ||
/// </summary> | ||
JsonSerializerSettings SerializationSettings { get; } | ||
|
||
/// <summary> | ||
/// Gets or sets json deserialization settings. | ||
/// </summary> | ||
JsonSerializerSettings DeserializationSettings { get; } | ||
|
||
/// <summary> | ||
/// Credentials needed for the client to connect to Azure. | ||
/// </summary> | ||
ServiceClientCredentials Credentials { get; } | ||
|
||
/// <summary> | ||
/// The subscription identifier. | ||
/// </summary> | ||
string SubscriptionId { get; set; } | ||
|
||
/// <summary> | ||
/// The version of the API. | ||
/// </summary> | ||
string ApiVersion { get; } | ||
|
||
/// <summary> | ||
/// The preferred language for the response. | ||
/// </summary> | ||
string AcceptLanguage { get; set; } | ||
|
||
/// <summary> | ||
/// The retry timeout in seconds for Long Running Operations. Default | ||
/// value is 30. | ||
/// </summary> | ||
int? LongRunningOperationRetryTimeout { get; set; } | ||
|
||
/// <summary> | ||
/// Whether a unique x-ms-client-request-id should be generated. When | ||
/// set to true a unique x-ms-client-request-id value is generated and | ||
/// included in each request. Default is true. | ||
/// </summary> | ||
bool? GenerateClientRequestId { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// Gets the IAppsOperations. | ||
/// </summary> | ||
IAppsOperations Apps { get; } | ||
|
||
/// <summary> | ||
/// Gets the IOperations. | ||
/// </summary> | ||
IOperations Operations { get; } | ||
|
||
} | ||
} |
70 changes: 70 additions & 0 deletions
70
src/IotCentral/IotCentral.Management.Sdk/Generated/IOperations.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,70 @@ | ||
// <auto-generated> | ||
// Copyright (c) Microsoft Corporation. All rights reserved. | ||
// Licensed under the MIT License. See License.txt in the project root for | ||
// license information. | ||
// | ||
// Code generated by Microsoft (R) AutoRest Code Generator. | ||
// Changes may cause incorrect behavior and will be lost if the code is | ||
// regenerated. | ||
// </auto-generated> | ||
|
||
namespace Microsoft.Azure.Management.IotCentral | ||
{ | ||
using Microsoft.Rest; | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
using System.Collections; | ||
using System.Collections.Generic; | ||
using System.Threading; | ||
using System.Threading.Tasks; | ||
|
||
/// <summary> | ||
/// Operations operations. | ||
/// </summary> | ||
public partial interface IOperations | ||
{ | ||
/// <summary> | ||
/// Lists all of the available IoT Central Resource Provider | ||
/// operations. | ||
/// </summary> | ||
/// <param name='customHeaders'> | ||
/// The headers that will be added to request. | ||
/// </param> | ||
/// <param name='cancellationToken'> | ||
/// The cancellation token. | ||
/// </param> | ||
/// <exception cref="Microsoft.Rest.Azure.CloudException"> | ||
/// Thrown when the operation returned an invalid status code | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.SerializationException"> | ||
/// Thrown when unable to deserialize the response | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.ValidationException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
Task<AzureOperationResponse<IPage<Operation>>> ListWithHttpMessagesAsync(Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); | ||
/// <summary> | ||
/// Lists all of the available IoT Central Resource Provider | ||
/// operations. | ||
/// </summary> | ||
/// <param name='nextPageLink'> | ||
/// The NextLink from the previous successful call to List operation. | ||
/// </param> | ||
/// <param name='customHeaders'> | ||
/// The headers that will be added to request. | ||
/// </param> | ||
/// <param name='cancellationToken'> | ||
/// The cancellation token. | ||
/// </param> | ||
/// <exception cref="Microsoft.Rest.Azure.CloudException"> | ||
/// Thrown when the operation returned an invalid status code | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.SerializationException"> | ||
/// Thrown when unable to deserialize the response | ||
/// </exception> | ||
/// <exception cref="Microsoft.Rest.ValidationException"> | ||
/// Thrown when a required parameter is null | ||
/// </exception> | ||
Task<AzureOperationResponse<IPage<Operation>>> ListNextWithHttpMessagesAsync(string nextPageLink, Dictionary<string, List<string>> customHeaders = null, CancellationToken cancellationToken = default(CancellationToken)); | ||
} | ||
} |
Oops, something went wrong.