@azure/arm-msi 2.0.1-alpha.20220208.1 → 2.1.0-beta.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +14 -11
- package/LICENSE +1 -1
- package/README.md +12 -1
- package/dist/index.js +313 -27
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/dist-esm/samples-dev/operationsListSample.d.ts +2 -0
- package/dist-esm/samples-dev/operationsListSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/operationsListSample.js +43 -0
- package/dist-esm/samples-dev/operationsListSample.js.map +1 -0
- package/dist-esm/samples-dev/systemAssignedIdentitiesGetByScopeSample.d.ts +2 -0
- package/dist-esm/samples-dev/systemAssignedIdentitiesGetByScopeSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/systemAssignedIdentitiesGetByScopeSample.js +30 -0
- package/dist-esm/samples-dev/systemAssignedIdentitiesGetByScopeSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesCreateOrUpdateSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesCreateOrUpdateSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesCreateOrUpdateSample.js +35 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesCreateOrUpdateSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesDeleteSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesDeleteSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesDeleteSample.js +31 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesDeleteSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesGetSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesGetSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesGetSample.js +31 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesGetSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.js +55 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListByResourceGroupSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListByResourceGroupSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListByResourceGroupSample.js +44 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListByResourceGroupSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListBySubscriptionSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListBySubscriptionSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListBySubscriptionSample.js +43 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesListBySubscriptionSample.js.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesUpdateSample.d.ts +2 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesUpdateSample.d.ts.map +1 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesUpdateSample.js +35 -0
- package/dist-esm/samples-dev/userAssignedIdentitiesUpdateSample.js.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -1
- package/dist-esm/src/managedServiceIdentityClient.js +4 -3
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -1
- package/dist-esm/src/models/index.d.ts +81 -0
- package/dist-esm/src/models/index.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.d.ts +2 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -1
- package/dist-esm/src/models/mappers.js +85 -0
- package/dist-esm/src/models/mappers.js.map +1 -1
- package/dist-esm/src/models/parameters.d.ts +6 -1
- package/dist-esm/src/models/parameters.d.ts.map +1 -1
- package/dist-esm/src/models/parameters.js +62 -11
- package/dist-esm/src/models/parameters.js.map +1 -1
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +26 -1
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -1
- package/dist-esm/src/operations/userAssignedIdentities.js +127 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -1
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +8 -1
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -1
- package/package.json +25 -9
- package/review/arm-msi.api.md +42 -0
- package/rollup.config.js +6 -72
- package/src/managedServiceIdentityClient.ts +4 -3
- package/src/models/index.ts +89 -0
- package/src/models/mappers.ts +87 -0
- package/src/models/parameters.ts +68 -12
- package/src/operations/userAssignedIdentities.ts +172 -1
- package/src/operationsInterfaces/userAssignedIdentities.ts +13 -0
- package/tsconfig.json +19 -5
- package/types/arm-msi.d.ts +94 -0
@@ -0,0 +1,35 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Create or update an identity in the specified subscription and resource group.
|
15
|
+
*
|
16
|
+
* @summary Create or update an identity in the specified subscription and resource group.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityCreate.json
|
18
|
+
*/
|
19
|
+
function identityCreate() {
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
21
|
+
const subscriptionId = "subid";
|
22
|
+
const resourceGroupName = "rgName";
|
23
|
+
const resourceName = "resourceName";
|
24
|
+
const parameters = {
|
25
|
+
location: "eastus",
|
26
|
+
tags: { key1: "value1", key2: "value2" }
|
27
|
+
};
|
28
|
+
const credential = new DefaultAzureCredential();
|
29
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
30
|
+
const result = yield client.userAssignedIdentities.createOrUpdate(resourceGroupName, resourceName, parameters);
|
31
|
+
console.log(result);
|
32
|
+
});
|
33
|
+
}
|
34
|
+
identityCreate().catch(console.error);
|
35
|
+
//# sourceMappingURL=userAssignedIdentitiesCreateOrUpdateSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesCreateOrUpdateSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesCreateOrUpdateSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAY,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AACxE,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,cAAc;;QAC3B,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,YAAY,GAAG,cAAc,CAAC;QACpC,MAAM,UAAU,GAAa;YAC3B,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE;SACzC,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,sBAAsB,CAAC,cAAc,CAC/D,iBAAiB,EACjB,YAAY,EACZ,UAAU,CACX,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,cAAc,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesDeleteSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesDeleteSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Deletes the identity.
|
15
|
+
*
|
16
|
+
* @summary Deletes the identity.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityDelete.json
|
18
|
+
*/
|
19
|
+
function identityDelete() {
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
21
|
+
const subscriptionId = "subid";
|
22
|
+
const resourceGroupName = "rgName";
|
23
|
+
const resourceName = "resourceName";
|
24
|
+
const credential = new DefaultAzureCredential();
|
25
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
26
|
+
const result = yield client.userAssignedIdentities.delete(resourceGroupName, resourceName);
|
27
|
+
console.log(result);
|
28
|
+
});
|
29
|
+
}
|
30
|
+
identityDelete().catch(console.error);
|
31
|
+
//# sourceMappingURL=userAssignedIdentitiesDeleteSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesDeleteSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesDeleteSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAE,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,cAAc;;QAC3B,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,YAAY,GAAG,cAAc,CAAC;QACpC,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,sBAAsB,CAAC,MAAM,CACvD,iBAAiB,EACjB,YAAY,CACb,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,cAAc,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesGetSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesGetSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,31 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Gets the identity.
|
15
|
+
*
|
16
|
+
* @summary Gets the identity.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityGet.json
|
18
|
+
*/
|
19
|
+
function identityGet() {
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
21
|
+
const subscriptionId = "subid";
|
22
|
+
const resourceGroupName = "rgName";
|
23
|
+
const resourceName = "resourceName";
|
24
|
+
const credential = new DefaultAzureCredential();
|
25
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
26
|
+
const result = yield client.userAssignedIdentities.get(resourceGroupName, resourceName);
|
27
|
+
console.log(result);
|
28
|
+
});
|
29
|
+
}
|
30
|
+
identityGet().catch(console.error);
|
31
|
+
//# sourceMappingURL=userAssignedIdentitiesGetSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesGetSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesGetSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAE,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,WAAW;;QACxB,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,YAAY,GAAG,cAAc,CAAC;QACpC,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,sBAAsB,CAAC,GAAG,CACpD,iBAAiB,EACjB,YAAY,CACb,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,WAAW,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListAssociatedResourcesSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,55 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __asyncValues, __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Lists the associated resources for this identity.
|
15
|
+
*
|
16
|
+
* @summary Lists the associated resources for this identity.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityListAssociatedResources.json
|
18
|
+
*/
|
19
|
+
function identityListAssociatedResources() {
|
20
|
+
var e_1, _a;
|
21
|
+
return __awaiter(this, void 0, void 0, function* () {
|
22
|
+
const subscriptionId = "1cscb752-d7c9-463f-9731-fd31edada74a";
|
23
|
+
const resourceGroupName = "testrg";
|
24
|
+
const resourceName = "testid";
|
25
|
+
const filter = "contains(name, 'test')";
|
26
|
+
const orderby = "name asc";
|
27
|
+
const top = 10;
|
28
|
+
const skip = 1;
|
29
|
+
const options = {
|
30
|
+
filter,
|
31
|
+
orderby,
|
32
|
+
top,
|
33
|
+
skip
|
34
|
+
};
|
35
|
+
const credential = new DefaultAzureCredential();
|
36
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
37
|
+
const resArray = new Array();
|
38
|
+
try {
|
39
|
+
for (var _b = __asyncValues(client.userAssignedIdentities.listAssociatedResources(resourceGroupName, resourceName, options)), _c; _c = yield _b.next(), !_c.done;) {
|
40
|
+
let item = _c.value;
|
41
|
+
resArray.push(item);
|
42
|
+
}
|
43
|
+
}
|
44
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
45
|
+
finally {
|
46
|
+
try {
|
47
|
+
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
|
48
|
+
}
|
49
|
+
finally { if (e_1) throw e_1.error; }
|
50
|
+
}
|
51
|
+
console.log(resArray);
|
52
|
+
});
|
53
|
+
}
|
54
|
+
identityListAssociatedResources().catch(console.error);
|
55
|
+
//# sourceMappingURL=userAssignedIdentitiesListAssociatedResourcesSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListAssociatedResourcesSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListAssociatedResourcesSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAEL,4BAA4B,EAC7B,MAAM,gBAAgB,CAAC;AACxB,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,+BAA+B;;;QAC5C,MAAM,cAAc,GAAG,sCAAsC,CAAC;QAC9D,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,YAAY,GAAG,QAAQ,CAAC;QAC9B,MAAM,MAAM,GAAG,wBAAwB,CAAC;QACxC,MAAM,OAAO,GAAG,UAAU,CAAC;QAC3B,MAAM,GAAG,GAAG,EAAE,CAAC;QACf,MAAM,IAAI,GAAG,CAAC,CAAC;QACf,MAAM,OAAO,GAAgE;YAC3E,MAAM;YACN,OAAO;YACP,GAAG;YACH,IAAI;SACL,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;YAC7B,KAAuB,IAAA,KAAA,cAAA,MAAM,CAAC,sBAAsB,CAAC,uBAAuB,CAC1E,iBAAiB,EACjB,YAAY,EACZ,OAAO,CACR,CAAA,IAAA;gBAJU,IAAI,IAAI,WAAA,CAAA;gBAKjB,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aACrB;;;;;;;;;QACD,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;;CACvB;AAED,+BAA+B,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListByResourceGroupSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListByResourceGroupSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,44 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __asyncValues, __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Lists all the userAssignedIdentities available under the specified ResourceGroup.
|
15
|
+
*
|
16
|
+
* @summary Lists all the userAssignedIdentities available under the specified ResourceGroup.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityListByResourceGroup.json
|
18
|
+
*/
|
19
|
+
function identityListByResourceGroup() {
|
20
|
+
var e_1, _a;
|
21
|
+
return __awaiter(this, void 0, void 0, function* () {
|
22
|
+
const subscriptionId = "subid";
|
23
|
+
const resourceGroupName = "rgName";
|
24
|
+
const credential = new DefaultAzureCredential();
|
25
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
26
|
+
const resArray = new Array();
|
27
|
+
try {
|
28
|
+
for (var _b = __asyncValues(client.userAssignedIdentities.listByResourceGroup(resourceGroupName)), _c; _c = yield _b.next(), !_c.done;) {
|
29
|
+
let item = _c.value;
|
30
|
+
resArray.push(item);
|
31
|
+
}
|
32
|
+
}
|
33
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
34
|
+
finally {
|
35
|
+
try {
|
36
|
+
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
|
37
|
+
}
|
38
|
+
finally { if (e_1) throw e_1.error; }
|
39
|
+
}
|
40
|
+
console.log(resArray);
|
41
|
+
});
|
42
|
+
}
|
43
|
+
identityListByResourceGroup().catch(console.error);
|
44
|
+
//# sourceMappingURL=userAssignedIdentitiesListByResourceGroupSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListByResourceGroupSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListByResourceGroupSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAE,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,2BAA2B;;;QACxC,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;YAC7B,KAAuB,IAAA,KAAA,cAAA,MAAM,CAAC,sBAAsB,CAAC,mBAAmB,CACtE,iBAAiB,CAClB,CAAA,IAAA;gBAFU,IAAI,IAAI,WAAA,CAAA;gBAGjB,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aACrB;;;;;;;;;QACD,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;;CACvB;AAED,2BAA2B,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListBySubscriptionSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListBySubscriptionSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,43 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __asyncValues, __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Lists all the userAssignedIdentities available under the specified subscription.
|
15
|
+
*
|
16
|
+
* @summary Lists all the userAssignedIdentities available under the specified subscription.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityListBySubscription.json
|
18
|
+
*/
|
19
|
+
function identityListBySubscription() {
|
20
|
+
var e_1, _a;
|
21
|
+
return __awaiter(this, void 0, void 0, function* () {
|
22
|
+
const subscriptionId = "subid";
|
23
|
+
const credential = new DefaultAzureCredential();
|
24
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
25
|
+
const resArray = new Array();
|
26
|
+
try {
|
27
|
+
for (var _b = __asyncValues(client.userAssignedIdentities.listBySubscription()), _c; _c = yield _b.next(), !_c.done;) {
|
28
|
+
let item = _c.value;
|
29
|
+
resArray.push(item);
|
30
|
+
}
|
31
|
+
}
|
32
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
33
|
+
finally {
|
34
|
+
try {
|
35
|
+
if (_c && !_c.done && (_a = _b.return)) yield _a.call(_b);
|
36
|
+
}
|
37
|
+
finally { if (e_1) throw e_1.error; }
|
38
|
+
}
|
39
|
+
console.log(resArray);
|
40
|
+
});
|
41
|
+
}
|
42
|
+
identityListBySubscription().catch(console.error);
|
43
|
+
//# sourceMappingURL=userAssignedIdentitiesListBySubscriptionSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesListBySubscriptionSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesListBySubscriptionSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAE,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAC9D,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,0BAA0B;;;QACvC,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,QAAQ,GAAG,IAAI,KAAK,EAAE,CAAC;;YAC7B,KAAuB,IAAA,KAAA,cAAA,MAAM,CAAC,sBAAsB,CAAC,kBAAkB,EAAE,CAAA,IAAA;gBAA9D,IAAI,IAAI,WAAA,CAAA;gBACjB,QAAQ,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;aACrB;;;;;;;;;QACD,OAAO,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;;CACvB;AAED,0BAA0B,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesUpdateSample.d.ts","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesUpdateSample.ts"],"names":[],"mappings":""}
|
@@ -0,0 +1,35 @@
|
|
1
|
+
/*
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
4
|
+
*
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
7
|
+
*/
|
8
|
+
import { __awaiter } from "tslib";
|
9
|
+
// Copyright (c) Microsoft Corporation.
|
10
|
+
// Licensed under the MIT License.
|
11
|
+
import { ManagedServiceIdentityClient } from "@azure/arm-msi";
|
12
|
+
import { DefaultAzureCredential } from "@azure/identity";
|
13
|
+
/**
|
14
|
+
* This sample demonstrates how to Update an identity in the specified subscription and resource group.
|
15
|
+
*
|
16
|
+
* @summary Update an identity in the specified subscription and resource group.
|
17
|
+
* x-ms-original-file: specification/msi/resource-manager/Microsoft.ManagedIdentity/preview/2021-09-30-preview/examples/IdentityUpdate.json
|
18
|
+
*/
|
19
|
+
function identityUpdate() {
|
20
|
+
return __awaiter(this, void 0, void 0, function* () {
|
21
|
+
const subscriptionId = "subid";
|
22
|
+
const resourceGroupName = "rgName";
|
23
|
+
const resourceName = "resourceName";
|
24
|
+
const parameters = {
|
25
|
+
location: "eastus",
|
26
|
+
tags: { key1: "value1", key2: "value2" }
|
27
|
+
};
|
28
|
+
const credential = new DefaultAzureCredential();
|
29
|
+
const client = new ManagedServiceIdentityClient(credential, subscriptionId);
|
30
|
+
const result = yield client.userAssignedIdentities.update(resourceGroupName, resourceName, parameters);
|
31
|
+
console.log(result);
|
32
|
+
});
|
33
|
+
}
|
34
|
+
identityUpdate().catch(console.error);
|
35
|
+
//# sourceMappingURL=userAssignedIdentitiesUpdateSample.js.map
|
@@ -0,0 +1 @@
|
|
1
|
+
{"version":3,"file":"userAssignedIdentitiesUpdateSample.js","sourceRoot":"","sources":["../../samples-dev/userAssignedIdentitiesUpdateSample.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;;AAEH,uCAAuC;AACvC,kCAAkC;AAClC,OAAO,EAAkB,4BAA4B,EAAE,MAAM,gBAAgB,CAAC;AAC9E,OAAO,EAAE,sBAAsB,EAAE,MAAM,iBAAiB,CAAC;AAEzD;;;;;GAKG;AACH,SAAe,cAAc;;QAC3B,MAAM,cAAc,GAAG,OAAO,CAAC;QAC/B,MAAM,iBAAiB,GAAG,QAAQ,CAAC;QACnC,MAAM,YAAY,GAAG,cAAc,CAAC;QACpC,MAAM,UAAU,GAAmB;YACjC,QAAQ,EAAE,QAAQ;YAClB,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,IAAI,EAAE,QAAQ,EAAE;SACzC,CAAC;QACF,MAAM,UAAU,GAAG,IAAI,sBAAsB,EAAE,CAAC;QAChD,MAAM,MAAM,GAAG,IAAI,4BAA4B,CAAC,UAAU,EAAE,cAAc,CAAC,CAAC;QAC5E,MAAM,MAAM,GAAG,MAAM,MAAM,CAAC,sBAAsB,CAAC,MAAM,CACvD,iBAAiB,EACjB,YAAY,EACZ,UAAU,CACX,CAAC;QACF,OAAO,CAAC,GAAG,CAAC,MAAM,CAAC,CAAC;IACtB,CAAC;CAAA;AAED,cAAc,EAAE,CAAC,KAAK,CAAC,OAAO,CAAC,KAAK,CAAC,CAAC"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"managedServiceIdentityClient.d.ts","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,QAAQ,MAAM,kBAAkB,CAAC;AAM7C,OAAO,EACL,wBAAwB,EACxB,UAAU,EACV,sBAAsB,EACvB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,0CAA0C,EAAE,MAAM,UAAU,CAAC;AAEtE,qBAAa,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IACxE,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;gBAED,WAAW,EAAE,QAAQ,CAAC,eAAe,EACrC,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,0CAA0C;
|
1
|
+
{"version":3,"file":"managedServiceIdentityClient.d.ts","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,QAAQ,MAAM,kBAAkB,CAAC;AAM7C,OAAO,EACL,wBAAwB,EACxB,UAAU,EACV,sBAAsB,EACvB,MAAM,wBAAwB,CAAC;AAChC,OAAO,EAAE,0CAA0C,EAAE,MAAM,UAAU,CAAC;AAEtE,qBAAa,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IACxE,KAAK,EAAE,MAAM,CAAC;IACd,UAAU,EAAE,MAAM,CAAC;IACnB,cAAc,EAAE,MAAM,CAAC;IAEvB;;;;;OAKG;gBAED,WAAW,EAAE,QAAQ,CAAC,eAAe,EACrC,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,0CAA0C;IAgDtD,wBAAwB,EAAE,wBAAwB,CAAC;IACnD,UAAU,EAAE,UAAU,CAAC;IACvB,sBAAsB,EAAE,sBAAsB,CAAC;CAChD"}
|
@@ -15,6 +15,7 @@ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
|
15
15
|
* @param options The parameter options
|
16
16
|
*/
|
17
17
|
constructor(credentials, subscriptionId, options) {
|
18
|
+
var _a, _b;
|
18
19
|
if (credentials === undefined) {
|
19
20
|
throw new Error("'credentials' cannot be null");
|
20
21
|
}
|
@@ -29,7 +30,7 @@ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
|
29
30
|
requestContentType: "application/json; charset=utf-8",
|
30
31
|
credential: credentials
|
31
32
|
};
|
32
|
-
const packageDetails = `azsdk-js-arm-msi/2.0.
|
33
|
+
const packageDetails = `azsdk-js-arm-msi/2.1.0-beta.1`;
|
33
34
|
const userAgentPrefix = options.userAgentOptions && options.userAgentOptions.userAgentPrefix
|
34
35
|
? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`
|
35
36
|
: `${packageDetails}`;
|
@@ -38,13 +39,13 @@ export class ManagedServiceIdentityClient extends coreClient.ServiceClient {
|
|
38
39
|
}
|
39
40
|
const optionsWithDefaults = Object.assign(Object.assign(Object.assign({}, defaults), options), { userAgentOptions: {
|
40
41
|
userAgentPrefix
|
41
|
-
}, baseUri: options.endpoint
|
42
|
+
}, baseUri: (_b = (_a = options.endpoint) !== null && _a !== void 0 ? _a : options.baseUri) !== null && _b !== void 0 ? _b : "https://management.azure.com" });
|
42
43
|
super(optionsWithDefaults);
|
43
44
|
// Parameter assignments
|
44
45
|
this.subscriptionId = subscriptionId;
|
45
46
|
// Assigning values to Constant parameters
|
46
47
|
this.$host = options.$host || "https://management.azure.com";
|
47
|
-
this.apiVersion = options.apiVersion || "
|
48
|
+
this.apiVersion = options.apiVersion || "2021-09-30-preview";
|
48
49
|
this.systemAssignedIdentities = new SystemAssignedIdentitiesImpl(this);
|
49
50
|
this.operations = new OperationsImpl(this);
|
50
51
|
this.userAssignedIdentities = new UserAssignedIdentitiesImpl(this);
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"managedServiceIdentityClient.js","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,OAAO,EACL,4BAA4B,EAC5B,cAAc,EACd,0BAA0B,EAC3B,MAAM,cAAc,CAAC;AAQtB,MAAM,OAAO,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IAKxE;;;;;OAKG;IACH,YACE,WAAqC,EACrC,cAAsB,EACtB,OAAoD
|
1
|
+
{"version":3,"file":"managedServiceIdentityClient.js","sourceRoot":"","sources":["../../src/managedServiceIdentityClient.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,OAAO,EACL,4BAA4B,EAC5B,cAAc,EACd,0BAA0B,EAC3B,MAAM,cAAc,CAAC;AAQtB,MAAM,OAAO,4BAA6B,SAAQ,UAAU,CAAC,aAAa;IAKxE;;;;;OAKG;IACH,YACE,WAAqC,EACrC,cAAsB,EACtB,OAAoD;;QAEpD,IAAI,WAAW,KAAK,SAAS,EAAE;YAC7B,MAAM,IAAI,KAAK,CAAC,8BAA8B,CAAC,CAAC;SACjD;QACD,IAAI,cAAc,KAAK,SAAS,EAAE;YAChC,MAAM,IAAI,KAAK,CAAC,iCAAiC,CAAC,CAAC;SACpD;QAED,0CAA0C;QAC1C,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,MAAM,QAAQ,GAA+C;YAC3D,kBAAkB,EAAE,iCAAiC;YACrD,UAAU,EAAE,WAAW;SACxB,CAAC;QAEF,MAAM,cAAc,GAAG,+BAA+B,CAAC;QACvD,MAAM,eAAe,GACnB,OAAO,CAAC,gBAAgB,IAAI,OAAO,CAAC,gBAAgB,CAAC,eAAe;YAClE,CAAC,CAAC,GAAG,OAAO,CAAC,gBAAgB,CAAC,eAAe,IAAI,cAAc,EAAE;YACjE,CAAC,CAAC,GAAG,cAAc,EAAE,CAAC;QAE1B,IAAI,CAAC,OAAO,CAAC,gBAAgB,EAAE;YAC7B,OAAO,CAAC,gBAAgB,GAAG,CAAC,uCAAuC,CAAC,CAAC;SACtE;QACD,MAAM,mBAAmB,iDACpB,QAAQ,GACR,OAAO,KACV,gBAAgB,EAAE;gBAChB,eAAe;aAChB,EACD,OAAO,EACL,MAAA,MAAA,OAAO,CAAC,QAAQ,mCAAI,OAAO,CAAC,OAAO,mCAAI,8BAA8B,GACxE,CAAC;QACF,KAAK,CAAC,mBAAmB,CAAC,CAAC;QAC3B,wBAAwB;QACxB,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QAErC,0CAA0C;QAC1C,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,8BAA8B,CAAC;QAC7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,oBAAoB,CAAC;QAC7D,IAAI,CAAC,wBAAwB,GAAG,IAAI,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACvE,IAAI,CAAC,UAAU,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;QAC3C,IAAI,CAAC,sBAAsB,GAAG,IAAI,0BAA0B,CAAC,IAAI,CAAC,CAAC;IACrE,CAAC;CAKF"}
|
@@ -65,6 +65,57 @@ export interface UserAssignedIdentitiesListResult {
|
|
65
65
|
/** The url to get the next page of results, if any. */
|
66
66
|
nextLink?: string;
|
67
67
|
}
|
68
|
+
/** Azure resources returned by the resource action to get a list of assigned resources. */
|
69
|
+
export interface AssociatedResourcesListResult {
|
70
|
+
/**
|
71
|
+
* Total number of Azure resources assigned to the identity.
|
72
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
73
|
+
*/
|
74
|
+
readonly totalCount?: number;
|
75
|
+
/**
|
76
|
+
* The collection of Azure resources returned by the resource action to get a list of assigned resources.
|
77
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
78
|
+
*/
|
79
|
+
readonly value?: AzureResource[];
|
80
|
+
/**
|
81
|
+
* The url to get the next page of results, if any.
|
82
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
83
|
+
*/
|
84
|
+
readonly nextLink?: string;
|
85
|
+
}
|
86
|
+
/** Describes an Azure resource that is attached to an identity. */
|
87
|
+
export interface AzureResource {
|
88
|
+
/**
|
89
|
+
* The ID of this resource.
|
90
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
91
|
+
*/
|
92
|
+
readonly id?: string;
|
93
|
+
/**
|
94
|
+
* The name of this resource.
|
95
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
96
|
+
*/
|
97
|
+
readonly name?: string;
|
98
|
+
/**
|
99
|
+
* The type of this resource.
|
100
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
101
|
+
*/
|
102
|
+
readonly type?: string;
|
103
|
+
/**
|
104
|
+
* The name of the resource group this resource belongs to.
|
105
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
106
|
+
*/
|
107
|
+
readonly resourceGroup?: string;
|
108
|
+
/**
|
109
|
+
* The ID of the subscription this resource belongs to.
|
110
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
111
|
+
*/
|
112
|
+
readonly subscriptionId?: string;
|
113
|
+
/**
|
114
|
+
* The name of the subscription this resource belongs to.
|
115
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
116
|
+
*/
|
117
|
+
readonly subscriptionDisplayName?: string;
|
118
|
+
}
|
68
119
|
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
69
120
|
export declare type ProxyResource = Resource & {};
|
70
121
|
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
@@ -173,6 +224,21 @@ export interface UserAssignedIdentitiesListByResourceGroupOptionalParams extends
|
|
173
224
|
/** Contains response data for the listByResourceGroup operation. */
|
174
225
|
export declare type UserAssignedIdentitiesListByResourceGroupResponse = UserAssignedIdentitiesListResult;
|
175
226
|
/** Optional parameters. */
|
227
|
+
export interface UserAssignedIdentitiesListAssociatedResourcesOptionalParams extends coreClient.OperationOptions {
|
228
|
+
/** OData filter expression to apply to the query. */
|
229
|
+
filter?: string;
|
230
|
+
/** OData orderBy expression to apply to the query. */
|
231
|
+
orderby?: string;
|
232
|
+
/** Number of records to return. */
|
233
|
+
top?: number;
|
234
|
+
/** Number of records to skip. */
|
235
|
+
skip?: number;
|
236
|
+
/** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */
|
237
|
+
skiptoken?: string;
|
238
|
+
}
|
239
|
+
/** Contains response data for the listAssociatedResources operation. */
|
240
|
+
export declare type UserAssignedIdentitiesListAssociatedResourcesResponse = AssociatedResourcesListResult;
|
241
|
+
/** Optional parameters. */
|
176
242
|
export interface UserAssignedIdentitiesCreateOrUpdateOptionalParams extends coreClient.OperationOptions {
|
177
243
|
}
|
178
244
|
/** Contains response data for the createOrUpdate operation. */
|
@@ -201,6 +267,21 @@ export interface UserAssignedIdentitiesListByResourceGroupNextOptionalParams ext
|
|
201
267
|
/** Contains response data for the listByResourceGroupNext operation. */
|
202
268
|
export declare type UserAssignedIdentitiesListByResourceGroupNextResponse = UserAssignedIdentitiesListResult;
|
203
269
|
/** Optional parameters. */
|
270
|
+
export interface UserAssignedIdentitiesListAssociatedResourcesNextOptionalParams extends coreClient.OperationOptions {
|
271
|
+
/** OData filter expression to apply to the query. */
|
272
|
+
filter?: string;
|
273
|
+
/** OData orderBy expression to apply to the query. */
|
274
|
+
orderby?: string;
|
275
|
+
/** Number of records to return. */
|
276
|
+
top?: number;
|
277
|
+
/** Number of records to skip. */
|
278
|
+
skip?: number;
|
279
|
+
/** A skip token is used to continue retrieving items after an operation returns a partial result. If a previous response contains a nextLink element, the value of the nextLink element will include a skipToken parameter that specifies a starting point to use for subsequent calls. */
|
280
|
+
skiptoken?: string;
|
281
|
+
}
|
282
|
+
/** Contains response data for the listAssociatedResourcesNext operation. */
|
283
|
+
export declare type UserAssignedIdentitiesListAssociatedResourcesNextResponse = AssociatedResourcesListResult;
|
284
|
+
/** Optional parameters. */
|
204
285
|
export interface ManagedServiceIdentityClientOptionalParams extends coreClient.ServiceClientOptions {
|
205
286
|
/** server parameter */
|
206
287
|
$host?: string;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/models/index.ts"],"names":[],"mappings":"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"}
|
@@ -6,6 +6,8 @@ export declare const OperationListResult: coreClient.CompositeMapper;
|
|
6
6
|
export declare const Operation: coreClient.CompositeMapper;
|
7
7
|
export declare const OperationDisplay: coreClient.CompositeMapper;
|
8
8
|
export declare const UserAssignedIdentitiesListResult: coreClient.CompositeMapper;
|
9
|
+
export declare const AssociatedResourcesListResult: coreClient.CompositeMapper;
|
10
|
+
export declare const AzureResource: coreClient.CompositeMapper;
|
9
11
|
export declare const ProxyResource: coreClient.CompositeMapper;
|
10
12
|
export declare const TrackedResource: coreClient.CompositeMapper;
|
11
13
|
export declare const IdentityUpdate: coreClient.CompositeMapper;
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAcnC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqCvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyB5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAoBlC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eAyBzD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0CvC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAkD/C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA6BjC,CAAC"}
|
1
|
+
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"AAQA,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AAEjD,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA4BjC,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,UAAU,CAAC,eAcnC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eAqCvC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,UAAU,CAAC,eAyB5C,CAAC;AAEF,eAAO,MAAM,SAAS,EAAE,UAAU,CAAC,eAoBlC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,UAAU,CAAC,eA+BzC,CAAC;AAEF,eAAO,MAAM,gCAAgC,EAAE,UAAU,CAAC,eAyBzD,CAAC;AAEF,eAAO,MAAM,6BAA6B,EAAE,UAAU,CAAC,eAkCtD,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAiDtC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,UAAU,CAAC,eAQtC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,UAAU,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,UAAU,CAAC,eA0CvC,CAAC;AAEF,eAAO,MAAM,sBAAsB,EAAE,UAAU,CAAC,eAkD/C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,UAAU,CAAC,eA6BjC,CAAC"}
|