Skip to content

Commit 5453958

Browse files
committed
Configurations: 'specification/resources/resource-manager/Microsoft.Resources/databoundaries/tspconfig.yaml', API Version: 2024-08-01, SDK Release Type: stable, and CommitSHA: '1b5aec77bb93b4b413676e6191a8fe5d9c8266da' in SpecRepo: 'https://github.com/Azure/azure-rest-api-specs' Pipeline run: https://dev.azure.com/azure-sdk/internal/_build/results?buildId=6061123 Refer to https://eng.ms/docs/products/azure-developer-experience/develop/sdk-release/sdk-release-prerequisites to prepare for SDK release.
1 parent ca89626 commit 5453958

76 files changed

Lines changed: 2351 additions & 1380 deletions

File tree

Some content is hidden

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

pnpm-lock.yaml

Lines changed: 19 additions & 7 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 3 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,7 @@
11
# Release History
2-
3-
## 1.0.0-beta.3 (Unreleased)
4-
5-
### Features Added
6-
7-
### Breaking Changes
8-
9-
### Bugs Fixed
10-
11-
### Other Changes
12-
13-
## 1.0.0-beta.2 (2025-08-22)
14-
15-
### Other Changes
16-
17-
- Other fixes
18-
19-
## 1.0.0-beta.1 (2024-10-25)
2+
3+
## 1.0.0 (2026-03-25)
204

215
### Features Added
226

