Skip to content

Commit 6271ff4

Browse files
authored
[mgmt] impactreporting release (#32705)
Azure/sdk-release-request#5845
1 parent 7776894 commit 6271ff4

File tree

104 files changed

+6799
-2
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

104 files changed

+6799
-2
lines changed

.github/CODEOWNERS

+3
Original file line numberDiff line numberDiff line change
@@ -611,6 +611,9 @@ sdk/ai/ai-projects @ganeshyb @GraceBrigham
611611
# PRLabel: %Mgmt
612612
/sdk/hybridkubernetes/arm-hybridkubernetes/ @qiaozha @MaryGao
613613

614+
# PRLabel: %Mgmt
615+
/sdk/impactreporting/arm-impactreporting @qiaozha @MaryGao
616+
614617
# PRLabel: %Mgmt
615618
/sdk/informatica/arm-informaticadatamanagement @qiaozha @MaryGao
616619

common/config/rush/pnpm-lock.yaml

+43
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

eng/ignore-links.txt

+1
Original file line numberDiff line numberDiff line change
@@ -18,3 +18,4 @@ https://docs.microsoft.com/javascript/api/@azure/arm-terraform?view=azure-node-p
1818
https://docs.microsoft.com/javascript/api/@azure/arm-connectedcache?view=azure-node-preview
1919
https://docs.microsoft.com/javascript/api/@azure/arm-neonpostgres?view=azure-node-preview
2020
https://learn.microsoft.com/javascript/api/@azure/arm-pineconevectordb?view=azure-node-preview
21+
https://learn.microsoft.com/javascript/api/@azure/arm-impactreporting?view=azure-node-preview

rush.json

+11-2
Original file line numberDiff line numberDiff line change
@@ -560,7 +560,9 @@
560560
"projectFolder": "common/tools/dev-tool",
561561
"versionPolicyName": "utility",
562562
// Add Identity to decoupledLocalDependencies so that dev-tool uses the package from npm, avoiding a cyclic dependency.
563-
"decoupledLocalDependencies": ["@azure/identity"]
563+
"decoupledLocalDependencies": [
564+
"@azure/identity"
565+
]
564566
},
565567
{
566568
"packageName": "@azure/eventgrid",
@@ -600,7 +602,9 @@
600602
{
601603
"packageName": "@azure/identity",
602604
"projectFolder": "sdk/identity/identity",
603-
"decoupledLocalDependencies": ["@azure/keyvault-keys"],
605+
"decoupledLocalDependencies": [
606+
"@azure/keyvault-keys"
607+
],
604608
"versionPolicyName": "client"
605609
},
606610
{
@@ -2313,6 +2317,11 @@
23132317
"projectFolder": "sdk/ai/ai-projects",
23142318
"versionPolicyName": "client"
23152319
},
2320+
{
2321+
"packageName": "@azure/arm-impactreporting",
2322+
"projectFolder": "sdk/impactreporting/arm-impactreporting",
2323+
"versionPolicyName": "management"
2324+
},
23162325
{
23172326
"packageName": "@azure/arm-pineconevectordb",
23182327
"projectFolder": "sdk/pineconevectordb/arm-pineconevectordb",
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# Release History
2+
3+
## 1.0.0-beta.1 (2025-02-20)
4+
5+
### Features Added
6+
7+
Initial release of the Azure Impact Reporting package
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
Copyright (c) Microsoft Corporation.
2+
3+
MIT License
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in all
13+
copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED *AS IS*, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21+
SOFTWARE.
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,115 @@
1+
# Azure Impact client library for JavaScript
2+
3+
This package contains an isomorphic SDK (runs both in Node.js and in browsers) for Azure Impact client.
4+
5+
6+
7+
Key links:
8+
9+
- [Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/impactreporting/arm-impactreporting)
10+
- [Package (NPM)](https://www.npmjs.com/package/@azure/arm-impactreporting)
11+
- [API reference documentation](https://learn.microsoft.com/javascript/api/@azure/arm-impactreporting?view=azure-node-preview)
12+
- [Samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/impactreporting/arm-impactreporting/samples)
13+
14+
## Getting started
15+
16+
### Currently supported environments
17+
18+
- [LTS versions of Node.js](https://github.com/nodejs/release#release-schedule)
19+
- Latest versions of Safari, Chrome, Edge and Firefox.
20+
21+
See our [support policy](https://github.com/Azure/azure-sdk-for-js/blob/main/SUPPORT.md) for more details.
22+
23+
### Prerequisites
24+
25+
- An [Azure subscription][azure_sub].
26+
27+
### Install the `@azure/arm-impactreporting` package
28+
29+
Install the Azure Impact client library for JavaScript with `npm`:
30+
31+
```bash
32+
npm install @azure/arm-impactreporting
33+
```
34+
35+
### Create and authenticate a `ImpactClient`
36+
37+
To create a client object to access the Azure Impact API, you will need the `endpoint` of your Azure Impact resource and a `credential`. The Azure Impact client can use Azure Active Directory credentials to authenticate.
38+
You can find the endpoint for your Azure Impact resource in the [Azure Portal][azure_portal].
39+
40+
You can authenticate with Azure Active Directory using a credential from the [@azure/identity][azure_identity] library or [an existing AAD Token](https://github.com/Azure/azure-sdk-for-js/blob/master/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token).
41+
42+
To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package:
43+
44+
```bash
45+
npm install @azure/identity
46+
```
47+
48+
You will also need to **register a new AAD application and grant access to Azure Impact** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
49+
50+
For more information about how to create an Azure AD Application check out [this guide](https://learn.microsoft.com/azure/active-directory/develop/howto-create-service-principal-portal).
51+
52+
Using Node.js and Node-like environments, you can use the `DefaultAzureCredential` class to authenticate the client.
53+
54+
```ts snippet:ReadmeSampleCreateClient_Node
55+
import { ImpactClient } from "../src/index.js";
56+
import { DefaultAzureCredential } from "@azure/identity";
57+
58+
const subscriptionId = "00000000-0000-0000-0000-000000000000";
59+
const client = new ImpactClient(new DefaultAzureCredential(), subscriptionId);
60+
```
61+
62+
For browser environments, use the `InteractiveBrowserCredential` from the `@azure/identity` package to authenticate.
63+
64+
```ts snippet:ReadmeSampleCreateClient_Browser
65+
import { InteractiveBrowserCredential } from "@azure/identity";
66+
import { ImpactClient } from "../src/index.js";
67+
68+
const subscriptionId = "00000000-0000-0000-0000-000000000000";
69+
const credential = new InteractiveBrowserCredential({
70+
tenantId: "<YOUR_TENANT_ID>",
71+
clientId: "<YOUR_CLIENT_ID>",
72+
});
73+
const client = new ImpactClient(credential, subscriptionId);
74+
```
75+
76+
77+
### JavaScript Bundle
78+
To use this client library in the browser, first you need to use a bundler. For details on how to do this, please refer to our [bundling documentation](https://aka.ms/AzureSDKBundling).
79+
80+
## Key concepts
81+
82+
### ImpactClient
83+
84+
`ImpactClient` is the primary interface for developers using the Azure Impact client library. Explore the methods on this client object to understand the different features of the Azure Impact service that you can access.
85+
86+
## Troubleshooting
87+
88+
### Logging
89+
90+
Enabling logging may help uncover useful information about failures. In order to see a log of HTTP requests and responses, set the `AZURE_LOG_LEVEL` environment variable to `info`. Alternatively, logging can be enabled at runtime by calling `setLogLevel` in the `@azure/logger`:
91+
92+
```ts snippet:SetLogLevel
93+
import { setLogLevel } from "@azure/logger";
94+
95+
setLogLevel("info");
96+
```
97+
98+
For more detailed instructions on how to enable logs, you can look at the [@azure/logger package docs](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/core/logger).
99+
100+
## Next steps
101+
102+
Please take a look at the [samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/impactreporting/arm-impactreporting/samples) directory for detailed examples on how to use this library.
103+
104+
## Contributing
105+
106+
If you'd like to contribute to this library, please read the [contributing guide](https://github.com/Azure/azure-sdk-for-js/blob/main/CONTRIBUTING.md) to learn more about how to build and test the code.
107+
108+
## Related projects
109+
110+
- [Microsoft Azure SDK for JavaScript](https://github.com/Azure/azure-sdk-for-js)
111+
112+
[azure_sub]: https://azure.microsoft.com/free/
113+
[azure_portal]: https://portal.azure.com
114+
[azure_identity]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity
115+
[defaultazurecredential]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity#defaultazurecredential
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"$schema": "https://developer.microsoft.com/json-schemas/api-extractor/v7/api-extractor.schema.json",
3+
"mainEntryPointFilePath": "dist/esm/index.d.ts",
4+
"docModel": {
5+
"enabled": true
6+
},
7+
"apiReport": {
8+
"enabled": true,
9+
"reportFolder": "./review"
10+
},
11+
"dtsRollup": {
12+
"enabled": true,
13+
"untrimmedFilePath": "",
14+
"publicTrimmedFilePath": "dist/arm-impactreporting.d.ts"
15+
},
16+
"messages": {
17+
"tsdocMessageReporting": {
18+
"default": {
19+
"logLevel": "none"
20+
}
21+
},
22+
"extractorMessageReporting": {
23+
"ae-missing-release-tag": {
24+
"logLevel": "none"
25+
},
26+
"ae-unresolved-link": {
27+
"logLevel": "none"
28+
}
29+
}
30+
}
31+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
{
2+
"AssetsRepo": "Azure/azure-sdk-assets",
3+
"AssetsRepoPrefixPath": "js",
4+
"TagPrefix": "js/impactreporting/arm-impactreporting",
5+
"Tag": "js/impactreporting/arm-impactreporting_44838c8b79"
6+
}
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
import azsdkEslint from "@azure/eslint-plugin-azure-sdk";
2+
3+
export default azsdkEslint.config([
4+
{
5+
rules: {
6+
"@azure/azure-sdk/ts-modules-only-named": "warn",
7+
"@azure/azure-sdk/ts-apiextractor-json-types": "warn",
8+
"@azure/azure-sdk/ts-package-json-types": "warn",
9+
"@azure/azure-sdk/ts-package-json-engine-is-present": "warn",
10+
"@azure/azure-sdk/ts-package-json-module": "off",
11+
"@azure/azure-sdk/ts-package-json-files-required": "off",
12+
"@azure/azure-sdk/ts-package-json-main-is-cjs": "off",
13+
"tsdoc/syntax": "warn",
14+
},
15+
},
16+
]);

0 commit comments

Comments
 (0)