Skip to content
This repository was archived by the owner on Aug 26, 2025. It is now read-only.
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
4 changes: 2 additions & 2 deletions sdk/logic/arm-logic/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,9 @@ npm install @azure/arm-logic

##### Install @azure/ms-rest-nodeauth

- Please install minimum version of `"@azure/ms-rest-nodeauth": "^3.0.0"`.
```bash
npm install @azure/ms-rest-nodeauth
npm install @azure/ms-rest-nodeauth@"^3.0.0"
```

##### Sample code
Expand Down Expand Up @@ -99,5 +100,4 @@ See https://github.com/Azure/ms-rest-browserauth to learn how to authenticate to

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


![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/logic/arm-logic/README.png)
24 changes: 12 additions & 12 deletions sdk/logic/arm-logic/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
"description": "LogicManagementClient Library with typescript type definitions for node.js and browser.",
"version": "6.0.1",
"dependencies": {
"@azure/ms-rest-azure-js": "^1.3.1",
"@azure/ms-rest-js": "^1.2.6",
"tslib": "^1.9.3"
"@azure/ms-rest-azure-js": "^2.0.1",
"@azure/ms-rest-js": "^2.0.4",
"tslib": "^1.10.0"
},
"keywords": [
"node",
Expand All @@ -20,19 +20,19 @@
"module": "./esm/logicManagementClient.js",
"types": "./esm/logicManagementClient.d.ts",
"devDependencies": {
"typescript": "^3.1.1",
"rollup": "^0.66.2",
"rollup-plugin-node-resolve": "^3.4.0",
"typescript": "^3.5.3",
"rollup": "^1.18.0",
"rollup-plugin-node-resolve": "^5.2.0",
"rollup-plugin-sourcemaps": "^0.4.2",
"uglify-js": "^3.4.9"
"uglify-js": "^3.6.0"
},
"homepage": "https://github.com/azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic",
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/logic/arm-logic",
"repository": {
"type": "git",
"url": "https://github.com/azure/azure-sdk-for-js.git"
"url": "https://github.com/Azure/azure-sdk-for-js.git"
},
"bugs": {
"url": "https://github.com/azure/azure-sdk-for-js/issues"
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
},
"files": [
"dist/**/*.js",
Expand All @@ -43,7 +43,7 @@
"esm/**/*.js.map",
"esm/**/*.d.ts",
"esm/**/*.d.ts.map",
"lib/**/*.ts",
"src/**/*.ts",
"README.md",
"rollup.config.js",
"tsconfig.json"
Expand All @@ -54,5 +54,5 @@
"prepack": "npm install && npm run build"
},
"sideEffects": false,
"authPublish": true
"autoPublish": true
}
2 changes: 1 addition & 1 deletion sdk/logic/arm-logic/rollup.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const config = {
*/`
},
plugins: [
nodeResolve({ module: true }),
nodeResolve({ mainFields: ['module', 'main'] }),
sourcemaps()
]
};
Expand Down
10 changes: 10 additions & 0 deletions sdk/logic/arm-logic/src/logicManagementClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,11 @@ class LogicManagementClient extends LogicManagementClientContext {
integrationAccountAgreements: operations.IntegrationAccountAgreements;
integrationAccountCertificates: operations.IntegrationAccountCertificates;
integrationAccountSessions: operations.IntegrationAccountSessions;
integrationServiceEnvironments: operations.IntegrationServiceEnvironments;
integrationServiceEnvironmentSkus: operations.IntegrationServiceEnvironmentSkus;
integrationServiceEnvironmentNetworkHealth: operations.IntegrationServiceEnvironmentNetworkHealth;
integrationServiceEnvironmentManagedApis: operations.IntegrationServiceEnvironmentManagedApis;
integrationServiceEnvironmentManagedApiOperations: operations.IntegrationServiceEnvironmentManagedApiOperations;
operations: operations.Operations;

/**
Expand Down Expand Up @@ -69,6 +74,11 @@ class LogicManagementClient extends LogicManagementClientContext {
this.integrationAccountAgreements = new operations.IntegrationAccountAgreements(this);
this.integrationAccountCertificates = new operations.IntegrationAccountCertificates(this);
this.integrationAccountSessions = new operations.IntegrationAccountSessions(this);
this.integrationServiceEnvironments = new operations.IntegrationServiceEnvironments(this);
this.integrationServiceEnvironmentSkus = new operations.IntegrationServiceEnvironmentSkus(this);
this.integrationServiceEnvironmentNetworkHealth = new operations.IntegrationServiceEnvironmentNetworkHealth(this);
this.integrationServiceEnvironmentManagedApis = new operations.IntegrationServiceEnvironmentManagedApis(this);
this.integrationServiceEnvironmentManagedApiOperations = new operations.IntegrationServiceEnvironmentManagedApiOperations(this);
this.operations = new operations.Operations(this);
}
}
Expand Down
2 changes: 1 addition & 1 deletion sdk/logic/arm-logic/src/logicManagementClientContext.ts
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ export class LogicManagementClientContext extends msRestAzure.AzureServiceClient

super(credentials, options);

this.apiVersion = '2018-07-01-preview';
this.apiVersion = '2019-05-01';
this.acceptLanguage = 'en-US';
this.longRunningOperationRetryTimeout = 30;
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";
Expand Down
Loading