-
Notifications
You must be signed in to change notification settings - Fork 3.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[LogicApp] Az.LoficApp the Track 1 to SDK (#26911)
* Az.LogicApp the Track 1 to SDK * Create BreakingChangeIssues.csv file. property ChangedTime in swagger was readonly * 1. Remove the local file. 2. The name of the property in PartnerContent.cs was changed from B2B to B2b for consistency with previous versions. * remove breakingchange.csv and readme.md file remove code: 'useDateTimeOffset: true' * remove breakingchange.csv and readme.md file remove code: 'useDateTimeOffset: true'
- Loading branch information
1 parent
f302d6a
commit cbdfa04
Showing
247 changed files
with
50,113 additions
and
6 deletions.
There are no files selected for viewing
188 changes: 188 additions & 0 deletions
188
src/LogicApp/LogicApp.Management.Sdk/Generated/IIntegrationAccountAgreementsOperations.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,188 @@ | ||
// 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. | ||
|
||
namespace Microsoft.Azure.Management.Logic | ||
{ | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
|
||
/// <summary> | ||
/// IntegrationAccountAgreementsOperations operations. | ||
/// </summary> | ||
public partial interface IIntegrationAccountAgreementsOperations | ||
{ | ||
/// <summary> | ||
/// Gets a list of integration account agreements. | ||
/// </summary> | ||
/// <remarks> | ||
/// Gets a list of integration account agreements. | ||
/// </remarks> | ||
/// <param name='odataQuery'> | ||
/// | ||
/// </param> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<IntegrationAccountAgreement>>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, Microsoft.Rest.Azure.OData.ODataQuery<IntegrationAccountAgreementFilter> odataQuery = default(Microsoft.Rest.Azure.OData.ODataQuery<IntegrationAccountAgreementFilter>), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Gets an integration account agreement. | ||
/// </summary> | ||
/// <remarks> | ||
/// Gets an integration account agreement. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='agreementName'> | ||
/// The integration account agreement name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IntegrationAccountAgreement>> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Creates or updates an integration account agreement. | ||
/// </summary> | ||
/// <remarks> | ||
/// Creates or updates an integration account agreement. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='agreementName'> | ||
/// The integration account agreement name. | ||
/// </param> | ||
/// <param name='agreement'> | ||
/// The integration account agreement. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IntegrationAccountAgreement>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, IntegrationAccountAgreement agreement, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Deletes an integration account agreement. | ||
/// </summary> | ||
/// <remarks> | ||
/// Deletes an integration account agreement. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='agreementName'> | ||
/// The integration account agreement name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Get the content callback url. | ||
/// </summary> | ||
/// <remarks> | ||
/// Get the content callback url. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='agreementName'> | ||
/// The integration account agreement name. | ||
/// </param> | ||
/// <param name='listContentCallbackUrl'> | ||
/// | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<WorkflowTriggerCallbackUrl>> ListContentCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string agreementName, GetCallbackUrlParameters listContentCallbackUrl, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Gets a list of integration account agreements. | ||
/// </summary> | ||
/// <remarks> | ||
/// Gets a list of integration account agreements. | ||
/// </remarks> | ||
/// <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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<IntegrationAccountAgreement>>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
} | ||
} |
159 changes: 159 additions & 0 deletions
159
src/LogicApp/LogicApp.Management.Sdk/Generated/IIntegrationAccountAssembliesOperations.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,159 @@ | ||
// 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. | ||
|
||
namespace Microsoft.Azure.Management.Logic | ||
{ | ||
using Microsoft.Rest.Azure; | ||
using Models; | ||
|
||
/// <summary> | ||
/// IntegrationAccountAssembliesOperations operations. | ||
/// </summary> | ||
public partial interface IIntegrationAccountAssembliesOperations | ||
{ | ||
/// <summary> | ||
/// List the assemblies for an integration account. | ||
/// </summary> | ||
/// <remarks> | ||
/// List the assemblies for an integration account. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<System.Collections.Generic.IEnumerable<AssemblyDefinition>>> ListWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Get an assembly for an integration account. | ||
/// </summary> | ||
/// <remarks> | ||
/// Get an assembly for an integration account. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='assemblyArtifactName'> | ||
/// The assembly artifact name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<AssemblyDefinition>> GetWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string assemblyArtifactName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Create or update an assembly for an integration account. | ||
/// </summary> | ||
/// <remarks> | ||
/// Create or update an assembly for an integration account. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='assemblyArtifactName'> | ||
/// The assembly artifact name. | ||
/// </param> | ||
/// <param name='assemblyArtifact'> | ||
/// The assembly artifact. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<AssemblyDefinition>> CreateOrUpdateWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string assemblyArtifactName, AssemblyDefinition assemblyArtifact, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Delete an assembly for an integration account. | ||
/// </summary> | ||
/// <remarks> | ||
/// Delete an assembly for an integration account. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='assemblyArtifactName'> | ||
/// The assembly artifact name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse> DeleteWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string assemblyArtifactName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
/// <summary> | ||
/// Get the content callback url for an integration account assembly. | ||
/// </summary> | ||
/// <remarks> | ||
/// Get the content callback url for an integration account assembly. | ||
/// </remarks> | ||
/// <param name='resourceGroupName'> | ||
/// The resource group name. | ||
/// </param> | ||
/// <param name='integrationAccountName'> | ||
/// The integration account name. | ||
/// </param> | ||
/// <param name='assemblyArtifactName'> | ||
/// The assembly artifact name. | ||
/// </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> | ||
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<WorkflowTriggerCallbackUrl>> ListContentCallbackUrlWithHttpMessagesAsync(string resourceGroupName, string integrationAccountName, string assemblyArtifactName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken)); | ||
|
||
} | ||
} |
Oops, something went wrong.