Skip to content

Commit d6fd72b

Browse files
author
SDK Automation
committed
Generated from 6cdcba711d91298b03d0b106b844444c570bd38c
[KeyVault] Change default tag
1 parent 8c2cf0b commit d6fd72b

17 files changed

+1055
-55
lines changed

sdk/keyvault/arm-keyvault/LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
The MIT License (MIT)
22

3-
Copyright (c) 2019 Microsoft
3+
Copyright (c) 2020 Microsoft
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

sdk/keyvault/arm-keyvault/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,9 @@ npm install @azure/arm-keyvault
1919

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

22+
- Please install minimum version of `"@azure/ms-rest-nodeauth": "^3.0.0"`.
2223
```bash
23-
npm install @azure/ms-rest-nodeauth
24+
npm install @azure/ms-rest-nodeauth@"^3.0.0"
2425
```
2526

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

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

102-
103-
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js%2Fsdk%2Fkeyvault%2Farm-keyvault%2FREADME.png)
103+
![Impressions](https://azure-sdk-impressions.azurewebsites.net/api/impressions/azure-sdk-for-js/sdk/keyvault/arm-keyvault/README.png)

sdk/keyvault/arm-keyvault/package.json

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,9 @@
44
"description": "KeyVaultManagementClient Library with typescript type definitions for node.js and browser.",
55
"version": "1.2.1",
66
"dependencies": {
7-
"@azure/ms-rest-azure-js": "^1.3.2",
8-
"@azure/ms-rest-js": "^1.8.1",
9-
"tslib": "^1.9.3"
7+
"@azure/ms-rest-azure-js": "^2.0.1",
8+
"@azure/ms-rest-js": "^2.0.4",
9+
"tslib": "^1.10.0"
1010
},
1111
"keywords": [
1212
"node",
@@ -20,19 +20,19 @@
2020
"module": "./esm/keyVaultManagementClient.js",
2121
"types": "./esm/keyVaultManagementClient.d.ts",
2222
"devDependencies": {
23-
"typescript": "^3.1.1",
24-
"rollup": "^0.66.2",
25-
"rollup-plugin-node-resolve": "^3.4.0",
23+
"typescript": "^3.5.3",
24+
"rollup": "^1.18.0",
25+
"rollup-plugin-node-resolve": "^5.2.0",
2626
"rollup-plugin-sourcemaps": "^0.4.2",
27-
"uglify-js": "^3.4.9"
27+
"uglify-js": "^3.6.0"
2828
},
29-
"homepage": "https://github.com/azure/azure-sdk-for-js",
29+
"homepage": "https://github.com/Azure/azure-sdk-for-js/tree/master/sdk/keyvault/arm-keyvault",
3030
"repository": {
3131
"type": "git",
32-
"url": "https://github.com/azure/azure-sdk-for-js.git"
32+
"url": "https://github.com/Azure/azure-sdk-for-js.git"
3333
},
3434
"bugs": {
35-
"url": "https://github.com/azure/azure-sdk-for-js/issues"
35+
"url": "https://github.com/Azure/azure-sdk-for-js/issues"
3636
},
3737
"files": [
3838
"dist/**/*.js",

sdk/keyvault/arm-keyvault/rollup.config.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ const config = {
2929
*/`
3030
},
3131
plugins: [
32-
nodeResolve({ module: true }),
32+
nodeResolve({ mainFields: ['module', 'main'] }),
3333
sourcemaps()
3434
]
3535
};

sdk/keyvault/arm-keyvault/src/keyVaultManagementClient.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,8 @@ import { KeyVaultManagementClientContext } from "./keyVaultManagementClientConte
1818
class KeyVaultManagementClient extends KeyVaultManagementClientContext {
1919
// Operation groups
2020
vaults: operations.Vaults;
21+
privateEndpointConnections: operations.PrivateEndpointConnections;
22+
privateLinkResources: operations.PrivateLinkResources;
2123
operations: operations.Operations;
2224

2325
/**
@@ -30,6 +32,8 @@ class KeyVaultManagementClient extends KeyVaultManagementClientContext {
3032
constructor(credentials: msRest.ServiceClientCredentials, subscriptionId: string, options?: Models.KeyVaultManagementClientOptions) {
3133
super(credentials, subscriptionId, options);
3234
this.vaults = new operations.Vaults(this);
35+
this.privateEndpointConnections = new operations.PrivateEndpointConnections(this);
36+
this.privateLinkResources = new operations.PrivateLinkResources(this);
3337
this.operations = new operations.Operations(this);
3438
}
3539
}

sdk/keyvault/arm-keyvault/src/keyVaultManagementClientContext.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ export class KeyVaultManagementClientContext extends msRestAzure.AzureServiceCli
4545

4646
super(credentials, options);
4747

48-
this.apiVersion = '2018-02-14';
48+
this.apiVersion = '2019-09-01';
4949
this.acceptLanguage = 'en-US';
5050
this.longRunningOperationRetryTimeout = 30;
5151
this.baseUri = options.baseUri || this.baseUri || "https://management.azure.com";

0 commit comments

Comments
 (0)