Skip to content

Commit

Permalink
CodeGen from PR 15712 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
track2 modify appplatform readme.go.md (Azure#15712)
  • Loading branch information
SDKAuto committed Aug 20, 2021
1 parent cadd8b2 commit 1088af6
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion sdk/appplatform/arm-appplatform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/feature/v4/sdk/appplatform/arm-appplatform",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/appplatform/arm-appplatform",
"repository": {
"type": "git",
"url": "https://github.com/Azure/azure-sdk-for-js.git"
Expand Down
9 changes: 5 additions & 4 deletions sdk/appplatform/arm-appplatform/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -491,7 +491,7 @@ export interface TemporaryDisk {
*/
sizeInGB?: number;
/**
* Mount path of the temporary disk
* Mount path of the temporary disk. Default value: '/tmp'.
*/
mountPath?: string;
}
Expand Down Expand Up @@ -543,7 +543,7 @@ export interface AppResourceProperties {
*/
fqdn?: string;
/**
* Indicate if only https is allowed.
* Indicate if only https is allowed. Default value: false.
*/
httpsOnly?: boolean;
/**
Expand All @@ -560,7 +560,7 @@ export interface AppResourceProperties {
*/
persistentDisk?: PersistentDisk;
/**
* Indicate if end to end TLS is enabled.
* Indicate if end to end TLS is enabled. Default value: false.
*/
enableEndToEndTLS?: boolean;
}
Expand Down Expand Up @@ -920,7 +920,8 @@ export interface DeploymentSettings {
*/
environmentVariables?: { [propertyName: string]: string };
/**
* Runtime version. Possible values include: 'Java_8', 'Java_11', 'NetCore_31'
* Runtime version. Possible values include: 'Java_8', 'Java_11', 'NetCore_31'. Default value:
* 'Java_8'.
*/
runtimeVersion?: RuntimeVersion;
}
Expand Down
4 changes: 4 additions & 0 deletions sdk/appplatform/arm-appplatform/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -823,6 +823,7 @@ export const TemporaryDisk: msRest.CompositeMapper = {
},
mountPath: {
serializedName: "mountPath",
defaultValue: '/tmp',
type: {
name: "String"
}
Expand Down Expand Up @@ -908,6 +909,7 @@ export const AppResourceProperties: msRest.CompositeMapper = {
},
httpsOnly: {
serializedName: "httpsOnly",
defaultValue: false,
type: {
name: "Boolean"
}
Expand Down Expand Up @@ -935,6 +937,7 @@ export const AppResourceProperties: msRest.CompositeMapper = {
},
enableEndToEndTLS: {
serializedName: "enableEndToEndTLS",
defaultValue: false,
type: {
name: "Boolean"
}
Expand Down Expand Up @@ -1510,6 +1513,7 @@ export const DeploymentSettings: msRest.CompositeMapper = {
},
runtimeVersion: {
serializedName: "runtimeVersion",
defaultValue: 'Java_8',
type: {
name: "String"
}
Expand Down

0 comments on commit 1088af6

Please sign in to comment.