1+ // Copyright (c) Microsoft Corporation. All rights reserved.
2+ // Licensed under the MIT License. See License.txt in the project root for license information.
3+ // Code generated by Microsoft (R) AutoRest Code Generator.
4+ // Changes may cause incorrect behavior and will be lost if the code is regenerated.
5+
6+ namespace Microsoft . Azure . Management . DataFactory
7+ {
8+ using Microsoft . Rest . Azure ;
9+ using Models ;
10+
11+ /// <summary>
12+ /// IntegrationRuntimeOperations operations.
13+ /// </summary>
14+ public partial interface IIntegrationRuntimeOperations
15+ {
16+ /// <summary>
17+ /// Enable interactive authoring of Managed Virtual Network integration
18+ /// runtime.
19+ /// </summary>
20+ /// <remarks>
21+ /// Enable interactive authoring of Managed Virtual Network integration
22+ /// runtime.
23+ /// </remarks>
24+ /// <param name='resourceGroupName'>
25+ /// The resource group name.
26+ /// </param>
27+ /// <param name='factoryName'>
28+ /// The factory name.
29+ /// </param>
30+ /// <param name='integrationRuntimeName'>
31+ /// The integration runtime name.
32+ /// </param>
33+ /// <param name='autoTerminationMinutes'>
34+ /// The allowed idle time for interactive authoring.
35+ /// </param>
36+ /// <param name='customHeaders'>
37+ /// The headers that will be added to request.
38+ /// </param>
39+ /// <param name='cancellationToken'>
40+ /// The cancellation token.
41+ /// </param>
42+ /// <exception cref="Microsoft.Rest.Azure.CloudException">
43+ /// Thrown when the operation returned an invalid status code
44+ /// </exception>
45+ /// <exception cref="Microsoft.Rest.SerializationException">
46+ /// Thrown when unable to deserialize the response
47+ /// </exception>
48+ System . Threading . Tasks . Task < Microsoft . Rest . Azure . AzureOperationResponse < IntegrationRuntimeResource , IntegrationRuntimeEnableInteractiveQueryHeaders > > EnableInteractiveQueryWithHttpMessagesAsync ( string resourceGroupName , string factoryName , string integrationRuntimeName , int ? autoTerminationMinutes = default ( int ? ) , System . Collections . Generic . Dictionary < string , System . Collections . Generic . List < string > > customHeaders = null , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
49+
50+ /// <summary>
51+ /// Disable interactive authoring of Managed Virtual Network integration
52+ /// runtime.
53+ /// </summary>
54+ /// <remarks>
55+ /// Disable interactive authoring of Managed Virtual Network integration
56+ /// runtime.
57+ /// </remarks>
58+ /// <param name='resourceGroupName'>
59+ /// The resource group name.
60+ /// </param>
61+ /// <param name='factoryName'>
62+ /// The factory name.
63+ /// </param>
64+ /// <param name='integrationRuntimeName'>
65+ /// The integration runtime name.
66+ /// </param>
67+ /// <param name='customHeaders'>
68+ /// The headers that will be added to request.
69+ /// </param>
70+ /// <param name='cancellationToken'>
71+ /// The cancellation token.
72+ /// </param>
73+ /// <exception cref="Microsoft.Rest.Azure.CloudException">
74+ /// Thrown when the operation returned an invalid status code
75+ /// </exception>
76+ /// <exception cref="Microsoft.Rest.SerializationException">
77+ /// Thrown when unable to deserialize the response
78+ /// </exception>
79+ System . Threading . Tasks . Task < Microsoft . Rest . Azure . AzureOperationResponse < IntegrationRuntimeResource , IntegrationRuntimeDisableInteractiveQueryHeaders > > DisableInteractiveQueryWithHttpMessagesAsync ( string resourceGroupName , string factoryName , string integrationRuntimeName , System . Collections . Generic . Dictionary < string , System . Collections . Generic . List < string > > customHeaders = null , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
80+
81+ /// <summary>
82+ /// Enable interactive authoring of Managed Virtual Network integration
83+ /// runtime.
84+ /// </summary>
85+ /// <remarks>
86+ /// Enable interactive authoring of Managed Virtual Network integration
87+ /// runtime.
88+ /// </remarks>
89+ /// <param name='resourceGroupName'>
90+ /// The resource group name.
91+ /// </param>
92+ /// <param name='factoryName'>
93+ /// The factory name.
94+ /// </param>
95+ /// <param name='integrationRuntimeName'>
96+ /// The integration runtime name.
97+ /// </param>
98+ /// <param name='autoTerminationMinutes'>
99+ /// The allowed idle time for interactive authoring.
100+ /// </param>
101+ /// <param name='customHeaders'>
102+ /// The headers that will be added to request.
103+ /// </param>
104+ /// <param name='cancellationToken'>
105+ /// The cancellation token.
106+ /// </param>
107+ /// <exception cref="Microsoft.Rest.Azure.CloudException">
108+ /// Thrown when the operation returned an invalid status code
109+ /// </exception>
110+ /// <exception cref="Microsoft.Rest.SerializationException">
111+ /// Thrown when unable to deserialize the response
112+ /// </exception>
113+ System . Threading . Tasks . Task < Microsoft . Rest . Azure . AzureOperationResponse < IntegrationRuntimeResource , IntegrationRuntimeEnableInteractiveQueryHeaders > > BeginEnableInteractiveQueryWithHttpMessagesAsync ( string resourceGroupName , string factoryName , string integrationRuntimeName , int ? autoTerminationMinutes = default ( int ? ) , System . Collections . Generic . Dictionary < string , System . Collections . Generic . List < string > > customHeaders = null , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
114+
115+ /// <summary>
116+ /// Disable interactive authoring of Managed Virtual Network integration
117+ /// runtime.
118+ /// </summary>
119+ /// <remarks>
120+ /// Disable interactive authoring of Managed Virtual Network integration
121+ /// runtime.
122+ /// </remarks>
123+ /// <param name='resourceGroupName'>
124+ /// The resource group name.
125+ /// </param>
126+ /// <param name='factoryName'>
127+ /// The factory name.
128+ /// </param>
129+ /// <param name='integrationRuntimeName'>
130+ /// The integration runtime name.
131+ /// </param>
132+ /// <param name='customHeaders'>
133+ /// The headers that will be added to request.
134+ /// </param>
135+ /// <param name='cancellationToken'>
136+ /// The cancellation token.
137+ /// </param>
138+ /// <exception cref="Microsoft.Rest.Azure.CloudException">
139+ /// Thrown when the operation returned an invalid status code
140+ /// </exception>
141+ /// <exception cref="Microsoft.Rest.SerializationException">
142+ /// Thrown when unable to deserialize the response
143+ /// </exception>
144+ System . Threading . Tasks . Task < Microsoft . Rest . Azure . AzureOperationResponse < IntegrationRuntimeResource , IntegrationRuntimeDisableInteractiveQueryHeaders > > BeginDisableInteractiveQueryWithHttpMessagesAsync ( string resourceGroupName , string factoryName , string integrationRuntimeName , System . Collections . Generic . Dictionary < string , System . Collections . Generic . List < string > > customHeaders = null , System . Threading . CancellationToken cancellationToken = default ( System . Threading . CancellationToken ) ) ;
145+
146+ }
147+ }
0 commit comments