Skip to content
Closed
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
16 changes: 3 additions & 13 deletions sdk/applicationinsights/arm-appinsights/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,18 +1,8 @@
# Release History

## 5.0.0-beta.5 (2022-06-28)

## 5.0.0-beta.5 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 5.0.0-beta.4 (2022-06-01)

The package of @azure/arm-appinsights is using our next generation design principles since version 5.0.0-beta.4, which contains breaking changes.
The package of @azure/arm-appinsights is using our next generation design principles since version 5.0.0-beta.5, which contains breaking changes.

To understand the detail of the change, please refer to [Changelog](https://aka.ms/js-track2-changelog).

Expand Down
8 changes: 4 additions & 4 deletions sdk/applicationinsights/arm-appinsights/_meta.json
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{
"commit": "261f2cd5b009f319d44149da020c42e3d0832a7a",
"commit": "fc4b41e225c286a7532e0ed9a838a95975d663f8",
"readme": "specification/applicationinsights/resource-manager/readme.md",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=D:\\Git\\azure-sdk-for-js ..\\azure-rest-api-specs\\specification\\applicationinsights\\resource-manager\\readme.md --use=@autorest/typescript@6.0.0-beta.20",
"autorest_command": "autorest --version=3.7.3 --typescript --modelerfour.lenient-model-deduplication --head-as-boolean=true --license-header=MICROSOFT_MIT_NO_VERSION --generate-test --typescript-sdks-folder=/mnt/vss/_work/1/s/azure-sdk-for-js ../azure-rest-api-specs/specification/applicationinsights/resource-manager/readme.md --use=@autorest/typescript@6.0.0-alpha.19.20220425.1",
"repository_url": "https://github.com/Azure/azure-rest-api-specs.git",
"release_tool": "@azure-tools/js-sdk-release-tools@2.3.0",
"use": "@autorest/typescript@6.0.0-beta.20"
"release_tool": "@azure-tools/js-sdk-release-tools@2.3.2",
"use": "@autorest/typescript@6.0.0-alpha.19.20220425.1"
}
4 changes: 1 addition & 3 deletions sdk/applicationinsights/arm-appinsights/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,6 @@
"@azure-tools/test-recorder": "^2.0.0",
"@azure-tools/test-credential": "^1.0.0",
"mocha": "^7.1.1",
"@types/chai": "^4.2.8",
"chai": "^4.2.0",
"cross-env": "^7.0.2",
"@azure/dev-tool": "^1.0.0"
},
Expand Down Expand Up @@ -109,4 +107,4 @@
]
},
"autoPublish": true
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -1224,7 +1224,7 @@ export interface ProactiveDetectionConfigurationsUpdateOptionalParams extends co
export type ProactiveDetectionConfigurationsUpdateResponse = ApplicationInsightsComponentProactiveDetectionConfiguration;

// @public
export type ProxyResource = Resource;
export type ProxyResource = Resource & {};

// @public
export type PublicNetworkAccessType = string;
Expand Down Expand Up @@ -1453,7 +1453,7 @@ export type WorkbookResource = TrackedResource & {
};

// @public
export type WorkbookResourceIdentity = ManagedServiceIdentity;
export type WorkbookResourceIdentity = ManagedServiceIdentity & {};

// @public
export interface Workbooks {
Expand Down
4 changes: 2 additions & 2 deletions sdk/applicationinsights/arm-appinsights/src/models/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1232,7 +1232,7 @@ export type MyWorkbook = MyWorkbookResource & {
};

/** Identity used for BYOS */
export type WorkbookResourceIdentity = ManagedServiceIdentity;
export type WorkbookResourceIdentity = ManagedServiceIdentity & {};

/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
export type TrackedResource = Resource & {
Expand All @@ -1243,7 +1243,7 @@ export type TrackedResource = Resource & {
};

/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
export type ProxyResource = Resource;
export type ProxyResource = Resource & {};

/** An Application Insights component definition. */
export type ApplicationInsightsComponent = ComponentsResource & {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -251,6 +251,10 @@ export class ComponentsImpl implements Components {
* should batch the execution of purge requests by sending a single command whose predicate includes
* all user identities that require purging. Use the in operator to specify multiple identities. You
* should run the query prior to using for a purge request to verify that the results are expected.
* Note: this operation is intended for Classic resources, for workspace-based Application Insights
* resource please run purge operation (directly on the
* workspace)(https://docs.microsoft.com/en-us/rest/api/loganalytics/workspace-purge/purge) , scoped to
* specific resource id.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param body Describes the body of a request to purge data in a single table of an Application
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -102,6 +102,10 @@ export interface Components {
* should batch the execution of purge requests by sending a single command whose predicate includes
* all user identities that require purging. Use the in operator to specify multiple identities. You
* should run the query prior to using for a purge request to verify that the results are expected.
* Note: this operation is intended for Classic resources, for workspace-based Application Insights
* resource please run purge operation (directly on the
* workspace)(https://docs.microsoft.com/en-us/rest/api/loganalytics/workspace-purge/purge) , scoped to
* specific resource id.
* @param resourceGroupName The name of the resource group. The name is case insensitive.
* @param resourceName The name of the Application Insights component resource.
* @param body Describes the body of a request to purge data in a single table of an Application
Expand Down