23-
The package of @azure/arm-databoundaries is using our next generation design principles. To learn more, please refer to our documentation [Quick Start](https://aka.ms/azsdk/js/mgmt/quickstart).
7+
This is the first stable version with the package of @azure/arm-databoundaries

sdk/databoundaries/arm-databoundaries/LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,4 +18,4 @@ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
21-
SOFTWARE.
21+
SOFTWARE.

sdk/databoundaries/arm-databoundaries/README.md

Lines changed: 9 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,12 @@ This package contains an isomorphic SDK (runs both in Node.js and in browsers) f
44

55
Provides APIs for data boundary operations.
66

7-
[Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/databoundaries/arm-databoundaries) |
8-
[Package (NPM)](https://www.npmjs.com/package/@azure/arm-databoundaries) |
9-
[API reference documentation](https://learn.microsoft.com/javascript/api/@azure/arm-databoundaries?view=azure-node-preview) |
10-
[Samples](https://github.com/Azure-Samples/azure-samples-js-management)
7+
Key links:
8+
9+
- [Source code](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/databoundaries/arm-databoundaries)
10+
- [Package (NPM)](https://www.npmjs.com/package/@azure/arm-databoundaries)
11+
- [API reference documentation](https://learn.microsoft.com/javascript/api/@azure/arm-databoundaries)
12+
- [Samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/databoundaries/arm-databoundaries/samples)
1113

1214
## Getting started
1315

@@ -35,7 +37,7 @@ npm install @azure/arm-databoundaries
3537
To create a client object to access the Azure DataboundariesManegement API, you will need the `endpoint` of your Azure DataboundariesManegement resource and a `credential`. The Azure DataboundariesManegement client can use Azure Active Directory credentials to authenticate.
3638
You can find the endpoint for your Azure DataboundariesManegement resource in the [Azure Portal][azure_portal].
3739

38-
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).
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/main/sdk/identity/identity/samples/AzureIdentityExamples.md#authenticating-with-a-pre-fetched-access-token).
3941

4042
To use the [DefaultAzureCredential][defaultazurecredential] provider shown below, or other credential providers provided with the Azure SDK, please install the `@azure/identity` package:
4143

@@ -44,7 +46,6 @@ npm install @azure/identity
4446
```
4547

4648
You will also need to **register a new AAD application and grant access to Azure DataboundariesManegement** by assigning the suitable role to your service principal (note: roles such as `"Owner"` will not grant the necessary permissions).
47-
Set the values of the client ID, tenant ID, and client secret of the AAD application as environment variables: `AZURE_CLIENT_ID`, `AZURE_TENANT_ID`, `AZURE_CLIENT_SECRET`.
4849

4950
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).
5051

@@ -70,8 +71,8 @@ const credential = new InteractiveBrowserCredential({
7071
const client = new DataboundariesManegementClient(credential);
7172
```
7273

73-
### JavaScript Bundle
7474

75+
### JavaScript Bundle
7576
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).
7677

7778
## Key concepts
@@ -96,7 +97,7 @@ For more detailed instructions on how to enable logs, you can look at the [@azur
9697

9798
## Next steps
9899

99-
Please take a look at the [samples](https://github.com/Azure-Samples/azure-samples-js-management) directory for detailed examples on how to use this library.
100+
Please take a look at the [samples](https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/databoundaries/arm-databoundaries/samples) directory for detailed examples on how to use this library.
100101

101102
## Contributing
102103

@@ -106,10 +107,6 @@ If you'd like to contribute to this library, please read the [contributing guide
106107

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

109-
110-
111-
[azure_cli]: https://learn.microsoft.com/cli/azure
112-
[azure_sub]: https://azure.microsoft.com/free/
113110
[azure_sub]: https://azure.microsoft.com/free/
114111
[azure_portal]: https://portal.azure.com
115112
[azure_identity]: https://github.com/Azure/azure-sdk-for-js/tree/main/sdk/identity/identity

sdk/databoundaries/arm-databoundaries/_meta.json

Lines changed: 0 additions & 8 deletions
This file was deleted.
Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1 @@
1-
{
2-
"extends": "../../../api-extractor-base.json"
3-
}
1+
{ "extends": "../../../api-extractor-base.json" }
Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,14 @@
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-package-json-types": "warn",
8+
"@azure/azure-sdk/ts-package-json-engine-is-present": "warn",
9+
"@azure/azure-sdk/ts-package-json-files-required": "off",
10+
"@azure/azure-sdk/ts-package-json-main-is-cjs": "off",
11+
"tsdoc/syntax": "warn",
12+
},
13+
},
14+
]);
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
1+
{
2+
"apiVersions": {
3+
"Microsoft.Resources": "2024-08-01"
4+
},
5+
"emitterVersion": "0.51.0",
6+
"crossLanguageDefinitions": {
7+
"CrossLanguagePackageId": "Microsoft.Resources",
8+
"CrossLanguageDefinitionId": {
9+
"@azure/arm-databoundaries!OperationListResult:interface": "Azure.ResourceManager.CommonTypes.OperationListResult",
10+
"@azure/arm-databoundaries!Operation:interface": "Azure.ResourceManager.CommonTypes.Operation",
11+
"@azure/arm-databoundaries!OperationDisplay:interface": "Azure.ResourceManager.CommonTypes.OperationDisplay",
12+
"@azure/arm-databoundaries!ErrorResponse:interface": "Azure.ResourceManager.CommonTypes.ErrorResponse",
13+
"@azure/arm-databoundaries!ErrorDetail:interface": "Azure.ResourceManager.CommonTypes.ErrorDetail",
14+
"@azure/arm-databoundaries!ErrorAdditionalInfo:interface": "Azure.ResourceManager.CommonTypes.ErrorAdditionalInfo",
15+
"@azure/arm-databoundaries!DataBoundaryDefinition:interface": "Microsoft.Resources.DataBoundaryDefinition",
16+
"@azure/arm-databoundaries!DataBoundaryProperties:interface": "Microsoft.Resources.DataBoundaryProperties",
17+
"@azure/arm-databoundaries!ProxyResource:interface": "Azure.ResourceManager.CommonTypes.ProxyResource",
18+
"@azure/arm-databoundaries!Resource:interface": "Azure.ResourceManager.CommonTypes.Resource",
19+
"@azure/arm-databoundaries!SystemData:interface": "Azure.ResourceManager.CommonTypes.SystemData",
20+
"@azure/arm-databoundaries!KnownOrigin:enum": "Azure.ResourceManager.CommonTypes.Origin",
21+
"@azure/arm-databoundaries!KnownActionType:enum": "Azure.ResourceManager.CommonTypes.ActionType",
22+
"@azure/arm-databoundaries!KnownDefaultName:enum": "Microsoft.Resources.DefaultName",
23+
"@azure/arm-databoundaries!KnownDataBoundary:enum": "Microsoft.Resources.DataBoundary",
24+
"@azure/arm-databoundaries!KnownProvisioningState:enum": "Microsoft.Resources.ProvisioningState",
25+
"@azure/arm-databoundaries!KnowncreatedByType:enum": "Azure.ResourceManager.CommonTypes.createdByType",
26+
"@azure/arm-databoundaries!KnownVersions:enum": "Microsoft.Resources.Versions",
27+
"@azure/arm-databoundaries!DataBoundariesOperations#put:member": "Microsoft.Resources.DataBoundaryDefinitions.put",
28+
"@azure/arm-databoundaries!DataBoundariesOperations#getTenant:member": "Microsoft.Resources.DataBoundaryDefinitions.getTenant",
29+
"@azure/arm-databoundaries!DataBoundariesOperations#getScope:member": "Microsoft.Resources.DataBoundaries.getScope",
30+
"@azure/arm-databoundaries!OperationsOperations#list:member": "Azure.ResourceManager.Operations.list"
31+
}
32+
}
33+
}

0 commit comments

Comments
 (0)