Skip to content
Open
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
10 changes: 10 additions & 0 deletions sdk/networkcloud/arm-networkcloud/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,15 @@
# Release History

## 1.3.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed

### Other Changes

## 1.3.0 (2025-12-16)

### Features Added
Expand Down
2 changes: 1 addition & 1 deletion sdk/networkcloud/arm-networkcloud/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"sdk-type": "mgmt",
"author": "Microsoft Corporation",
"description": "A generated SDK for NetworkCloud.",
"version": "1.3.0",
"version": "1.3.1",
"engines": {
"node": ">=20.0.0"
},
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -162,10 +162,10 @@ npm install
node agentPoolsCreateOrUpdateSample.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env NETWORKCLOUD_SUBSCRIPTION_ID="<networkcloud subscription id>" NETWORKCLOUD_RESOURCE_GROUP="<networkcloud resource group>" node agentPoolsCreateOrUpdateSample.js
npx cross-env NETWORKCLOUD_SUBSCRIPTION_ID="<networkcloud subscription id>" NETWORKCLOUD_RESOURCE_GROUP="<networkcloud resource group>" node agentPoolsCreateOrUpdateSample.js
```

## Next Steps
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -174,10 +174,10 @@ npm run build
node dist/agentPoolsCreateOrUpdateSample.js
```

Alternatively, run a single sample with the correct environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):
Alternatively, run a single sample with the required environment variables set (setting up the `.env` file is not required if you do this), for example (cross-platform):

```bash
cross-env NETWORKCLOUD_SUBSCRIPTION_ID="<networkcloud subscription id>" NETWORKCLOUD_RESOURCE_GROUP="<networkcloud resource group>" node dist/agentPoolsCreateOrUpdateSample.js
npx cross-env NETWORKCLOUD_SUBSCRIPTION_ID="<networkcloud subscription id>" NETWORKCLOUD_RESOURCE_GROUP="<networkcloud resource group>" node dist/agentPoolsCreateOrUpdateSample.js
```

## Next Steps
Expand Down
2 changes: 1 addition & 1 deletion sdk/networkcloud/arm-networkcloud/src/networkCloud.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ export class NetworkCloud extends coreClient.ServiceClient {
credential: credentials,
};

const packageDetails = `azsdk-js-arm-networkcloud/1.3.0`;
const packageDetails = `azsdk-js-arm-networkcloud/1.3.1`;
const userAgentPrefix =
options.userAgentOptions && options.userAgentOptions.userAgentPrefix
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
Expand Down
Loading