Skip to content

Commit b14c628

Browse files
author
SDKAuto
committed
CodeGen from PR 14749 in Azure/azure-rest-api-specs
Merge 6a5f970e9f7e2ed91bf0c11289daa8743f28e131 into 682c9680fd6ac7746d701bcf0c69948a3199671a
1 parent 33602ff commit b14c628

File tree

4 files changed

+4
-45
lines changed

4 files changed

+4
-45
lines changed

sdk/signalr/arm-signalr/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
"rollup-plugin-sourcemaps": "^0.4.2",
2828
"uglify-js": "^3.6.0"
2929
},
30-
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/signalr/arm-signalr",
30+
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/signalr/arm-signalr",
3131
"repository": {
3232
"type": "git",
3333
"url": "https://github.com/Azure/azure-sdk-for-js.git"

sdk/signalr/arm-signalr/src/models/index.ts

Lines changed: 2 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -618,7 +618,7 @@ export interface SignalRCorsSettings {
618618
}
619619

620620
/**
621-
* Feature of a resource, which controls the runtime behavior.
621+
* Feature of a SignalR resource, which controls the SignalR runtime behavior.
622622
*/
623623
export interface SignalRFeature {
624624
/**
@@ -695,7 +695,7 @@ export interface SignalRNetworkACLs {
695695
*/
696696
export interface SignalRTlsSettings {
697697
/**
698-
* Request client certificate during TLS handshake if enabled. Default value: true.
698+
* Request client certificate during TLS handshake if enabled
699699
*/
700700
clientCertEnabled?: boolean;
701701
}
@@ -791,25 +791,6 @@ export interface SignalRResource extends TrackedResource {
791791
* Network ACLs
792792
*/
793793
networkACLs?: SignalRNetworkACLs;
794-
/**
795-
* Enable or disable public network access. Default to "Enabled".
796-
* When it's Enabled, network ACLs still apply.
797-
* When it's Disabled, public network access is always disabled no matter what you set in network
798-
* ACLs. Default value: 'Enabled'.
799-
*/
800-
publicNetworkAccess?: string;
801-
/**
802-
* DisableLocalAuth
803-
* Enable or disable local auth with AccessKey
804-
* When set as true, connection with AccessKey=xxx won't work. Default value: false.
805-
*/
806-
disableLocalAuth?: boolean;
807-
/**
808-
* DisableLocalAuth
809-
* Enable or disable aad auth
810-
* When set as true, connection with AuthType=aad won't work. Default value: false.
811-
*/
812-
disableAadAuth?: boolean;
813794
/**
814795
* The kind of the service - e.g. "SignalR" for "Microsoft.SignalRService/SignalR". Possible
815796
* values include: 'SignalR', 'RawWebSockets'

sdk/signalr/arm-signalr/src/models/mappers.ts

Lines changed: 0 additions & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,6 @@ export const SignalRTlsSettings: msRest.CompositeMapper = {
10531053
modelProperties: {
10541054
clientCertEnabled: {
10551055
serializedName: "clientCertEnabled",
1056-
defaultValue: true,
10571056
type: {
10581057
name: "Boolean"
10591058
}
@@ -1212,27 +1211,6 @@ export const SignalRResource: msRest.CompositeMapper = {
12121211
className: "SignalRNetworkACLs"
12131212
}
12141213
},
1215-
publicNetworkAccess: {
1216-
serializedName: "properties.publicNetworkAccess",
1217-
defaultValue: 'Enabled',
1218-
type: {
1219-
name: "String"
1220-
}
1221-
},
1222-
disableLocalAuth: {
1223-
serializedName: "properties.disableLocalAuth",
1224-
defaultValue: false,
1225-
type: {
1226-
name: "Boolean"
1227-
}
1228-
},
1229-
disableAadAuth: {
1230-
serializedName: "properties.disableAadAuth",
1231-
defaultValue: false,
1232-
type: {
1233-
name: "Boolean"
1234-
}
1235-
},
12361214
kind: {
12371215
serializedName: "kind",
12381216
type: {

sdk/signalr/arm-signalr/src/signalRManagementClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class SignalRManagementClientContext extends msRestAzure.AzureServiceClie
5050

5151
super(credentials, options);
5252

53-
this.apiVersion = '2021-06-01-preview';
53+
this.apiVersion = '2021-04-01-preview';
5454
this.acceptLanguage = 'en-US';
5555
this.longRunningOperationRetryTimeout = 30;
5656
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";

0 commit comments

Comments
 (0)