-
Notifications
You must be signed in to change notification settings - Fork 1.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[applicationinsights] Update applicationinsights to use snippets (#32500
) ### Packages impacted by this PR - @azure/arm-applicationinsights ### Issues associated with this PR - #32416 ### Describe the problem that is addressed by this PR Updates all projects under the `applicationinsights` to use snippets extraction. ### What are the possible designs available to address the problem? If there are more than one possible design, why was the one in this PR chosen? ### Are there test cases added in this PR? _(If not, why?)_ ### Provide a list of related PRs _(if any)_ ### Command used to generate this PR:**_(Applicable only to SDK release request PRs)_ ### Checklists - [ ] Added impacted package name to the issue description - [ ] Does this PR needs any fixes in the SDK Generator?** _(If so, create an Issue in the [Autorest/typescript](https://github.com/Azure/autorest.typescript) repository and link it here)_ - [ ] Added a changelog (if necessary)
- Loading branch information
1 parent
9ce5139
commit 4da8bfd
Showing
5 changed files
with
70 additions
and
55 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
30 changes: 30 additions & 0 deletions
30
sdk/applicationinsights/arm-appinsights/test/snippets.spec.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
// Copyright (c) Microsoft Corporation. | ||
// Licensed under the MIT License. | ||
|
||
import { ApplicationInsightsManagementClient } from "../src/index.js"; | ||
import { DefaultAzureCredential, InteractiveBrowserCredential } from "@azure/identity"; | ||
import { setLogLevel } from "@azure/logger"; | ||
import { describe, it } from "vitest"; | ||
|
||
describe("snippets", () => { | ||
it("ReadmeSampleCreateClient_Node", async () => { | ||
const subscriptionId = "00000000-0000-0000-0000-000000000000"; | ||
const client = new ApplicationInsightsManagementClient( | ||
new DefaultAzureCredential(), | ||
subscriptionId, | ||
); | ||
}); | ||
|
||
it("ReadmeSampleCreateClient_Browser", async () => { | ||
const subscriptionId = "00000000-0000-0000-0000-000000000000"; | ||
const credential = new InteractiveBrowserCredential({ | ||
tenantId: "<YOUR_TENANT_ID>", | ||
clientId: "<YOUR_CLIENT_ID>", | ||
}); | ||
const client = new ApplicationInsightsManagementClient(credential, subscriptionId); | ||
}); | ||
|
||
it("SetLogLevel", async () => { | ||
setLogLevel("info"); | ||
}); | ||
}); |