Skip to content

Commit

Permalink
Generated from a375a3a12494b681f53e3a1cbc62e8b4bea9ec50 (#3337)
Browse files Browse the repository at this point in the history
support subdomainsuffix parameter when create application
  • Loading branch information
AutorestCI authored May 31, 2019
1 parent cc86e7c commit 7dbf935
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/hdinsight/arm-hdinsight/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/hdinsight/arm-hdinsight",
"homepage": "https://github.com/azure/azure-sdk-for-js",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-js.git"
Expand Down
8 changes: 8 additions & 0 deletions sdk/hdinsight/arm-hdinsight/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -832,6 +832,14 @@ export interface ApplicationGetHttpsEndpoint {
* The public port to connect to.
*/
publicPort?: number;
/**
* The subDomainSuffix of the application and can not greater than 3 characters.
*/
subDomainSuffix?: string;
/**
* The value indicates whether to disable GatewayAuth.
*/
disableGatewayAuth?: boolean;
}

/**
Expand Down
12 changes: 12 additions & 0 deletions sdk/hdinsight/arm-hdinsight/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1435,6 +1435,18 @@ export const ApplicationGetHttpsEndpoint: msRest.CompositeMapper = {
type: {
name: "Number"
}
},
subDomainSuffix: {
serializedName: "subDomainSuffix",
type: {
name: "String"
}
},
disableGatewayAuth: {
serializedName: "disableGatewayAuth",
type: {
name: "Boolean"
}
}
}
}
Expand Down

0 comments on commit 7dbf935

Please sign in to comment.