diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentity.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentity.cs new file mode 100644 index 000000000000..02844d4e31aa --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentity.cs @@ -0,0 +1,88 @@ +// +// 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.SignalR.Models +{ + using Newtonsoft.Json; + using System.Collections; + using System.Collections.Generic; + using System.Linq; + + /// + /// A class represent managed identities used for request and response + /// + public partial class ManagedIdentity + { + /// + /// Initializes a new instance of the ManagedIdentity class. + /// + public ManagedIdentity() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ManagedIdentity class. + /// + /// Represent the identity type: systemAssigned, + /// userAssigned, None. Possible values include: 'None', + /// 'SystemAssigned', 'UserAssigned' + /// Get or set the user assigned + /// identities + /// Get the principal id for the system + /// assigned identity. + /// Only be used in response. + /// Get the tenant id for the system assigned + /// identity. + /// Only be used in response + public ManagedIdentity(string type = default(string), IDictionary userAssignedIdentities = default(IDictionary), string principalId = default(string), string tenantId = default(string)) + { + Type = type; + UserAssignedIdentities = userAssignedIdentities; + PrincipalId = principalId; + TenantId = tenantId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets represent the identity type: systemAssigned, + /// userAssigned, None. Possible values include: 'None', + /// 'SystemAssigned', 'UserAssigned' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets get or set the user assigned identities + /// + [JsonProperty(PropertyName = "userAssignedIdentities")] + public IDictionary UserAssignedIdentities { get; set; } + + /// + /// Gets get the principal id for the system assigned identity. + /// Only be used in response. + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; private set; } + + /// + /// Gets get the tenant id for the system assigned identity. + /// Only be used in response + /// + [JsonProperty(PropertyName = "tenantId")] + public string TenantId { get; private set; } + + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentitySettings.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentitySettings.cs new file mode 100644 index 000000000000..607163be3720 --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentitySettings.cs @@ -0,0 +1,56 @@ +// +// 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.SignalR.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Managed identity settings for upstream. + /// + public partial class ManagedIdentitySettings + { + /// + /// Initializes a new instance of the ManagedIdentitySettings class. + /// + public ManagedIdentitySettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the ManagedIdentitySettings class. + /// + /// The Resource indicating the App ID URI of + /// the target resource. + /// It also appears in the aud (audience) claim of the issued + /// token. + public ManagedIdentitySettings(string resource = default(string)) + { + Resource = resource; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the Resource indicating the App ID URI of the target + /// resource. + /// It also appears in the aud (audience) claim of the issued token. + /// + [JsonProperty(PropertyName = "resource")] + public string Resource { get; set; } + + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentityType.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentityType.cs new file mode 100644 index 000000000000..d77e934959a9 --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ManagedIdentityType.cs @@ -0,0 +1,23 @@ +// +// 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.SignalR.Models +{ + + /// + /// Defines values for ManagedIdentityType. + /// + public static class ManagedIdentityType + { + public const string None = "None"; + public const string SystemAssigned = "SystemAssigned"; + public const string UserAssigned = "UserAssigned"; + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ResourceSku.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ResourceSku.cs index 27d549452cf8..8fe43ce899cf 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ResourceSku.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/ResourceSku.cs @@ -38,8 +38,8 @@ public ResourceSku() /// /// `Basic` is deprecated, use `Standard` instead. Possible values /// include: 'Free', 'Basic', 'Standard', 'Premium' - /// Optional string. For future use. - /// Optional string. For future use. + /// Not used. Retained for future use. + /// Not used. Retained for future use. /// Optional, integer. The unit count of SignalR /// resource. 1 by default. /// @@ -80,16 +80,16 @@ public ResourceSku() public string Tier { get; set; } /// - /// Gets or sets optional string. For future use. + /// Gets not used. Retained for future use. /// [JsonProperty(PropertyName = "size")] - public string Size { get; set; } + public string Size { get; private set; } /// - /// Gets or sets optional string. For future use. + /// Gets not used. Retained for future use. /// [JsonProperty(PropertyName = "family")] - public string Family { get; set; } + public string Family { get; private set; } /// /// Gets or sets optional, integer. The unit count of SignalR resource. diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRCreateOrUpdateProperties.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRCreateOrUpdateProperties.cs index 95e9c6a8ebcf..83f5798ebb86 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRCreateOrUpdateProperties.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRCreateOrUpdateProperties.cs @@ -33,10 +33,6 @@ public SignalRCreateOrUpdateProperties() /// Initializes a new instance of the SignalRCreateOrUpdateProperties /// class. /// - /// Prefix for the hostName of the SignalR - /// service. Retained for future use. - /// The hostname will be of format: - /// <hostNamePrefix>.service.signalr.net. /// List of SignalR featureFlags. e.g. /// ServiceMode. /// @@ -53,9 +49,8 @@ public SignalRCreateOrUpdateProperties() /// Upstream settings when the Azure SignalR is /// in server-less mode. /// Network ACLs - public SignalRCreateOrUpdateProperties(string hostNamePrefix = default(string), IList features = default(IList), SignalRCorsSettings cors = default(SignalRCorsSettings), ServerlessUpstreamSettings upstream = default(ServerlessUpstreamSettings), SignalRNetworkACLs networkACLs = default(SignalRNetworkACLs)) + public SignalRCreateOrUpdateProperties(IList features = default(IList), SignalRCorsSettings cors = default(SignalRCorsSettings), ServerlessUpstreamSettings upstream = default(ServerlessUpstreamSettings), SignalRNetworkACLs networkACLs = default(SignalRNetworkACLs)) { - HostNamePrefix = hostNamePrefix; Features = features; Cors = cors; Upstream = upstream; @@ -68,15 +63,6 @@ public SignalRCreateOrUpdateProperties() /// partial void CustomInit(); - /// - /// Gets or sets prefix for the hostName of the SignalR service. - /// Retained for future use. - /// The hostname will be of format: - /// <hostNamePrefix>.service.signalr.net. - /// - [JsonProperty(PropertyName = "hostNamePrefix")] - public string HostNamePrefix { get; set; } - /// /// Gets or sets list of SignalR featureFlags. e.g. ServiceMode. /// diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRResource.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRResource.cs index 671dc9325f3e..bee9fa781170 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRResource.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRResource.cs @@ -46,10 +46,6 @@ public SignalRResource() /// pairs that describe the resource. /// The billing information of the resource.(e.g. /// Free, Standard) - /// Prefix for the hostName of the SignalR - /// service. Retained for future use. - /// The hostname will be of format: - /// <hostNamePrefix>.service.signalr.net. /// List of SignalR featureFlags. e.g. /// ServiceMode. /// @@ -84,14 +80,15 @@ public SignalRResource() /// need the same or higher version of client SDKs. /// Private endpoint /// connections to the SignalR resource. + /// TLS settings. /// The kind of the service - e.g. "SignalR", or /// "RawWebSockets" for "Microsoft.SignalRService/SignalR". Possible /// values include: 'SignalR', 'RawWebSockets' - public SignalRResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), ResourceSku sku = default(ResourceSku), string hostNamePrefix = default(string), IList features = default(IList), SignalRCorsSettings cors = default(SignalRCorsSettings), ServerlessUpstreamSettings upstream = default(ServerlessUpstreamSettings), SignalRNetworkACLs networkACLs = default(SignalRNetworkACLs), string provisioningState = default(string), string externalIP = default(string), string hostName = default(string), int? publicPort = default(int?), int? serverPort = default(int?), string version = default(string), IList privateEndpointConnections = default(IList), string kind = default(string)) + /// The managed identity response + public SignalRResource(string id = default(string), string name = default(string), string type = default(string), string location = default(string), IDictionary tags = default(IDictionary), ResourceSku sku = default(ResourceSku), IList features = default(IList), SignalRCorsSettings cors = default(SignalRCorsSettings), ServerlessUpstreamSettings upstream = default(ServerlessUpstreamSettings), SignalRNetworkACLs networkACLs = default(SignalRNetworkACLs), string provisioningState = default(string), string externalIP = default(string), string hostName = default(string), int? publicPort = default(int?), int? serverPort = default(int?), string version = default(string), IList privateEndpointConnections = default(IList), SignalRTlsSettings tls = default(SignalRTlsSettings), string kind = default(string), ManagedIdentity identity = default(ManagedIdentity)) : base(id, name, type, location, tags) { Sku = sku; - HostNamePrefix = hostNamePrefix; Features = features; Cors = cors; Upstream = upstream; @@ -103,7 +100,9 @@ public SignalRResource() ServerPort = serverPort; Version = version; PrivateEndpointConnections = privateEndpointConnections; + Tls = tls; Kind = kind; + Identity = identity; CustomInit(); } @@ -119,15 +118,6 @@ public SignalRResource() [JsonProperty(PropertyName = "sku")] public ResourceSku Sku { get; set; } - /// - /// Gets or sets prefix for the hostName of the SignalR service. - /// Retained for future use. - /// The hostname will be of format: - /// <hostNamePrefix>.service.signalr.net. - /// - [JsonProperty(PropertyName = "properties.hostNamePrefix")] - public string HostNamePrefix { get; set; } - /// /// Gets or sets list of SignalR featureFlags. e.g. ServiceMode. /// @@ -210,6 +200,12 @@ public SignalRResource() [JsonProperty(PropertyName = "properties.privateEndpointConnections")] public IList PrivateEndpointConnections { get; private set; } + /// + /// Gets or sets TLS settings. + /// + [JsonProperty(PropertyName = "properties.tls")] + public SignalRTlsSettings Tls { get; set; } + /// /// Gets or sets the kind of the service - e.g. "SignalR", or /// "RawWebSockets" for "Microsoft.SignalRService/SignalR". Possible @@ -218,6 +214,12 @@ public SignalRResource() [JsonProperty(PropertyName = "kind")] public string Kind { get; set; } + /// + /// Gets or sets the managed identity response + /// + [JsonProperty(PropertyName = "identity")] + public ManagedIdentity Identity { get; set; } + /// /// Validate the object. /// diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRTlsSettings.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRTlsSettings.cs new file mode 100644 index 000000000000..fad11b6db7fd --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/SignalRTlsSettings.cs @@ -0,0 +1,53 @@ +// +// 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.SignalR.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// TLS settings for SignalR + /// + public partial class SignalRTlsSettings + { + /// + /// Initializes a new instance of the SignalRTlsSettings class. + /// + public SignalRTlsSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the SignalRTlsSettings class. + /// + /// Request client certificate during + /// TLS handshake if enabled + public SignalRTlsSettings(bool? clientCertEnabled = default(bool?)) + { + ClientCertEnabled = clientCertEnabled; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets request client certificate during TLS handshake if + /// enabled + /// + [JsonProperty(PropertyName = "clientCertEnabled")] + public bool? ClientCertEnabled { get; set; } + + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthSettings.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthSettings.cs new file mode 100644 index 000000000000..7f73ad9aa294 --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthSettings.cs @@ -0,0 +1,65 @@ +// +// 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.SignalR.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Upstream auth settings. + /// + public partial class UpstreamAuthSettings + { + /// + /// Initializes a new instance of the UpstreamAuthSettings class. + /// + public UpstreamAuthSettings() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UpstreamAuthSettings class. + /// + /// Gets or sets the type of auth. None or + /// ManagedIdentity is supported now. Possible values include: 'None', + /// 'ManagedIdentity' + /// Gets or sets the managed identity + /// settings. It's required if the auth type is set to + /// ManagedIdentity. + public UpstreamAuthSettings(string type = default(string), ManagedIdentitySettings managedIdentity = default(ManagedIdentitySettings)) + { + Type = type; + ManagedIdentity = managedIdentity; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets or sets the type of auth. None or ManagedIdentity is supported + /// now. Possible values include: 'None', 'ManagedIdentity' + /// + [JsonProperty(PropertyName = "type")] + public string Type { get; set; } + + /// + /// Gets or sets the managed identity settings. It's required if the + /// auth type is set to ManagedIdentity. + /// + [JsonProperty(PropertyName = "managedIdentity")] + public ManagedIdentitySettings ManagedIdentity { get; set; } + + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthType.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthType.cs new file mode 100644 index 000000000000..426cbea49393 --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamAuthType.cs @@ -0,0 +1,22 @@ +// +// 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.SignalR.Models +{ + + /// + /// Defines values for UpstreamAuthType. + /// + public static class UpstreamAuthType + { + public const string None = "None"; + public const string ManagedIdentity = "ManagedIdentity"; + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamTemplate.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamTemplate.cs index 34ebebed5606..8cc1b69d03fc 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamTemplate.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UpstreamTemplate.cs @@ -66,12 +66,15 @@ public UpstreamTemplate() /// "messages" /// 3. The single category name, for example, "connections", it matches /// the category "connections" - public UpstreamTemplate(string urlTemplate, string hubPattern = default(string), string eventPattern = default(string), string categoryPattern = default(string)) + /// Gets or sets the auth settings for an upstream. + /// If not set, no auth is used for upstream messages. + public UpstreamTemplate(string urlTemplate, string hubPattern = default(string), string eventPattern = default(string), string categoryPattern = default(string), UpstreamAuthSettings auth = default(UpstreamAuthSettings)) { HubPattern = hubPattern; EventPattern = eventPattern; CategoryPattern = categoryPattern; UrlTemplate = urlTemplate; + Auth = auth; CustomInit(); } @@ -132,6 +135,13 @@ public UpstreamTemplate() [JsonProperty(PropertyName = "urlTemplate")] public string UrlTemplate { get; set; } + /// + /// Gets or sets the auth settings for an upstream. If not set, no auth + /// is used for upstream messages. + /// + [JsonProperty(PropertyName = "auth")] + public UpstreamAuthSettings Auth { get; set; } + /// /// Validate the object. /// diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UserAssignedIdentityProperty.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UserAssignedIdentityProperty.cs new file mode 100644 index 000000000000..91e6b8cac717 --- /dev/null +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/Models/UserAssignedIdentityProperty.cs @@ -0,0 +1,63 @@ +// +// 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.SignalR.Models +{ + using Newtonsoft.Json; + using System.Linq; + + /// + /// Properties of user assigned identity. + /// + public partial class UserAssignedIdentityProperty + { + /// + /// Initializes a new instance of the UserAssignedIdentityProperty + /// class. + /// + public UserAssignedIdentityProperty() + { + CustomInit(); + } + + /// + /// Initializes a new instance of the UserAssignedIdentityProperty + /// class. + /// + /// Get the principal id for the user + /// assigned identity + /// Get the client id for the user assigned + /// identity + public UserAssignedIdentityProperty(string principalId = default(string), string clientId = default(string)) + { + PrincipalId = principalId; + ClientId = clientId; + CustomInit(); + } + + /// + /// An initialization method that performs custom operations like setting defaults + /// + partial void CustomInit(); + + /// + /// Gets get the principal id for the user assigned identity + /// + [JsonProperty(PropertyName = "principalId")] + public string PrincipalId { get; private set; } + + /// + /// Gets get the client id for the user assigned identity + /// + [JsonProperty(PropertyName = "clientId")] + public string ClientId { get; private set; } + + } +} diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SdkInfo_SignalRManagementClient.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SdkInfo_SignalRManagementClient.cs index 42fea96aac6e..5fd3d7120946 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SdkInfo_SignalRManagementClient.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SdkInfo_SignalRManagementClient.cs @@ -19,24 +19,13 @@ public static IEnumerable> ApiInfo_SignalRManageme { return new Tuple[] { - new Tuple("SignalRService", "Operations", "2020-05-01"), - new Tuple("SignalRService", "SignalR", "2020-05-01"), - new Tuple("SignalRService", "SignalRPrivateEndpointConnections", "2020-05-01"), - new Tuple("SignalRService", "SignalRPrivateLinkResources", "2020-05-01"), - new Tuple("SignalRService", "Usages", "2020-05-01"), + new Tuple("SignalRService", "Operations", "2020-07-01-preview"), + new Tuple("SignalRService", "SignalR", "2020-07-01-preview"), + new Tuple("SignalRService", "SignalRPrivateEndpointConnections", "2020-07-01-preview"), + new Tuple("SignalRService", "SignalRPrivateLinkResources", "2020-07-01-preview"), + new Tuple("SignalRService", "Usages", "2020-07-01-preview"), }.AsEnumerable(); } } - // BEGIN: Code Generation Metadata Section - public static readonly String AutoRestVersion = "v2"; - public static readonly String AutoRestBootStrapperVersion = "autorest@1.9.1"; - public static readonly String AutoRestCmdExecuted = "cmd.exe /c autorest.cmd https://github.com/Azure/azure-rest-api-specs/blob/master/specification/signalr/resource-manager/readme.md --csharp --version=v2 --reflect-api-versions --csharp-sdks-folder=D:\\workspace\\github\\juniwang\\azure-sdk-for-net\\sdk"; - public static readonly String GithubForkName = "Azure"; - public static readonly String GithubBranchName = "master"; - public static readonly String GithubCommidId = "5dd684b32ab297eb1b3a9bb00c432ede348eaddb"; - public static readonly String CodeGenerationErrors = ""; - public static readonly String GithubRepoName = "azure-rest-api-specs"; - // END: Code Generation Metadata Section } } - diff --git a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SignalRManagementClient.cs b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SignalRManagementClient.cs index 1dadac2aae51..8aac10fa65be 100644 --- a/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SignalRManagementClient.cs +++ b/sdk/signalr/Microsoft.Azure.Management.SignalR/src/Generated/SignalRManagementClient.cs @@ -348,7 +348,7 @@ private void Initialize() SignalRPrivateLinkResources = new SignalRPrivateLinkResourcesOperations(this); Usages = new UsagesOperations(this); BaseUri = new System.Uri("https://management.azure.com"); - ApiVersion = "2020-05-01"; + ApiVersion = "2020-07-01-preview"; AcceptLanguage = "en-US"; LongRunningOperationRetryTimeout = 30; GenerateClientRequestId = true;