Skip to content

Commit dbe4cca

Browse files
authored
[SignalR] SignalR completed the Track 1 to SDK (#26726)
* SignalR completed the Track 1 to SDK * Create BreakingChangeIssues.csv UXMetadataIssues.csv GeneratedSdkIssues.csv * Update changelog * Delete breakingchange.csv and update Az.SignalR.psd1 * update autorest.csharp to autorest.powershell * remove generatedsdkissues.csv UXmetadataissues.csv * update test case * update test case
1 parent f933d31 commit dbe4cca

File tree

98 files changed

+18660
-7932
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

98 files changed

+18660
-7932
lines changed
Lines changed: 64 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,64 @@
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.SignalR
7+
{
8+
using Microsoft.Rest.Azure;
9+
using Models;
10+
11+
/// <summary>
12+
/// Operations operations.
13+
/// </summary>
14+
public partial interface IOperations
15+
{
16+
/// <summary>
17+
/// Lists all of the available REST API operations of the
18+
/// Microsoft.SignalRService provider.
19+
/// </summary>
20+
/// <remarks>
21+
/// Lists all of the available REST API operations of the
22+
/// Microsoft.SignalRService provider.
23+
/// </remarks>
24+
/// <param name='customHeaders'>
25+
/// The headers that will be added to request.
26+
/// </param>
27+
/// <param name='cancellationToken'>
28+
/// The cancellation token.
29+
/// </param>
30+
/// <exception cref="Microsoft.Rest.Azure.CloudException">
31+
/// Thrown when the operation returned an invalid status code
32+
/// </exception>
33+
/// <exception cref="Microsoft.Rest.SerializationException">
34+
/// Thrown when unable to deserialize the response
35+
/// </exception>
36+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<Operation>>> ListWithHttpMessagesAsync(System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
37+
38+
/// <summary>
39+
/// Lists all of the available REST API operations of the
40+
/// Microsoft.SignalRService provider.
41+
/// </summary>
42+
/// <remarks>
43+
/// Lists all of the available REST API operations of the
44+
/// Microsoft.SignalRService provider.
45+
/// </remarks>
46+
/// <param name='nextPageLink'>
47+
/// The NextLink from the previous successful call to List operation.
48+
/// </param>
49+
/// <param name='customHeaders'>
50+
/// The headers that will be added to request.
51+
/// </param>
52+
/// <param name='cancellationToken'>
53+
/// The cancellation token.
54+
/// </param>
55+
/// <exception cref="Microsoft.Rest.Azure.CloudException">
56+
/// Thrown when the operation returned an invalid status code
57+
/// </exception>
58+
/// <exception cref="Microsoft.Rest.SerializationException">
59+
/// Thrown when unable to deserialize the response
60+
/// </exception>
61+
System.Threading.Tasks.Task<Microsoft.Rest.Azure.AzureOperationResponse<Microsoft.Rest.Azure.IPage<Operation>>> ListNextWithHttpMessagesAsync(string nextPageLink, System.Collections.Generic.Dictionary<string, System.Collections.Generic.List<string>> customHeaders = null, System.Threading.CancellationToken cancellationToken = default(System.Threading.CancellationToken));
62+
63+
}
64+
}
Lines changed: 104 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,104 @@
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.SignalR
7+
{
8+
using Microsoft.Rest;
9+
using Microsoft.Rest.Azure;
10+
using Models;
11+
12+
/// <summary>
13+
/// REST API for Azure SignalR Service
14+
/// </summary>
15+
public partial interface ISignalRManagementClient : System.IDisposable
16+
{
17+
/// <summary>
18+
/// The base URI of the service.
19+
/// </summary>
20+
System.Uri BaseUri { get; set; }
21+
22+
/// <summary>
23+
/// Gets or sets json serialization settings.
24+
/// </summary>
25+
Newtonsoft.Json.JsonSerializerSettings SerializationSettings { get; }
26+
27+
/// <summary>
28+
/// Gets or sets json deserialization settings.
29+
/// </summary>
30+
Newtonsoft.Json.JsonSerializerSettings DeserializationSettings { get; }
31+
32+
/// <summary>
33+
/// Credentials needed for the client to connect to Azure.
34+
/// </summary>
35+
Microsoft.Rest.ServiceClientCredentials Credentials { get;}
36+
37+
38+
/// <summary>
39+
/// The API version to use for this operation.
40+
/// </summary>
41+
string ApiVersion { get;}
42+
43+
44+
/// <summary>
45+
/// Gets subscription Id which uniquely identify the Microsoft Azure
46+
/// subscription. The subscription ID forms part of the URI for every service
47+
/// call.
48+
/// </summary>
49+
string SubscriptionId { get; set;}
50+
51+
52+
/// <summary>
53+
/// The preferred language for the response.
54+
/// </summary>
55+
string AcceptLanguage { get; set;}
56+
57+
58+
/// <summary>
59+
/// The retry timeout in seconds for Long Running Operations. Default
60+
/// /// value is 30.
61+
/// </summary>
62+
int? LongRunningOperationRetryTimeout { get; set;}
63+
64+
65+
/// <summary>
66+
/// Whether a unique x-ms-client-request-id should be generated. When
67+
/// /// set to true a unique x-ms-client-request-id value is generated and
68+
/// /// included in each request. Default is true.
69+
/// </summary>
70+
bool? GenerateClientRequestId { get; set;}
71+
72+
73+
/// <summary>
74+
/// Gets the IOperations
75+
/// </summary>
76+
IOperations Operations { get; }
77+
78+
/// <summary>
79+
/// Gets the ISignalROperations
80+
/// </summary>
81+
ISignalROperations SignalR { get; }
82+
83+
/// <summary>
84+
/// Gets the IUsagesOperations
85+
/// </summary>
86+
IUsagesOperations Usages { get; }
87+
88+
/// <summary>
89+
/// Gets the ISignalRPrivateEndpointConnectionsOperations
90+
/// </summary>
91+
ISignalRPrivateEndpointConnectionsOperations SignalRPrivateEndpointConnections { get; }
92+
93+
/// <summary>
94+
/// Gets the ISignalRPrivateLinkResourcesOperations
95+
/// </summary>
96+
ISignalRPrivateLinkResourcesOperations SignalRPrivateLinkResources { get; }
97+
98+
/// <summary>
99+
/// Gets the ISignalRSharedPrivateLinkResourcesOperations
100+
/// </summary>
101+
ISignalRSharedPrivateLinkResourcesOperations SignalRSharedPrivateLinkResources { get; }
102+
103+
}
104+
}

0 commit comments

Comments
 (0)