Skip to content

Commit

Permalink
Generated from b905e7cfd4fa1d5c526ba8219dc6a8429b700414
Browse files Browse the repository at this point in the history
Fix most validation issues
  • Loading branch information
SDK Automation committed Feb 28, 2020
1 parent 4714b25 commit e5a871b
Show file tree
Hide file tree
Showing 15 changed files with 2,444 additions and 118 deletions.
2 changes: 1 addition & 1 deletion sdk/operationalinsights/loganalytics/LICENSE.txt
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
The MIT License (MIT)

Copyright (c) 2018 Microsoft
Copyright (c) 2020 Microsoft

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
36 changes: 15 additions & 21 deletions sdk/operationalinsights/loganalytics/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,23 +9,24 @@ This package contains an isomorphic SDK for LogAnalyticsClient.

### How to Install

```
```bash
npm install @azure/loganalytics
```

### How to use

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

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

```
npm install @azure/ms-rest-nodeauth
- Please install minimum version of `"@azure/ms-rest-nodeauth": "^3.0.0"`.
```bash
npm install @azure/ms-rest-nodeauth@"^3.0.0"
```

##### Sample code

```ts
```typescript
import * as msRest from "@azure/ms-rest-js";
import * as msRestNodeAuth from "@azure/ms-rest-nodeauth";
import { LogAnalyticsClient, LogAnalyticsModels, LogAnalyticsMappers } from "@azure/loganalytics";
Expand All @@ -34,12 +35,9 @@ const subscriptionId = process.env["AZURE_SUBSCRIPTION_ID"];
msRestNodeAuth.interactiveLogin().then((creds) => {
const client = new LogAnalyticsClient(creds, subscriptionId);
const workspaceId = "testworkspaceId";
const body: LogAnalyticsModels.QueryBody = {
query: "testquery",
timespan: "testtimespan",
workspaces: ["testworkspaces"]
};
client.query.execute(workspaceId, body).then((result) => {
const queryParameter = "testqueryParameter";
const timespan = "P1Y2M3DT4H5M6S";
client.get.query(workspaceId, queryParameter, timespan).then((result) => {
console.log("The result is:");
console.log(result);
});
Expand All @@ -48,11 +46,11 @@ msRestNodeAuth.interactiveLogin().then((creds) => {
});
```

#### browser - Authentication, client creation and execute query as an example written in JavaScript.
#### browser - Authentication, client creation and query get as an example written in JavaScript.

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

```
```bash
npm install @azure/ms-rest-browserauth
```

Expand Down Expand Up @@ -82,12 +80,9 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to
}
const client = new Azure.Loganalytics.LogAnalyticsClient(res.creds, subscriptionId);
const workspaceId = "testworkspaceId";
const body = {
query: "testquery",
timespan: "testtimespan",
workspaces: ["testworkspaces"]
};
client.query.execute(workspaceId, body).then((result) => {
const queryParameter = "testqueryParameter";
const timespan = "P1Y2M3DT4H5M6S";
client.get.query(workspaceId, queryParameter, timespan).then((result) => {
console.log("The result is:");
console.log(result);
}).catch((err) => {
Expand All @@ -105,5 +100,4 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to

- [Microsoft Azure SDK for Javascript](https://github.com/Azure/azure-sdk-for-js)


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Foperationalinsights%2Floganalytics%2FREADME.png)
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/operationalinsights/loganalytics/README.png)
20 changes: 11 additions & 9 deletions sdk/operationalinsights/loganalytics/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
"description": "LogAnalyticsClient Library with typescript type definitions for node.js and browser.",
"version": "0.2.0",
"dependencies": {
"@azure/ms-rest-js": "^1.1.0",
"tslib": "^1.9.3"
"@azure/ms-rest-js": "^2.0.4",
"tslib": "^1.10.0"
},
"keywords": [
"node",
Expand All @@ -19,18 +19,19 @@
"module": "./esm/logAnalyticsClient.js",
"types": "./esm/logAnalyticsClient.d.ts",
"devDependencies": {
"typescript": "^3.1.1",
"rollup": "^0.66.2",
"rollup-plugin-node-resolve": "^3.4.0",
"uglify-js": "^3.4.9"
"typescript": "^3.5.3",
"rollup": "^1.18.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/operationalinsights/loganalytics",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/operationalinsights/loganalytics",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-js.git"
"url": "https://github.com/Azure/azure-sdk-for-js.git"
},
"bugs": {
"url": "https://github.com/azure/azure-sdk-for-js/issues"
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
"files": [
"dist/**/*.js",
Expand All @@ -42,6 +43,7 @@
"esm/**/*.d.ts",
"esm/**/*.d.ts.map",
"src/**/*.ts",
"README.md",
"rollup.config.js",
"tsconfig.json"
],
Expand Down
22 changes: 14 additions & 8 deletions sdk/operationalinsights/loganalytics/rollup.config.js
Original file line number Diff line number Diff line change
@@ -1,10 +1,16 @@
import rollup from "rollup";
import nodeResolve from "rollup-plugin-node-resolve";
import sourcemaps from "rollup-plugin-sourcemaps";

/**
* @type {import('rollup').RollupFileOptions}
* @type {rollup.RollupFileOptions}
*/
const config = {
input: './esm/logAnalyticsClient.js',
external: ["@azure/ms-rest-js", "@azure/ms-rest-azure-js"],
input: "./esm/logAnalyticsClient.js",
external: [
"@azure/ms-rest-js",
"@azure/ms-rest-azure-js"
],
output: {
file: "./dist/loganalytics.js",
format: "umd",
Expand All @@ -16,16 +22,16 @@ const config = {
},
banner: `/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for
* license information.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is
* regenerated.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/`
},
plugins: [
nodeResolve({ module: true })
nodeResolve({ mainFields: ['module', 'main'] }),
sourcemaps()
]
};

export default config;
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ import { LogAnalyticsClientContext } from "./logAnalyticsClientContext";

class LogAnalyticsClient extends LogAnalyticsClientContext {
// Operation groups
query: operations.Query;
get: operations.Get;
post: operations.Post;

/**
* Initializes a new instance of the LogAnalyticsClient class.
Expand All @@ -25,7 +26,8 @@ class LogAnalyticsClient extends LogAnalyticsClientContext {
*/
constructor(credentials: msRest.ServiceClientCredentials, options?: Models.LogAnalyticsClientOptions) {
super(credentials, options);
this.query = new operations.Query(this);
this.get = new operations.Get(this);
this.post = new operations.Post(this);
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import * as msRest from "@azure/ms-rest-js";
import * as Models from "./models";

const packageName = "@azure/loganalytics";
const packageVersion = "0.1.0";
const packageVersion = "0.2.0";

export class LogAnalyticsClientContext extends msRest.ServiceClient {
credentials: msRest.ServiceClientCredentials;
Expand All @@ -23,23 +23,23 @@ export class LogAnalyticsClientContext extends msRest.ServiceClient {
* @param [options] The parameter options
*/
constructor(credentials: msRest.ServiceClientCredentials, options?: Models.LogAnalyticsClientOptions) {
if (credentials === null || credentials === undefined) {
throw new Error('\'credentials\' cannot be null.');
if (credentials == undefined) {
throw new Error("'credentials' cannot be null.");
}

if (!options) {
options = {};
}
if(!options.userAgent) {

if (!options.userAgent) {
const defaultUserAgent = msRest.getDefaultUserAgentValue();
options.userAgent = `${packageName}/${packageVersion} ${defaultUserAgent}`;
}

super(credentials, options);

this.baseUri = options.baseUri || this.baseUri || "https://api.loganalytics.io";
this.baseUri = options.baseUri || this.baseUri || "https://api.loganalytics.io/v1";
this.requestContentType = "application/json; charset=utf-8";
this.credentials = credentials;

}
}
38 changes: 38 additions & 0 deletions sdk/operationalinsights/loganalytics/src/models/getMappers.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License. See License.txt in the project root for license information.
*
* Code generated by Microsoft (R) AutoRest Code Generator.
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
*/

export {
Column,
ErrorDetail,
ErrorInfo,
ErrorResponse,
MetadataApplication,
MetadataApplicationRelated,
MetadataCategory,
MetadataCategoryRelated,
MetadataFunction,
MetadataFunctionRelated,
MetadataPermissions,
MetadataPermissionsApplicationsItem,
MetadataPermissionsResourcesItem,
MetadataPermissionsWorkspacesItem,
MetadataQuery,
MetadataQueryRelated,
MetadataResourceType,
MetadataResourceTypeRelated,
MetadataResults,
MetadataSolution,
MetadataSolutionRelated,
MetadataTable,
MetadataTableColumnsItem,
MetadataTableRelated,
MetadataWorkspace,
MetadataWorkspaceRelated,
QueryResults,
Table
} from "../models/mappers";
Loading

0 comments on commit e5a871b

Please sign in to comment.