Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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