Skip to content

Commit 5c85784

Browse files
authored
Add connectivity capabilities for Network Manager connectivity configuration (#27519)
1 parent c187fa4 commit 5c85784

30 files changed

+1165
-798
lines changed

src/Network/Network.Management.Sdk/Generated/IIpamPoolsOperations.cs

Lines changed: 25 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,10 @@ public partial interface IIpamPoolsOperations
6969
/// <param name='poolName'>
7070
/// IP Address Manager Pool resource name.
7171
/// </param>
72+
/// <param name='ifMatch'>
73+
/// The entity state (ETag) version of the pool to update. This value can be
74+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
75+
/// </param>
7276
/// <param name='body'>
7377
/// Pool resource object to create/update.
7478
/// </param>
@@ -84,7 +88,7 @@ public partial interface IIpamPoolsOperations
8488
/// <exception cref="Microsoft.Rest.SerializationException">
8589
/// Thrown when unable to deserialize the response
8690
/// </exception>
87-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool,IpamPoolsCreateHeaders>> CreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, IpamPool body, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
91+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool,IpamPoolsCreateHeaders>> CreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, IpamPool body, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
8892

8993
/// <summary>
9094
/// Updates the specific Pool resource.
@@ -101,6 +105,10 @@ public partial interface IIpamPoolsOperations
101105
/// <param name='poolName'>
102106
/// IP Address Manager Pool resource name.
103107
/// </param>
108+
/// <param name='ifMatch'>
109+
/// The entity state (ETag) version of the pool to update. This value can be
110+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
111+
/// </param>
104112
/// <param name='body'>
105113
/// Pool resource object to update partially.
106114
/// </param>
@@ -116,7 +124,7 @@ public partial interface IIpamPoolsOperations
116124
/// <exception cref="Microsoft.Rest.SerializationException">
117125
/// Thrown when unable to deserialize the response
118126
/// </exception>
119-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool>> UpdateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, IpamPoolUpdate body = default(IpamPoolUpdate), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
127+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool>> UpdateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, string ifMatch = default(string), IpamPoolUpdate body = default(IpamPoolUpdate), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
120128

121129
/// <summary>
122130
/// Gets the specific Pool resource.
@@ -162,6 +170,10 @@ public partial interface IIpamPoolsOperations
162170
/// <param name='poolName'>
163171
/// Pool resource name.
164172
/// </param>
173+
/// <param name='ifMatch'>
174+
/// The entity state (ETag) version of the pool to update. This value can be
175+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
176+
/// </param>
165177
/// <param name='customHeaders'>
166178
/// The headers that will be added to request.
167179
/// </param>
@@ -171,7 +183,7 @@ public partial interface IIpamPoolsOperations
171183
/// <exception cref="Microsoft.Rest.Azure.CloudException">
172184
/// Thrown when the operation returned an invalid status code
173185
/// </exception>
174-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<IpamPoolsDeleteHeaders>> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
186+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<IpamPoolsDeleteHeaders>> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
175187

176188
/// <summary>
177189
/// Get the Pool Usage.
@@ -246,6 +258,10 @@ public partial interface IIpamPoolsOperations
246258
/// <param name='poolName'>
247259
/// IP Address Manager Pool resource name.
248260
/// </param>
261+
/// <param name='ifMatch'>
262+
/// The entity state (ETag) version of the pool to update. This value can be
263+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
264+
/// </param>
249265
/// <param name='body'>
250266
/// Pool resource object to create/update.
251267
/// </param>
@@ -261,7 +277,7 @@ public partial interface IIpamPoolsOperations
261277
/// <exception cref="Microsoft.Rest.SerializationException">
262278
/// Thrown when unable to deserialize the response
263279
/// </exception>
264-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool,IpamPoolsCreateHeaders>> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, IpamPool body, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
280+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<IpamPool,IpamPoolsCreateHeaders>> BeginCreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, IpamPool body, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
265281

266282
/// <summary>
267283
/// Delete the Pool resource.
@@ -278,6 +294,10 @@ public partial interface IIpamPoolsOperations
278294
/// <param name='poolName'>
279295
/// Pool resource name.
280296
/// </param>
297+
/// <param name='ifMatch'>
298+
/// The entity state (ETag) version of the pool to update. This value can be
299+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
300+
/// </param>
281301
/// <param name='customHeaders'>
282302
/// The headers that will be added to request.
283303
/// </param>
@@ -287,7 +307,7 @@ public partial interface IIpamPoolsOperations
287307
/// <exception cref="Microsoft.Rest.Azure.CloudException">
288308
/// Thrown when the operation returned an invalid status code
289309
/// </exception>
290-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<IpamPoolsDeleteHeaders>> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
310+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<IpamPoolsDeleteHeaders>> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string poolName, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
291311

292312
/// <summary>
293313
/// Gets list of Pool resources at Network Manager level.

src/Network/Network.Management.Sdk/Generated/IVerifierWorkspacesOperations.cs

Lines changed: 20 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,6 +98,10 @@ public partial interface IVerifierWorkspacesOperations
9898
/// <param name='workspaceName'>
9999
/// Workspace name.
100100
/// </param>
101+
/// <param name='ifMatch'>
102+
/// The entity state (ETag) version of the pool to update. This value can be
103+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
104+
/// </param>
101105
/// <param name='body'>
102106
/// Verifier Workspace object to create/update.
103107
/// </param>
@@ -113,7 +117,7 @@ public partial interface IVerifierWorkspacesOperations
113117
/// <exception cref="Microsoft.Rest.SerializationException">
114118
/// Thrown when unable to deserialize the response
115119
/// </exception>
116-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<VerifierWorkspace>> CreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, VerifierWorkspace body, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
120+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<VerifierWorkspace>> CreateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, VerifierWorkspace body, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
117121

118122
/// <summary>
119123
/// Updates Verifier Workspace.
@@ -130,6 +134,10 @@ public partial interface IVerifierWorkspacesOperations
130134
/// <param name='workspaceName'>
131135
/// Workspace name.
132136
/// </param>
137+
/// <param name='ifMatch'>
138+
/// The entity state (ETag) version of the pool to update. This value can be
139+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
140+
/// </param>
133141
/// <param name='body'>
134142
/// Verifier Workspace object to create/update.
135143
/// </param>
@@ -145,7 +153,7 @@ public partial interface IVerifierWorkspacesOperations
145153
/// <exception cref="Microsoft.Rest.SerializationException">
146154
/// Thrown when unable to deserialize the response
147155
/// </exception>
148-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<VerifierWorkspace>> UpdateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, VerifierWorkspaceUpdate body = default(VerifierWorkspaceUpdate), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
156+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<VerifierWorkspace>> UpdateWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, string ifMatch = default(string), VerifierWorkspaceUpdate body = default(VerifierWorkspaceUpdate), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
149157

150158
/// <summary>
151159
/// Deletes Verifier Workspace.
@@ -162,6 +170,10 @@ public partial interface IVerifierWorkspacesOperations
162170
/// <param name='workspaceName'>
163171
/// Workspace name.
164172
/// </param>
173+
/// <param name='ifMatch'>
174+
/// The entity state (ETag) version of the pool to update. This value can be
175+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
176+
/// </param>
165177
/// <param name='customHeaders'>
166178
/// The headers that will be added to request.
167179
/// </param>
@@ -171,7 +183,7 @@ public partial interface IVerifierWorkspacesOperations
171183
/// <exception cref="Microsoft.Rest.Azure.CloudException">
172184
/// Thrown when the operation returned an invalid status code
173185
/// </exception>
174-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<VerifierWorkspacesDeleteHeaders>> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
186+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<VerifierWorkspacesDeleteHeaders>> DeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
175187

176188
/// <summary>
177189
/// Deletes Verifier Workspace.
@@ -188,6 +200,10 @@ public partial interface IVerifierWorkspacesOperations
188200
/// <param name='workspaceName'>
189201
/// Workspace name.
190202
/// </param>
203+
/// <param name='ifMatch'>
204+
/// The entity state (ETag) version of the pool to update. This value can be
205+
/// omitted or set to &#34;*&#34; to apply the operation unconditionally.
206+
/// </param>
191207
/// <param name='customHeaders'>
192208
/// The headers that will be added to request.
193209
/// </param>
@@ -197,7 +213,7 @@ public partial interface IVerifierWorkspacesOperations
197213
/// <exception cref="Microsoft.Rest.Azure.CloudException">
198214
/// Thrown when the operation returned an invalid status code
199215
/// </exception>
200-
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<VerifierWorkspacesDeleteHeaders>> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
216+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationHeaderResponse<VerifierWorkspacesDeleteHeaders>> BeginDeleteWithHttpMessagesAsync(string resourceGroupName, string networkManagerName, string workspaceName, string ifMatch = default(string), System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
201217

202218
/// <summary>
203219
/// Gets list of Verifier Workspaces.

0 commit comments

Comments
 (0)