@azure/arm-msi 0.1.0 → 2.0.0
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 +11 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +75 -73
- package/dist/index.js +1029 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts +20 -0
- package/dist-esm/src/managedServiceIdentityClient.d.ts.map +1 -0
- package/dist-esm/src/managedServiceIdentityClient.js +53 -0
- package/dist-esm/src/managedServiceIdentityClient.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +212 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +9 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +14 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +325 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +13 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +113 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +4 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +11 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +32 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +120 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts +20 -0
- package/dist-esm/src/operations/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js +48 -0
- package/dist-esm/src/operations/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts +83 -0
- package/dist-esm/src/operations/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operations/userAssignedIdentities.js +359 -0
- package/dist-esm/src/operations/userAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +11 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts +12 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/systemAssignedIdentities.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js +9 -0
- package/dist-esm/src/operationsInterfaces/userAssignedIdentities.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +69 -34
- package/review/arm-msi.api.md +218 -0
- package/rollup.config.js +184 -27
- package/src/index.ts +12 -0
- package/src/managedServiceIdentityClient.ts +87 -0
- package/src/models/index.ts +248 -0
- package/src/models/mappers.ts +364 -0
- package/src/models/parameters.ts +132 -0
- package/{lib → src}/operations/index.ts +4 -5
- package/src/operations/operations.ts +137 -0
- package/src/operations/systemAssignedIdentities.ts +65 -0
- package/src/operations/userAssignedIdentities.ts +450 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +22 -0
- package/src/operationsInterfaces/systemAssignedIdentities.ts +26 -0
- package/src/operationsInterfaces/userAssignedIdentities.ts +91 -0
- package/tsconfig.json +4 -4
- package/types/arm-msi.d.ts +330 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-msi.js +0 -820
- package/dist/arm-msi.js.map +0 -1
- package/dist/arm-msi.min.js +0 -1
- package/dist/arm-msi.min.js.map +0 -1
- package/esm/managedServiceIdentityClient.d.ts +0 -19
- package/esm/managedServiceIdentityClient.d.ts.map +0 -1
- package/esm/managedServiceIdentityClient.js +0 -34
- package/esm/managedServiceIdentityClient.js.map +0 -1
- package/esm/managedServiceIdentityClientContext.d.ts +0 -16
- package/esm/managedServiceIdentityClientContext.d.ts.map +0 -1
- package/esm/managedServiceIdentityClientContext.js +0 -56
- package/esm/managedServiceIdentityClientContext.js.map +0 -1
- package/esm/models/index.d.ts +0 -332
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -9
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -197
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -71
- package/esm/models/parameters.js.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.d.ts +0 -2
- package/esm/models/userAssignedIdentitiesMappers.d.ts.map +0 -1
- package/esm/models/userAssignedIdentitiesMappers.js +0 -11
- package/esm/models/userAssignedIdentitiesMappers.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -46
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/esm/operations/userAssignedIdentities.d.ts +0 -172
- package/esm/operations/userAssignedIdentities.d.ts.map +0 -1
- package/esm/operations/userAssignedIdentities.js +0 -272
- package/esm/operations/userAssignedIdentities.js.map +0 -1
- package/lib/managedServiceIdentityClient.ts +0 -44
- package/lib/managedServiceIdentityClientContext.ts +0 -62
- package/lib/models/index.ts +0 -358
- package/lib/models/mappers.ts +0 -204
- package/lib/models/operationsMappers.ts +0 -17
- package/lib/models/parameters.ts +0 -73
- package/lib/models/userAssignedIdentitiesMappers.ts +0 -17
- package/lib/operations/operations.ts +0 -123
- package/lib/operations/userAssignedIdentities.ts +0 -479
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"userAssignedIdentitiesMappers.d.ts","sourceRoot":"","sources":["../../lib/models/userAssignedIdentitiesMappers.ts"],"names":[],"mappings":"AAUA,OAAO,EACL,gCAAgC,EAChC,QAAQ,EACR,YAAY,EACZ,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
@@ -1,11 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
export { UserAssignedIdentitiesListResult, Identity, BaseResource, CloudError } from "../models/mappers";
|
11
|
-
//# sourceMappingURL=userAssignedIdentitiesMappers.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"userAssignedIdentitiesMappers.js","sourceRoot":"","sources":["../../lib/models/userAssignedIdentitiesMappers.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,EACL,gCAAgC,EAChC,QAAQ,EACR,YAAY,EACZ,UAAU,EACX,MAAM,mBAAmB,CAAC"}
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../lib/operations/index.ts"],"names":[],"mappings":"AAUA,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
|
package/esm/operations/index.js
DELETED
@@ -1,12 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
export * from "./operations";
|
11
|
-
export * from "./userAssignedIdentities";
|
12
|
-
//# sourceMappingURL=index.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../lib/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,cAAc,cAAc,CAAC;AAC7B,cAAc,0BAA0B,CAAC"}
|
@@ -1,46 +0,0 @@
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
2
|
-
import * as Models from "../models";
|
3
|
-
import { ManagedServiceIdentityClientContext } from "../managedServiceIdentityClientContext";
|
4
|
-
/** Class representing a Operations. */
|
5
|
-
export declare class Operations {
|
6
|
-
private readonly client;
|
7
|
-
/**
|
8
|
-
* Create a Operations.
|
9
|
-
* @param {ManagedServiceIdentityClientContext} client Reference to the service client.
|
10
|
-
*/
|
11
|
-
constructor(client: ManagedServiceIdentityClientContext);
|
12
|
-
/**
|
13
|
-
* Lists available operations for the Microsoft.ManagedIdentity provider
|
14
|
-
* @param [options] The optional parameters
|
15
|
-
* @returns Promise<Models.OperationsListResponse>
|
16
|
-
*/
|
17
|
-
list(options?: msRest.RequestOptionsBase): Promise<Models.OperationsListResponse>;
|
18
|
-
/**
|
19
|
-
* @param callback The callback
|
20
|
-
*/
|
21
|
-
list(callback: msRest.ServiceCallback<Models.OperationListResult>): void;
|
22
|
-
/**
|
23
|
-
* @param options The optional parameters
|
24
|
-
* @param callback The callback
|
25
|
-
*/
|
26
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
|
27
|
-
/**
|
28
|
-
* Lists available operations for the Microsoft.ManagedIdentity provider
|
29
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
30
|
-
* @param [options] The optional parameters
|
31
|
-
* @returns Promise<Models.OperationsListNextResponse>
|
32
|
-
*/
|
33
|
-
listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.OperationsListNextResponse>;
|
34
|
-
/**
|
35
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
36
|
-
* @param callback The callback
|
37
|
-
*/
|
38
|
-
listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
|
39
|
-
/**
|
40
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
41
|
-
* @param options The optional parameters
|
42
|
-
* @param callback The callback
|
43
|
-
*/
|
44
|
-
listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
|
45
|
-
}
|
46
|
-
//# sourceMappingURL=operations.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../lib/operations/operations.ts"],"names":[],"mappings":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,mCAAmC,EAAE,MAAM,wCAAwC,CAAC;AAE7F,uCAAuC;AACvC,qBAAa,UAAU;IACrB,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAsC;IAE7D;;;OAGG;gBACS,MAAM,EAAE,mCAAmC;IAIvD;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,sBAAsB,CAAC;IACjF;;OAEG;IACH,IAAI,CAAC,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IACxE;;;OAGG;IACH,IAAI,CAAC,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAU5G;;;;;OAKG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,0BAA0B,CAAC;IAC/G;;;OAGG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;IAClG;;;;OAIG;IACH,QAAQ,CAAC,YAAY,EAAE,MAAM,EAAE,OAAO,EAAE,MAAM,CAAC,kBAAkB,EAAE,QAAQ,EAAE,MAAM,CAAC,eAAe,CAAC,MAAM,CAAC,mBAAmB,CAAC,GAAG,IAAI;CAUvI"}
|
@@ -1,77 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
import * as msRest from "@azure/ms-rest-js";
|
11
|
-
import * as Mappers from "../models/operationsMappers";
|
12
|
-
import * as Parameters from "../models/parameters";
|
13
|
-
/** Class representing a Operations. */
|
14
|
-
var Operations = /** @class */ (function () {
|
15
|
-
/**
|
16
|
-
* Create a Operations.
|
17
|
-
* @param {ManagedServiceIdentityClientContext} client Reference to the service client.
|
18
|
-
*/
|
19
|
-
function Operations(client) {
|
20
|
-
this.client = client;
|
21
|
-
}
|
22
|
-
Operations.prototype.list = function (options, callback) {
|
23
|
-
return this.client.sendOperationRequest({
|
24
|
-
options: options
|
25
|
-
}, listOperationSpec, callback);
|
26
|
-
};
|
27
|
-
Operations.prototype.listNext = function (nextPageLink, options, callback) {
|
28
|
-
return this.client.sendOperationRequest({
|
29
|
-
nextPageLink: nextPageLink,
|
30
|
-
options: options
|
31
|
-
}, listNextOperationSpec, callback);
|
32
|
-
};
|
33
|
-
return Operations;
|
34
|
-
}());
|
35
|
-
export { Operations };
|
36
|
-
// Operation Specifications
|
37
|
-
var serializer = new msRest.Serializer(Mappers);
|
38
|
-
var listOperationSpec = {
|
39
|
-
httpMethod: "GET",
|
40
|
-
path: "providers/Microsoft.ManagedIdentity/operations",
|
41
|
-
queryParameters: [
|
42
|
-
Parameters.apiVersion
|
43
|
-
],
|
44
|
-
headerParameters: [
|
45
|
-
Parameters.acceptLanguage
|
46
|
-
],
|
47
|
-
responses: {
|
48
|
-
200: {
|
49
|
-
bodyMapper: Mappers.OperationListResult
|
50
|
-
},
|
51
|
-
default: {
|
52
|
-
bodyMapper: Mappers.CloudError
|
53
|
-
}
|
54
|
-
},
|
55
|
-
serializer: serializer
|
56
|
-
};
|
57
|
-
var listNextOperationSpec = {
|
58
|
-
httpMethod: "GET",
|
59
|
-
baseUrl: "https://management.azure.com",
|
60
|
-
path: "{nextLink}",
|
61
|
-
urlParameters: [
|
62
|
-
Parameters.nextPageLink
|
63
|
-
],
|
64
|
-
headerParameters: [
|
65
|
-
Parameters.acceptLanguage
|
66
|
-
],
|
67
|
-
responses: {
|
68
|
-
200: {
|
69
|
-
bodyMapper: Mappers.OperationListResult
|
70
|
-
},
|
71
|
-
default: {
|
72
|
-
bodyMapper: Mappers.CloudError
|
73
|
-
}
|
74
|
-
},
|
75
|
-
serializer: serializer
|
76
|
-
};
|
77
|
-
//# sourceMappingURL=operations.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../../lib/operations/operations.ts"],"names":[],"mappings":"AAAA;;;;;;;;GAQG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,6BAA6B,CAAC;AACvD,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,uCAAuC;AACvC;IAGE;;;OAGG;IACH,oBAAY,MAA2C;QACrD,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAiBD,yBAAI,GAAJ,UAAK,OAAwF,EAAE,QAA6D;QAC1J,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAA2C,CAAC;IACxD,CAAC;IAoBD,6BAAQ,GAAR,UAAS,YAAoB,EAAE,OAAwF,EAAE,QAA6D;QACpL,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,YAAY,cAAA;YACZ,OAAO,SAAA;SACR,EACD,qBAAqB,EACrB,QAAQ,CAA+C,CAAC;IAC5D,CAAC;IACH,iBAAC;AAAD,CAAC,AA9DD,IA8DC;;AAED,2BAA2B;AAC3B,IAAM,UAAU,GAAG,IAAI,MAAM,CAAC,UAAU,CAAC,OAAO,CAAC,CAAC;AAClD,IAAM,iBAAiB,GAAyB;IAC9C,UAAU,EAAE,KAAK;IACjB,IAAI,EAAE,gDAAgD;IACtD,eAAe,EAAE;QACf,UAAU,CAAC,UAAU;KACtB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC;AAEF,IAAM,qBAAqB,GAAyB;IAClD,UAAU,EAAE,KAAK;IACjB,OAAO,EAAE,8BAA8B;IACvC,IAAI,EAAE,YAAY;IAClB,aAAa,EAAE;QACb,UAAU,CAAC,YAAY;KACxB;IACD,gBAAgB,EAAE;QAChB,UAAU,CAAC,cAAc;KAC1B;IACD,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,UAAU;SAC/B;KACF;IACD,UAAU,YAAA;CACX,CAAC"}
|
@@ -1,172 +0,0 @@
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
2
|
-
import * as Models from "../models";
|
3
|
-
import { ManagedServiceIdentityClientContext } from "../managedServiceIdentityClientContext";
|
4
|
-
/** Class representing a UserAssignedIdentities. */
|
5
|
-
export declare class UserAssignedIdentities {
|
6
|
-
private readonly client;
|
7
|
-
/**
|
8
|
-
* Create a UserAssignedIdentities.
|
9
|
-
* @param {ManagedServiceIdentityClientContext} client Reference to the service client.
|
10
|
-
*/
|
11
|
-
constructor(client: ManagedServiceIdentityClientContext);
|
12
|
-
/**
|
13
|
-
* Lists all the userAssignedIdentities available under the specified subscription.
|
14
|
-
* @param [options] The optional parameters
|
15
|
-
* @returns Promise<Models.UserAssignedIdentitiesListBySubscriptionResponse>
|
16
|
-
*/
|
17
|
-
listBySubscription(options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListBySubscriptionResponse>;
|
18
|
-
/**
|
19
|
-
* @param callback The callback
|
20
|
-
*/
|
21
|
-
listBySubscription(callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
22
|
-
/**
|
23
|
-
* @param options The optional parameters
|
24
|
-
* @param callback The callback
|
25
|
-
*/
|
26
|
-
listBySubscription(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
27
|
-
/**
|
28
|
-
* Lists all the userAssignedIdentities available under the specified ResourceGroup.
|
29
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
30
|
-
* @param [options] The optional parameters
|
31
|
-
* @returns Promise<Models.UserAssignedIdentitiesListByResourceGroupResponse>
|
32
|
-
*/
|
33
|
-
listByResourceGroup(resourceGroupName: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListByResourceGroupResponse>;
|
34
|
-
/**
|
35
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
36
|
-
* @param callback The callback
|
37
|
-
*/
|
38
|
-
listByResourceGroup(resourceGroupName: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
39
|
-
/**
|
40
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
41
|
-
* @param options The optional parameters
|
42
|
-
* @param callback The callback
|
43
|
-
*/
|
44
|
-
listByResourceGroup(resourceGroupName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
45
|
-
/**
|
46
|
-
* Create or update an identity in the specified subscription and resource group.
|
47
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
48
|
-
* @param resourceName The name of the identity resource.
|
49
|
-
* @param parameters Parameters to create or update the identity
|
50
|
-
* @param [options] The optional parameters
|
51
|
-
* @returns Promise<Models.UserAssignedIdentitiesCreateOrUpdateResponse>
|
52
|
-
*/
|
53
|
-
createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesCreateOrUpdateResponse>;
|
54
|
-
/**
|
55
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
56
|
-
* @param resourceName The name of the identity resource.
|
57
|
-
* @param parameters Parameters to create or update the identity
|
58
|
-
* @param callback The callback
|
59
|
-
*/
|
60
|
-
createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, callback: msRest.ServiceCallback<Models.Identity>): void;
|
61
|
-
/**
|
62
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
63
|
-
* @param resourceName The name of the identity resource.
|
64
|
-
* @param parameters Parameters to create or update the identity
|
65
|
-
* @param options The optional parameters
|
66
|
-
* @param callback The callback
|
67
|
-
*/
|
68
|
-
createOrUpdate(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
|
69
|
-
/**
|
70
|
-
* Update an identity in the specified subscription and resource group.
|
71
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
72
|
-
* @param resourceName The name of the identity resource.
|
73
|
-
* @param parameters Parameters to update the identity
|
74
|
-
* @param [options] The optional parameters
|
75
|
-
* @returns Promise<Models.UserAssignedIdentitiesUpdateResponse>
|
76
|
-
*/
|
77
|
-
update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesUpdateResponse>;
|
78
|
-
/**
|
79
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
80
|
-
* @param resourceName The name of the identity resource.
|
81
|
-
* @param parameters Parameters to update the identity
|
82
|
-
* @param callback The callback
|
83
|
-
*/
|
84
|
-
update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, callback: msRest.ServiceCallback<Models.Identity>): void;
|
85
|
-
/**
|
86
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
87
|
-
* @param resourceName The name of the identity resource.
|
88
|
-
* @param parameters Parameters to update the identity
|
89
|
-
* @param options The optional parameters
|
90
|
-
* @param callback The callback
|
91
|
-
*/
|
92
|
-
update(resourceGroupName: string, resourceName: string, parameters: Models.Identity, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
|
93
|
-
/**
|
94
|
-
* Gets the identity.
|
95
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
96
|
-
* @param resourceName The name of the identity resource.
|
97
|
-
* @param [options] The optional parameters
|
98
|
-
* @returns Promise<Models.UserAssignedIdentitiesGetResponse>
|
99
|
-
*/
|
100
|
-
get(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesGetResponse>;
|
101
|
-
/**
|
102
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
103
|
-
* @param resourceName The name of the identity resource.
|
104
|
-
* @param callback The callback
|
105
|
-
*/
|
106
|
-
get(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<Models.Identity>): void;
|
107
|
-
/**
|
108
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
109
|
-
* @param resourceName The name of the identity resource.
|
110
|
-
* @param options The optional parameters
|
111
|
-
* @param callback The callback
|
112
|
-
*/
|
113
|
-
get(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.Identity>): void;
|
114
|
-
/**
|
115
|
-
* Deletes the identity.
|
116
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
117
|
-
* @param resourceName The name of the identity resource.
|
118
|
-
* @param [options] The optional parameters
|
119
|
-
* @returns Promise<msRest.RestResponse>
|
120
|
-
*/
|
121
|
-
deleteMethod(resourceGroupName: string, resourceName: string, options?: msRest.RequestOptionsBase): Promise<msRest.RestResponse>;
|
122
|
-
/**
|
123
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
124
|
-
* @param resourceName The name of the identity resource.
|
125
|
-
* @param callback The callback
|
126
|
-
*/
|
127
|
-
deleteMethod(resourceGroupName: string, resourceName: string, callback: msRest.ServiceCallback<void>): void;
|
128
|
-
/**
|
129
|
-
* @param resourceGroupName The name of the Resource Group to which the identity belongs.
|
130
|
-
* @param resourceName The name of the identity resource.
|
131
|
-
* @param options The optional parameters
|
132
|
-
* @param callback The callback
|
133
|
-
*/
|
134
|
-
deleteMethod(resourceGroupName: string, resourceName: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<void>): void;
|
135
|
-
/**
|
136
|
-
* Lists all the userAssignedIdentities available under the specified subscription.
|
137
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
138
|
-
* @param [options] The optional parameters
|
139
|
-
* @returns Promise<Models.UserAssignedIdentitiesListBySubscriptionNextResponse>
|
140
|
-
*/
|
141
|
-
listBySubscriptionNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListBySubscriptionNextResponse>;
|
142
|
-
/**
|
143
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
144
|
-
* @param callback The callback
|
145
|
-
*/
|
146
|
-
listBySubscriptionNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
147
|
-
/**
|
148
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
149
|
-
* @param options The optional parameters
|
150
|
-
* @param callback The callback
|
151
|
-
*/
|
152
|
-
listBySubscriptionNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
153
|
-
/**
|
154
|
-
* Lists all the userAssignedIdentities available under the specified ResourceGroup.
|
155
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
156
|
-
* @param [options] The optional parameters
|
157
|
-
* @returns Promise<Models.UserAssignedIdentitiesListByResourceGroupNextResponse>
|
158
|
-
*/
|
159
|
-
listByResourceGroupNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.UserAssignedIdentitiesListByResourceGroupNextResponse>;
|
160
|
-
/**
|
161
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
162
|
-
* @param callback The callback
|
163
|
-
*/
|
164
|
-
listByResourceGroupNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
165
|
-
/**
|
166
|
-
* @param nextPageLink The NextLink from the previous successful call to List operation.
|
167
|
-
* @param options The optional parameters
|
168
|
-
* @param callback The callback
|
169
|
-
*/
|
170
|
-
listByResourceGroupNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.UserAssignedIdentitiesListResult>): void;
|
171
|
-
}
|
172
|
-
//# sourceMappingURL=userAssignedIdentities.d.ts.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"userAssignedIdentities.d.ts","sourceRoot":"","sources":["../../lib/operations/userAssignedIdentities.ts"],"names":[],"mappings":"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"}
|
@@ -1,272 +0,0 @@
|
|
1
|
-
/*
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for
|
4
|
-
* license information.
|
5
|
-
*
|
6
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
9
|
-
*/
|
10
|
-
import * as tslib_1 from "tslib";
|
11
|
-
import * as msRest from "@azure/ms-rest-js";
|
12
|
-
import * as Mappers from "../models/userAssignedIdentitiesMappers";
|
13
|
-
import * as Parameters from "../models/parameters";
|
14
|
-
/** Class representing a UserAssignedIdentities. */
|
15
|
-
var UserAssignedIdentities = /** @class */ (function () {
|
16
|
-
/**
|
17
|
-
* Create a UserAssignedIdentities.
|
18
|
-
* @param {ManagedServiceIdentityClientContext} client Reference to the service client.
|
19
|
-
*/
|
20
|
-
function UserAssignedIdentities(client) {
|
21
|
-
this.client = client;
|
22
|
-
}
|
23
|
-
UserAssignedIdentities.prototype.listBySubscription = function (options, callback) {
|
24
|
-
return this.client.sendOperationRequest({
|
25
|
-
options: options
|
26
|
-
}, listBySubscriptionOperationSpec, callback);
|
27
|
-
};
|
28
|
-
UserAssignedIdentities.prototype.listByResourceGroup = function (resourceGroupName, options, callback) {
|
29
|
-
return this.client.sendOperationRequest({
|
30
|
-
resourceGroupName: resourceGroupName,
|
31
|
-
options: options
|
32
|
-
}, listByResourceGroupOperationSpec, callback);
|
33
|
-
};
|
34
|
-
UserAssignedIdentities.prototype.createOrUpdate = function (resourceGroupName, resourceName, parameters, options, callback) {
|
35
|
-
return this.client.sendOperationRequest({
|
36
|
-
resourceGroupName: resourceGroupName,
|
37
|
-
resourceName: resourceName,
|
38
|
-
parameters: parameters,
|
39
|
-
options: options
|
40
|
-
}, createOrUpdateOperationSpec, callback);
|
41
|
-
};
|
42
|
-
UserAssignedIdentities.prototype.update = function (resourceGroupName, resourceName, parameters, options, callback) {
|
43
|
-
return this.client.sendOperationRequest({
|
44
|
-
resourceGroupName: resourceGroupName,
|
45
|
-
resourceName: resourceName,
|
46
|
-
parameters: parameters,
|
47
|
-
options: options
|
48
|
-
}, updateOperationSpec, callback);
|
49
|
-
};
|
50
|
-
UserAssignedIdentities.prototype.get = function (resourceGroupName, resourceName, options, callback) {
|
51
|
-
return this.client.sendOperationRequest({
|
52
|
-
resourceGroupName: resourceGroupName,
|
53
|
-
resourceName: resourceName,
|
54
|
-
options: options
|
55
|
-
}, getOperationSpec, callback);
|
56
|
-
};
|
57
|
-
UserAssignedIdentities.prototype.deleteMethod = function (resourceGroupName, resourceName, options, callback) {
|
58
|
-
return this.client.sendOperationRequest({
|
59
|
-
resourceGroupName: resourceGroupName,
|
60
|
-
resourceName: resourceName,
|
61
|
-
options: options
|
62
|
-
}, deleteMethodOperationSpec, callback);
|
63
|
-
};
|
64
|
-
UserAssignedIdentities.prototype.listBySubscriptionNext = function (nextPageLink, options, callback) {
|
65
|
-
return this.client.sendOperationRequest({
|
66
|
-
nextPageLink: nextPageLink,
|
67
|
-
options: options
|
68
|
-
}, listBySubscriptionNextOperationSpec, callback);
|
69
|
-
};
|
70
|
-
UserAssignedIdentities.prototype.listByResourceGroupNext = function (nextPageLink, options, callback) {
|
71
|
-
return this.client.sendOperationRequest({
|
72
|
-
nextPageLink: nextPageLink,
|
73
|
-
options: options
|
74
|
-
}, listByResourceGroupNextOperationSpec, callback);
|
75
|
-
};
|
76
|
-
return UserAssignedIdentities;
|
77
|
-
}());
|
78
|
-
export { UserAssignedIdentities };
|
79
|
-
// Operation Specifications
|
80
|
-
var serializer = new msRest.Serializer(Mappers);
|
81
|
-
var listBySubscriptionOperationSpec = {
|
82
|
-
httpMethod: "GET",
|
83
|
-
path: "subscriptions/{subscriptionId}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
|
84
|
-
urlParameters: [
|
85
|
-
Parameters.subscriptionId
|
86
|
-
],
|
87
|
-
queryParameters: [
|
88
|
-
Parameters.apiVersion
|
89
|
-
],
|
90
|
-
headerParameters: [
|
91
|
-
Parameters.acceptLanguage
|
92
|
-
],
|
93
|
-
responses: {
|
94
|
-
200: {
|
95
|
-
bodyMapper: Mappers.UserAssignedIdentitiesListResult
|
96
|
-
},
|
97
|
-
default: {
|
98
|
-
bodyMapper: Mappers.CloudError
|
99
|
-
}
|
100
|
-
},
|
101
|
-
serializer: serializer
|
102
|
-
};
|
103
|
-
var listByResourceGroupOperationSpec = {
|
104
|
-
httpMethod: "GET",
|
105
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities",
|
106
|
-
urlParameters: [
|
107
|
-
Parameters.subscriptionId,
|
108
|
-
Parameters.resourceGroupName
|
109
|
-
],
|
110
|
-
queryParameters: [
|
111
|
-
Parameters.apiVersion
|
112
|
-
],
|
113
|
-
headerParameters: [
|
114
|
-
Parameters.acceptLanguage
|
115
|
-
],
|
116
|
-
responses: {
|
117
|
-
200: {
|
118
|
-
bodyMapper: Mappers.UserAssignedIdentitiesListResult
|
119
|
-
},
|
120
|
-
default: {
|
121
|
-
bodyMapper: Mappers.CloudError
|
122
|
-
}
|
123
|
-
},
|
124
|
-
serializer: serializer
|
125
|
-
};
|
126
|
-
var createOrUpdateOperationSpec = {
|
127
|
-
httpMethod: "PUT",
|
128
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
|
129
|
-
urlParameters: [
|
130
|
-
Parameters.subscriptionId,
|
131
|
-
Parameters.resourceGroupName,
|
132
|
-
Parameters.resourceName
|
133
|
-
],
|
134
|
-
queryParameters: [
|
135
|
-
Parameters.apiVersion
|
136
|
-
],
|
137
|
-
headerParameters: [
|
138
|
-
Parameters.acceptLanguage
|
139
|
-
],
|
140
|
-
requestBody: {
|
141
|
-
parameterPath: "parameters",
|
142
|
-
mapper: tslib_1.__assign({}, Mappers.Identity, { required: true })
|
143
|
-
},
|
144
|
-
responses: {
|
145
|
-
200: {
|
146
|
-
bodyMapper: Mappers.Identity
|
147
|
-
},
|
148
|
-
201: {
|
149
|
-
bodyMapper: Mappers.Identity
|
150
|
-
},
|
151
|
-
default: {
|
152
|
-
bodyMapper: Mappers.CloudError
|
153
|
-
}
|
154
|
-
},
|
155
|
-
serializer: serializer
|
156
|
-
};
|
157
|
-
var updateOperationSpec = {
|
158
|
-
httpMethod: "PATCH",
|
159
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
|
160
|
-
urlParameters: [
|
161
|
-
Parameters.subscriptionId,
|
162
|
-
Parameters.resourceGroupName,
|
163
|
-
Parameters.resourceName
|
164
|
-
],
|
165
|
-
queryParameters: [
|
166
|
-
Parameters.apiVersion
|
167
|
-
],
|
168
|
-
headerParameters: [
|
169
|
-
Parameters.acceptLanguage
|
170
|
-
],
|
171
|
-
requestBody: {
|
172
|
-
parameterPath: "parameters",
|
173
|
-
mapper: tslib_1.__assign({}, Mappers.Identity, { required: true })
|
174
|
-
},
|
175
|
-
responses: {
|
176
|
-
200: {
|
177
|
-
bodyMapper: Mappers.Identity
|
178
|
-
},
|
179
|
-
default: {
|
180
|
-
bodyMapper: Mappers.CloudError
|
181
|
-
}
|
182
|
-
},
|
183
|
-
serializer: serializer
|
184
|
-
};
|
185
|
-
var getOperationSpec = {
|
186
|
-
httpMethod: "GET",
|
187
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
|
188
|
-
urlParameters: [
|
189
|
-
Parameters.subscriptionId,
|
190
|
-
Parameters.resourceGroupName,
|
191
|
-
Parameters.resourceName
|
192
|
-
],
|
193
|
-
queryParameters: [
|
194
|
-
Parameters.apiVersion
|
195
|
-
],
|
196
|
-
headerParameters: [
|
197
|
-
Parameters.acceptLanguage
|
198
|
-
],
|
199
|
-
responses: {
|
200
|
-
200: {
|
201
|
-
bodyMapper: Mappers.Identity
|
202
|
-
},
|
203
|
-
default: {
|
204
|
-
bodyMapper: Mappers.CloudError
|
205
|
-
}
|
206
|
-
},
|
207
|
-
serializer: serializer
|
208
|
-
};
|
209
|
-
var deleteMethodOperationSpec = {
|
210
|
-
httpMethod: "DELETE",
|
211
|
-
path: "subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{resourceName}",
|
212
|
-
urlParameters: [
|
213
|
-
Parameters.subscriptionId,
|
214
|
-
Parameters.resourceGroupName,
|
215
|
-
Parameters.resourceName
|
216
|
-
],
|
217
|
-
queryParameters: [
|
218
|
-
Parameters.apiVersion
|
219
|
-
],
|
220
|
-
headerParameters: [
|
221
|
-
Parameters.acceptLanguage
|
222
|
-
],
|
223
|
-
responses: {
|
224
|
-
200: {},
|
225
|
-
204: {},
|
226
|
-
default: {
|
227
|
-
bodyMapper: Mappers.CloudError
|
228
|
-
}
|
229
|
-
},
|
230
|
-
serializer: serializer
|
231
|
-
};
|
232
|
-
var listBySubscriptionNextOperationSpec = {
|
233
|
-
httpMethod: "GET",
|
234
|
-
baseUrl: "https://management.azure.com",
|
235
|
-
path: "{nextLink}",
|
236
|
-
urlParameters: [
|
237
|
-
Parameters.nextPageLink
|
238
|
-
],
|
239
|
-
headerParameters: [
|
240
|
-
Parameters.acceptLanguage
|
241
|
-
],
|
242
|
-
responses: {
|
243
|
-
200: {
|
244
|
-
bodyMapper: Mappers.UserAssignedIdentitiesListResult
|
245
|
-
},
|
246
|
-
default: {
|
247
|
-
bodyMapper: Mappers.CloudError
|
248
|
-
}
|
249
|
-
},
|
250
|
-
serializer: serializer
|
251
|
-
};
|
252
|
-
var listByResourceGroupNextOperationSpec = {
|
253
|
-
httpMethod: "GET",
|
254
|
-
baseUrl: "https://management.azure.com",
|
255
|
-
path: "{nextLink}",
|
256
|
-
urlParameters: [
|
257
|
-
Parameters.nextPageLink
|
258
|
-
],
|
259
|
-
headerParameters: [
|
260
|
-
Parameters.acceptLanguage
|
261
|
-
],
|
262
|
-
responses: {
|
263
|
-
200: {
|
264
|
-
bodyMapper: Mappers.UserAssignedIdentitiesListResult
|
265
|
-
},
|
266
|
-
default: {
|
267
|
-
bodyMapper: Mappers.CloudError
|
268
|
-
}
|
269
|
-
},
|
270
|
-
serializer: serializer
|
271
|
-
};
|
272
|
-
//# sourceMappingURL=userAssignedIdentities.js.map
|
@@ -1 +0,0 @@
|
|
1
|
-
{"version":3,"file":"userAssignedIdentities.js","sourceRoot":"","sources":["../../lib/operations/userAssignedIdentities.ts"],"names":[],"mappings":"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"}
|