Skip to content

Commit

Permalink
arm-appplatform-release (Azure#13025)
Browse files Browse the repository at this point in the history
  • Loading branch information
colawwj committed Dec 29, 2020
1 parent 5d922f7 commit 9031d2e
Show file tree
Hide file tree
Showing 31 changed files with 805 additions and 95 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
2 changes: 1 addition & 1 deletion sdk/appplatform/arm-appplatform/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-appplatform",
"author": "Microsoft Corporation",
"description": "AppPlatformManagementClient Library with typescript type definitions for node.js and browser.",
"version": "1.0.0",
"version": "1.1.0",
"dependencies": {
"@azure/ms-rest-azure-js": "^2.0.1",
"@azure/ms-rest-js": "^2.0.4",
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 All @@ -13,7 +12,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as msRestAzure from "@azure/ms-rest-azure-js";

const packageName = "@azure/arm-appplatform";
const packageVersion = "1.0.0";
const packageVersion = "1.1.0";

export class AppPlatformManagementClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand All @@ -38,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-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";
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
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 9031d2e

Please sign in to comment.