Skip to content

Commit

Permalink
CodeGen from PR 13256 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
Merge 9af268616b1352b30dbf2245f185e53ecbfadc2f into 80e4e1b77162711ca1123042f50db03ffbf1bb40
  • Loading branch information
SDKAuto committed Mar 4, 2021
1 parent ab2d688 commit 7cf06a1
Show file tree
Hide file tree
Showing 11 changed files with 79 additions and 20 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -37,25 +37,25 @@ export class AppPlatformManagementClientContext extends msRestAzure.AzureService
if (!options) {
options = {};
}
if (!options.userAgent) {
if(!options.userAgent) {
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
}

super(credentials, options);

this.apiVersion = '2020-11-01-preview';
this.apiVersion = '2021-03-03-preview';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
this.requestContentType = "application/json; charset=utf-8";
this.credentials = credentials;
this.subscriptionId = subscriptionId;

if (options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
if(options.acceptLanguage !== null && options.acceptLanguage !== undefined) {
this.acceptLanguage = options.acceptLanguage;
}
if (options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
if(options.longRunningOperationRetryTimeout !== null && options.longRunningOperationRetryTimeout !== undefined) {
this.longRunningOperationRetryTimeout = options.longRunningOperationRetryTimeout;
}
}
Expand Down
1 change: 1 addition & 0 deletions sdk/appplatform/arm-appplatform/src/models/appsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ResourceUploadDefinition,
ServiceResource,
Sku,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
40 changes: 30 additions & 10 deletions sdk/appplatform/arm-appplatform/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -120,11 +120,11 @@ export interface ClusterResourceProperties {
*/
export interface Sku {
/**
* Name of the Sku
* Name of the Sku. Default value: 'S0'.
*/
name?: string;
/**
* Tier of the Sku
* Tier of the Sku. Default value: 'Standard'.
*/
tier?: string;
/**
Expand Down Expand Up @@ -417,7 +417,7 @@ export interface MonitoringSettingProperties {
error?: ErrorModel;
/**
* Indicates whether enable the trace functionality, which will be deprecated since api version
* 2020-11-01-preview. Please leverage appInsightsInstrumentationKey to indicate if
* 2021-03-03-preview. Please leverage appInsightsInstrumentationKey to indicate if
* monitoringSettings enabled or not
*/
traceEnabled?: boolean;
Expand Down Expand Up @@ -546,10 +546,6 @@ export interface AppResourceProperties {
* Indicate if only https is allowed.
*/
httpsOnly?: boolean;
/**
* Indicate if end to end TLS is enabled.
*/
enableEndToEndTLS?: boolean;
/**
* Date time when the resource is created
* **NOTE: This property will not be serialized. It can only be populated by the server.**
Expand All @@ -563,6 +559,10 @@ export interface AppResourceProperties {
* Persistent disk settings
*/
persistentDisk?: PersistentDisk;
/**
* Indicate if end to end TLS is enabled.
*/
enableEndToEndTLS?: boolean;
}

/**
Expand Down Expand Up @@ -822,20 +822,40 @@ export interface UserSourceInfo {
artifactSelector?: string;
}

/**
* Deployment resource request payload
*/
export interface ResourceRequest {
/**
* Required CPU, 1c can be represent by 1 or 1000m, basic tier should be 500m or 1, standard tier
* should be 500m or the value in range (1, 4).
*/
cpu?: string;
/**
* Required Memory size, 1GB can be represent by 1Gi or 1024Mi, basic tier should be 500m or the
* value in range (1, 2), standard tier should be 500m or the value in range (1, 8).
*/
memory?: string;
}

/**
* Deployment settings payload
*/
export interface DeploymentSettings {
/**
* Required CPU, basic tier should be 1, standard tier should be in range (1, 4). Default value:
* 1.
* Required CPU, basic tier should be 1, standard tier should be in range (1, 4), it will be
* deprecated since api version 2021-03-03-preview. Default value: 1.
*/
cpu?: number;
/**
* Required Memory size in GB, basic tier should be in range (1, 2), standard tier should be in
* range (1, 8). Default value: 1.
* range (1, 8), it will be deprecated since api version 2021-03-03-preview. Default value: 1.
*/
memoryInGB?: number;
/**
* The request of quantity for cpu and memory size.
*/
resourceRequest?: ResourceRequest;
/**
* JVM parameter
*/
Expand Down
43 changes: 37 additions & 6 deletions sdk/appplatform/arm-appplatform/src/models/mappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -196,12 +196,14 @@ export const Sku: msRest.CompositeMapper = {
modelProperties: {
name: {
serializedName: "name",
defaultValue: 'S0',
type: {
name: "String"
}
},
tier: {
serializedName: "tier",
defaultValue: 'Standard',
type: {
name: "String"
}
Expand Down Expand Up @@ -910,12 +912,6 @@ export const AppResourceProperties: msRest.CompositeMapper = {
name: "Boolean"
}
},
enableEndToEndTLS: {
serializedName: "enableEndToEndTLS",
type: {
name: "Boolean"
}
},
createdTime: {
readOnly: true,
serializedName: "createdTime",
Expand All @@ -936,6 +932,12 @@ export const AppResourceProperties: msRest.CompositeMapper = {
name: "Composite",
className: "PersistentDisk"
}
},
enableEndToEndTLS: {
serializedName: "enableEndToEndTLS",
type: {
name: "Boolean"
}
}
}
}
Expand Down Expand Up @@ -1354,6 +1356,28 @@ export const UserSourceInfo: msRest.CompositeMapper = {
}
};

export const ResourceRequest: msRest.CompositeMapper = {
serializedName: "ResourceRequest",
type: {
name: "Composite",
className: "ResourceRequest",
modelProperties: {
cpu: {
serializedName: "cpu",
type: {
name: "String"
}
},
memory: {
serializedName: "memory",
type: {
name: "String"
}
}
}
}
};

export const DeploymentSettings: msRest.CompositeMapper = {
serializedName: "DeploymentSettings",
type: {
Expand All @@ -1374,6 +1398,13 @@ export const DeploymentSettings: msRest.CompositeMapper = {
name: "Number"
}
},
resourceRequest: {
serializedName: "resourceRequest",
type: {
name: "Composite",
className: "ResourceRequest"
}
},
jvmOptions: {
serializedName: "jvmOptions",
type: {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export {
ProxyResource,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
Sku,
TemporaryDisk,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ export {
RegenerateTestKeyRequestPayload,
RequiredTraffic,
Resource,
ResourceRequest,
ServiceResource,
ServiceResourceList,
Sku,
Expand Down

0 comments on commit 7cf06a1

Please sign in to comment.