Skip to content

Commit

Permalink
Generated from dced4d3ce701aa65202949eaf94cb293d602b1f3
Browse files Browse the repository at this point in the history
  • Loading branch information
SDK Automation committed Nov 5, 2020
1 parent 82ff76f commit 782c9e5
Show file tree
Hide file tree
Showing 25 changed files with 5,130 additions and 346 deletions.
9 changes: 4 additions & 5 deletions sdk/avs/arm-avs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ npm install @azure/arm-avs

### How to use

#### nodejs - Authentication, client creation and list operations as an example written in TypeScript.
#### nodejs - client creation and list operations 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 { AvsClient, AvsModels, AvsMappers } from "@azure/arm-avs";
const msRestNodeAuth = require("@azure/ms-rest-nodeauth");
const { AvsClient } = require("@azure/arm-avs");
const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];

msRestNodeAuth.interactiveLogin().then((creds) => {
Expand Down
2 changes: 1 addition & 1 deletion sdk/avs/arm-avs/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"name": "@azure/arm-avs",
"author": "Microsoft Corporation",
"description": "AvsClient Library with typescript type definitions for node.js and browser.",
"version": "1.0.0",
"version": "0.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/avs/arm-avs/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
9 changes: 6 additions & 3 deletions sdk/avs/arm-avs/src/avsClient.ts
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 @@ -23,6 +22,8 @@ class AvsClient extends AvsClientContext {
clusters: operations.Clusters;
hcxEnterpriseSites: operations.HcxEnterpriseSites;
authorizations: operations.Authorizations;
globalReachConnections: operations.GlobalReachConnections;
workloadNetworks: operations.WorkloadNetworks;

/**
* Initializes a new instance of the AvsClient class.
Expand All @@ -38,6 +39,8 @@ class AvsClient extends AvsClientContext {
this.clusters = new operations.Clusters(this);
this.hcxEnterpriseSites = new operations.HcxEnterpriseSites(this);
this.authorizations = new operations.Authorizations(this);
this.globalReachConnections = new operations.GlobalReachConnections(this);
this.workloadNetworks = new operations.WorkloadNetworks(this);
}
}

Expand Down
15 changes: 7 additions & 8 deletions sdk/avs/arm-avs/src/avsClientContext.ts
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-avs";
const packageVersion = "1.0.0";
const packageVersion = "0.1.0";

export class AvsClientContext extends msRestAzure.AzureServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand All @@ -37,25 +36,25 @@ export class AvsClientContext extends msRestAzure.AzureServiceClient {
if (!options) {
options = {};
}
if (!options.userAgent) {
if(!options.userAgent) {
const defaultUserAgent = msRestAzure.getDefaultUserAgentValue();
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
}

super(credentials, options);

this.apiVersion = '2020-03-20';
this.apiVersion = '2020-07-17-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
19 changes: 15 additions & 4 deletions sdk/avs/arm-avs/src/models/authorizationsMappers.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
/*
* 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 {
discriminators,
BaseResource,
Circuit,
CloudError,
Cluster,
ClusterUpdateProperties,
CommonClusterProperties,
Endpoints,
ErrorAdditionalInfo,
ErrorResponse,
ExpressRouteAuthorization,
ExpressRouteAuthorizationList,
GlobalReachConnection,
HcxEnterpriseSite,
IdentitySource,
ManagementCluster,
PrivateCloud,
ProxyResource,
Resource,
Sku,
TrackedResource
TrackedResource,
WorkloadNetworkDhcp,
WorkloadNetworkGateway,
WorkloadNetworkPortMirroring,
WorkloadNetworkSegment,
WorkloadNetworkSegmentPortVif,
WorkloadNetworkSegmentSubnet,
WorkloadNetworkVirtualMachine,
WorkloadNetworkVMGroup
} from "../models/mappers";
19 changes: 15 additions & 4 deletions sdk/avs/arm-avs/src/models/clustersMappers.ts
Original file line number Diff line number Diff line change
@@ -1,28 +1,39 @@
/*
* 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 {
discriminators,
BaseResource,
Circuit,
CloudError,
Cluster,
ClusterList,
ClusterUpdate,
ClusterUpdateProperties,
CommonClusterProperties,
Endpoints,
ErrorAdditionalInfo,
ErrorResponse,
ExpressRouteAuthorization,
GlobalReachConnection,
HcxEnterpriseSite,
IdentitySource,
ManagementCluster,
PrivateCloud,
ProxyResource,
Resource,
Sku,
TrackedResource
TrackedResource,
WorkloadNetworkDhcp,
WorkloadNetworkGateway,
WorkloadNetworkPortMirroring,
WorkloadNetworkSegment,
WorkloadNetworkSegmentPortVif,
WorkloadNetworkSegmentSubnet,
WorkloadNetworkVirtualMachine,
WorkloadNetworkVMGroup
} from "../models/mappers";
38 changes: 38 additions & 0 deletions sdk/avs/arm-avs/src/models/globalReachConnectionsMappers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* 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 {
discriminators,
BaseResource,
Circuit,
CloudError,
Cluster,
CommonClusterProperties,
Endpoints,
ErrorAdditionalInfo,
ErrorResponse,
ExpressRouteAuthorization,
GlobalReachConnection,
GlobalReachConnectionList,
HcxEnterpriseSite,
IdentitySource,
ManagementCluster,
PrivateCloud,
ProxyResource,
Resource,
Sku,
TrackedResource,
WorkloadNetworkDhcp,
WorkloadNetworkGateway,
WorkloadNetworkPortMirroring,
WorkloadNetworkSegment,
WorkloadNetworkSegmentPortVif,
WorkloadNetworkSegmentSubnet,
WorkloadNetworkVirtualMachine,
WorkloadNetworkVMGroup
} from "../models/mappers";
19 changes: 15 additions & 4 deletions sdk/avs/arm-avs/src/models/hcxEnterpriseSitesMappers.ts
Original file line number Diff line number Diff line change
@@ -1,27 +1,38 @@
/*
* 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 {
discriminators,
BaseResource,
Circuit,
CloudError,
Cluster,
ClusterUpdateProperties,
CommonClusterProperties,
Endpoints,
ErrorAdditionalInfo,
ErrorResponse,
ExpressRouteAuthorization,
GlobalReachConnection,
HcxEnterpriseSite,
HcxEnterpriseSiteList,
IdentitySource,
ManagementCluster,
PrivateCloud,
ProxyResource,
Resource,
Sku,
TrackedResource
TrackedResource,
WorkloadNetworkDhcp,
WorkloadNetworkGateway,
WorkloadNetworkPortMirroring,
WorkloadNetworkSegment,
WorkloadNetworkSegmentPortVif,
WorkloadNetworkSegmentSubnet,
WorkloadNetworkVirtualMachine,
WorkloadNetworkVMGroup
} from "../models/mappers";
Loading

0 comments on commit 782c9e5

Please sign in to comment.