Skip to content

Commit

Permalink
CodeGen from PR 11823 in Azure/azure-rest-api-specs
Browse files Browse the repository at this point in the history
[Hub Generated] Review request for Microsoft.AppPlatform to add version preview/2020-11-01-preview (Azure#11823)

* Adds base for updating Microsoft.AppPlatform from version stable/2020-07-01 to version 2020-11-01-preview

* Updates readme

* Updates API version in new specs and examples

* Introduce additional change to 2020-11-01-preview.

* Additional properties to monitoringSettings.
* Readonly properties to requiredTraffics.

Signed-off-by: Pan Li <panli@microsoft.com>

* Make credscan happy.

Signed-off-by: Pan Li <panli@microsoft.com>
  • Loading branch information
SDKAuto committed Dec 22, 2020
1 parent f558cff commit dfdc0cf
Show file tree
Hide file tree
Showing 30 changed files with 800 additions and 90 deletions.
9 changes: 4 additions & 5 deletions sdk/appplatform/arm-appplatform/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-appplatform

### How to use

#### nodejs - Authentication, client creation and get services as an example written in TypeScript.
#### nodejs - client creation and get services as an example written in TypeScript.

##### Install @azure/ms-rest-nodeauth

Expand All @@ -26,11 +26,10 @@ npm install @azure/ms-rest-nodeauth@"^3.0.0"

##### Sample code

While the below sample uses the interactive login, other authentication options can be found in the [README.md file of @azure/ms-rest-nodeauth](https://www.npmjs.com/package/@azure/ms-rest-nodeauth) package
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { AppPlatformManagementClient, AppPlatformManagementModels, AppPlatformManagementMappers } from "@azure/arm-appplatform";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { AppPlatformManagementClient } = require("@azure/arm-appplatform");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
4 changes: 2 additions & 2 deletions sdk/appplatform/arm-appplatform/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ const config = {
"@azure/ms-rest-azure-js": "msRestAzure"
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand All @@ -26,6 +25,7 @@ class AppPlatformManagementClient extends AppPlatformManagementClientContext {
customDomains: operations.CustomDomains;
deployments: operations.Deployments;
operations: operations.Operations;
runtimeVersions: operations.RuntimeVersions;
skus: operations.Skus;

/**
Expand All @@ -46,6 +46,7 @@ class AppPlatformManagementClient extends AppPlatformManagementClientContext {
this.customDomains = new operations.CustomDomains(this);
this.deployments = new operations.Deployments(this);
this.operations = new operations.Operations(this);
this.runtimeVersions = new operations.RuntimeVersions(this);
this.skus = new operations.Skus(this);
}
}
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,6 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
Expand Down Expand Up @@ -45,7 +44,7 @@ export class AppPlatformManagementClientContext extends msRestAzure.AzureService

super(credentials, options);

this.apiVersion = '2020-07-01';
this.apiVersion = '2020-11-01-preview';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
7 changes: 5 additions & 2 deletions sdk/appplatform/arm-appplatform/src/models/appsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceCollection,
AppResourceProperties,
Expand Down Expand Up @@ -35,8 +36,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ResourceUploadDefinition,
ServiceResource,
Expand Down
7 changes: 5 additions & 2 deletions sdk/appplatform/arm-appplatform/src/models/bindingsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceProperties,
BaseResource,
Expand All @@ -33,8 +34,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ServiceResource,
Sku,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceProperties,
BaseResource,
Expand All @@ -33,8 +34,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ServiceResource,
Sku,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceProperties,
BaseResource,
Expand All @@ -20,6 +21,8 @@ export {
ConfigServerProperties,
ConfigServerResource,
ConfigServerSettings,
ConfigServerSettingsErrorRecord,
ConfigServerSettingsValidateResult,
CustomDomainProperties,
CustomDomainResource,
DeploymentInstance,
Expand All @@ -32,8 +35,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ServiceResource,
Sku,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceProperties,
BaseResource,
Expand All @@ -33,8 +34,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ServiceResource,
Sku,
Expand Down
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
* Copyright (c) Microsoft Corporation.
* Licensed under the MIT License.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
ApplicationInsightsAgentVersions,
AppResource,
AppResourceProperties,
BaseResource,
Expand Down Expand Up @@ -34,8 +35,10 @@ export {
MonitoringSettingProperties,
MonitoringSettingResource,
NetworkProfile,
NetworkProfileOutboundIPs,
PersistentDisk,
ProxyResource,
RequiredTraffic,
Resource,
ServiceResource,
Sku,
Expand Down
Loading

0 comments on commit dfdc0cf

Please sign in to comment.