Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[AutoPR monitor/resource-manager] new application insignts api version for unified schema in action #1361

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/@azure/arm-monitor/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) 2019 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
8 changes: 4 additions & 4 deletions packages/@azure/arm-monitor/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ This package contains an isomorphic SDK for MonitorManagementClient.

### How to Install

```
```bash
npm install @azure/arm-monitor
```

Expand All @@ -19,13 +19,13 @@ npm install @azure/arm-monitor

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

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

##### Sample code

```ts
```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";
Expand All @@ -48,7 +48,7 @@ msRestNodeAuth.interactiveLogin().then((creds) => {

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

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

Expand Down
4 changes: 4 additions & 0 deletions packages/@azure/arm-monitor/lib/models/actionGroupsMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,10 @@ export {
LogToMetricAction,
Criteria,
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo,
RuleMetricDataSource,
RuleManagementEventDataSource,
RuleManagementEventClaimsDataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ export {
LogToMetricAction,
Criteria,
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo,
RuleMetricDataSource,
RuleManagementEventDataSource,
RuleManagementEventClaimsDataSource,
Expand Down
6 changes: 5 additions & 1 deletion packages/@azure/arm-monitor/lib/models/alertRulesMappers.ts
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,10 @@ export {
LogMetricTrigger,
LogToMetricAction,
Criteria,
Dimension
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo
} from "../models/mappers";

Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,10 @@ export {
LogToMetricAction,
Criteria,
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo,
RuleMetricDataSource,
RuleManagementEventDataSource,
RuleManagementEventClaimsDataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ export {
LogToMetricAction,
Criteria,
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo,
RuleMetricDataSource,
RuleManagementEventDataSource,
RuleManagementEventClaimsDataSource,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,6 +72,10 @@ export {
LogToMetricAction,
Criteria,
Dimension,
ProxyResource,
VMInsightsOnboardingStatus,
DataContainer,
WorkspaceInfo,
RuleMetricDataSource,
RuleManagementEventDataSource,
RuleManagementEventClaimsDataSource,
Expand Down
Loading