@azure/arm-locks 1.2.0 → 2.0.0-alpha.20211015.3
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 +26 -0
- package/{LICENSE.txt → LICENSE} +2 -2
- package/README.md +63 -80
- package/dist/index.js +1796 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/esm/index.d.ts +534 -0
- package/esm/index.d.ts.map +1 -0
- package/esm/index.js +13 -0
- package/esm/index.js.map +1 -0
- package/esm/managementLockClient.d.ts +9 -18
- package/esm/managementLockClient.d.ts.map +1 -1
- package/esm/managementLockClient.js +12 -28
- package/esm/managementLockClient.js.map +1 -1
- package/esm/managementLockClientContext.d.ts +10 -16
- package/esm/managementLockClientContext.d.ts.map +1 -1
- package/esm/managementLockClientContext.js +34 -46
- package/esm/managementLockClientContext.js.map +1 -1
- package/esm/models/index.d.ts +208 -445
- package/esm/models/index.d.ts.map +1 -1
- package/esm/models/index.js +9 -2
- package/esm/models/index.js.map +1 -1
- package/esm/models/mappers.d.ts +7 -9
- package/esm/models/mappers.d.ts.map +1 -1
- package/esm/models/mappers.js +69 -78
- package/esm/models/mappers.js.map +1 -1
- package/esm/models/parameters.d.ts +16 -13
- package/esm/models/parameters.d.ts.map +1 -1
- package/esm/models/parameters.js +78 -54
- package/esm/models/parameters.js.map +1 -1
- package/esm/operations/authorizationOperations.d.ts +27 -26
- package/esm/operations/authorizationOperations.d.ts.map +1 -1
- package/esm/operations/authorizationOperations.js +158 -50
- package/esm/operations/authorizationOperations.js.map +1 -1
- package/esm/operations/index.d.ts.map +1 -1
- package/esm/operations/index.js +3 -5
- package/esm/operations/index.js.map +1 -1
- package/esm/operations/managementLocks.d.ts +203 -393
- package/esm/operations/managementLocks.d.ts.map +1 -1
- package/esm/operations/managementLocks.js +993 -485
- package/esm/operations/managementLocks.js.map +1 -1
- package/esm/operationsInterfaces/authorizationOperations.d.ts +18 -0
- package/esm/operationsInterfaces/authorizationOperations.d.ts.map +1 -0
- package/esm/operationsInterfaces/authorizationOperations.js +9 -0
- package/esm/operationsInterfaces/authorizationOperations.js.map +1 -0
- package/esm/operationsInterfaces/index.d.ts +3 -0
- package/esm/operationsInterfaces/index.d.ts.map +1 -0
- package/esm/operationsInterfaces/index.js +10 -0
- package/esm/operationsInterfaces/index.js.map +1 -0
- package/esm/operationsInterfaces/managementLocks.d.ts +198 -0
- package/esm/operationsInterfaces/managementLocks.d.ts.map +1 -0
- package/esm/operationsInterfaces/managementLocks.js +9 -0
- package/esm/operationsInterfaces/managementLocks.js.map +1 -0
- package/package.json +53 -16
- package/review/arm-locks.api.md +313 -0
- package/rollup.config.js +181 -30
- package/src/index.ts +13 -0
- package/src/managementLockClient.ts +23 -36
- package/src/managementLockClientContext.ts +47 -45
- package/src/models/index.ts +256 -470
- package/src/models/mappers.ts +72 -82
- package/src/models/parameters.ts +97 -55
- package/src/operations/authorizationOperations.ts +155 -70
- package/src/operations/index.ts +3 -5
- package/src/operations/managementLocks.ts +1165 -869
- package/src/operationsInterfaces/authorizationOperations.ts +36 -0
- package/src/operationsInterfaces/index.ts +10 -0
- package/src/operationsInterfaces/managementLocks.ts +332 -0
- package/tsconfig.json +3 -2
- package/dist/arm-locks.js +0 -1280
- package/dist/arm-locks.js.map +0 -1
- package/dist/arm-locks.min.js +0 -1
- package/dist/arm-locks.min.js.map +0 -1
- package/esm/models/authorizationOperationsMappers.d.ts +0 -2
- package/esm/models/authorizationOperationsMappers.d.ts.map +0 -1
- package/esm/models/authorizationOperationsMappers.js +0 -9
- package/esm/models/authorizationOperationsMappers.js.map +0 -1
- package/esm/models/managementLocksMappers.d.ts +0 -2
- package/esm/models/managementLocksMappers.d.ts.map +0 -1
- package/esm/models/managementLocksMappers.js +0 -9
- package/esm/models/managementLocksMappers.js.map +0 -1
- package/src/models/authorizationOperationsMappers.ts +0 -14
- package/src/models/managementLocksMappers.ts +0 -15
@@ -1,46 +1,47 @@
|
|
1
|
-
import
|
2
|
-
import
|
1
|
+
import "@azure/core-paging";
|
2
|
+
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
3
|
+
import { AuthorizationOperations } from "../operationsInterfaces";
|
3
4
|
import { ManagementLockClientContext } from "../managementLockClientContext";
|
5
|
+
import { Operation, AuthorizationOperationsListNextOptionalParams, AuthorizationOperationsListOptionalParams } from "../models";
|
4
6
|
/** Class representing a AuthorizationOperations. */
|
5
|
-
export declare class AuthorizationOperations {
|
7
|
+
export declare class AuthorizationOperationsImpl implements AuthorizationOperations {
|
6
8
|
private readonly client;
|
7
9
|
/**
|
8
|
-
*
|
9
|
-
* @param
|
10
|
+
* Initialize a new instance of the class AuthorizationOperations class.
|
11
|
+
* @param client Reference to the service client
|
10
12
|
*/
|
11
13
|
constructor(client: ManagementLockClientContext);
|
12
14
|
/**
|
13
15
|
* Lists all of the available Microsoft.Authorization REST API operations.
|
14
|
-
* @param
|
15
|
-
* @returns Promise<Models.AuthorizationOperationsListResponse>
|
16
|
+
* @param options The options parameters.
|
16
17
|
*/
|
17
|
-
list(options?:
|
18
|
+
list(options?: AuthorizationOperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
|
19
|
+
private listPagingPage;
|
20
|
+
private listPagingAll;
|
18
21
|
/**
|
19
|
-
*
|
22
|
+
* ListNext
|
23
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
24
|
+
* @param options The options parameters.
|
20
25
|
*/
|
21
|
-
|
22
|
-
|
23
|
-
|
24
|
-
* @param callback The callback
|
25
|
-
*/
|
26
|
-
list(options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
|
26
|
+
listNext(nextLink: string, options?: AuthorizationOperationsListNextOptionalParams): PagedAsyncIterableIterator<Operation>;
|
27
|
+
private listNextPagingPage;
|
28
|
+
private listNextPagingAll;
|
27
29
|
/**
|
28
30
|
* Lists all of the available Microsoft.Authorization REST API operations.
|
29
|
-
* @param
|
30
|
-
* @param [options] The optional parameters
|
31
|
-
* @returns Promise<Models.AuthorizationOperationsListNextResponse>
|
31
|
+
* @param options The options parameters.
|
32
32
|
*/
|
33
|
-
|
33
|
+
private _list;
|
34
34
|
/**
|
35
|
-
*
|
36
|
-
* @param
|
35
|
+
* ListNext
|
36
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
37
|
+
* @param options The options parameters.
|
37
38
|
*/
|
38
|
-
|
39
|
+
private _listNext;
|
39
40
|
/**
|
40
|
-
*
|
41
|
-
* @param
|
42
|
-
* @param
|
41
|
+
* ListNextNext
|
42
|
+
* @param nextLink The nextLink from the previous successful call to the ListNext method.
|
43
|
+
* @param options The options parameters.
|
43
44
|
*/
|
44
|
-
|
45
|
+
private _listNextNext;
|
45
46
|
}
|
46
47
|
//# sourceMappingURL=authorizationOperations.d.ts.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"authorizationOperations.d.ts","sourceRoot":"","sources":["../../src/operations/authorizationOperations.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"authorizationOperations.d.ts","sourceRoot":"","sources":["../../src/operations/authorizationOperations.ts"],"names":[],"mappings":"AAQA,OAAO,oBAAoB,CAAC;AAC5B,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,uBAAuB,EAAE,MAAM,yBAAyB,CAAC;AAIlE,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAC7E,OAAO,EACL,SAAS,EACT,6CAA6C,EAC7C,yCAAyC,EAK1C,MAAM,WAAW,CAAC;AAGnB,oDAAoD;AACpD,qBAAa,2BAA4B,YAAW,uBAAuB;IACzE,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA8B;IAErD;;;OAGG;gBACS,MAAM,EAAE,2BAA2B;IAI/C;;;OAGG;IACI,IAAI,CACT,OAAO,CAAC,EAAE,yCAAyC,GAClD,0BAA0B,CAAC,SAAS,CAAC;YAezB,cAAc;YAad,aAAa;IAQ5B;;;;OAIG;IACI,QAAQ,CACb,QAAQ,EAAE,MAAM,EAChB,OAAO,CAAC,EAAE,6CAA6C,GACtD,0BAA0B,CAAC,SAAS,CAAC;YAezB,kBAAkB;YAclB,iBAAiB;IAShC;;;OAGG;IACH,OAAO,CAAC,KAAK;IAMb;;;;OAIG;IACH,OAAO,CAAC,SAAS;IAUjB;;;;OAIG;IACH,OAAO,CAAC,aAAa;CAStB"}
|
@@ -1,77 +1,185 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
3
|
-
* Licensed under the MIT License.
|
4
|
-
* license information.
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
5
4
|
*
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
9
7
|
*/
|
10
|
-
import
|
11
|
-
import
|
8
|
+
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await } from "tslib";
|
9
|
+
import "@azure/core-paging";
|
10
|
+
import * as coreClient from "@azure/core-client";
|
11
|
+
import * as Mappers from "../models/mappers";
|
12
12
|
import * as Parameters from "../models/parameters";
|
13
|
+
/// <reference lib="esnext.asynciterable" />
|
13
14
|
/** Class representing a AuthorizationOperations. */
|
14
|
-
|
15
|
+
export class AuthorizationOperationsImpl {
|
15
16
|
/**
|
16
|
-
*
|
17
|
-
* @param
|
17
|
+
* Initialize a new instance of the class AuthorizationOperations class.
|
18
|
+
* @param client Reference to the service client
|
18
19
|
*/
|
19
|
-
|
20
|
+
constructor(client) {
|
20
21
|
this.client = client;
|
21
22
|
}
|
22
|
-
|
23
|
-
|
24
|
-
|
25
|
-
|
26
|
-
|
27
|
-
|
28
|
-
return
|
29
|
-
|
30
|
-
|
31
|
-
|
32
|
-
|
33
|
-
|
34
|
-
}
|
35
|
-
|
23
|
+
/**
|
24
|
+
* Lists all of the available Microsoft.Authorization REST API operations.
|
25
|
+
* @param options The options parameters.
|
26
|
+
*/
|
27
|
+
list(options) {
|
28
|
+
const iter = this.listPagingAll(options);
|
29
|
+
return {
|
30
|
+
next() {
|
31
|
+
return iter.next();
|
32
|
+
},
|
33
|
+
[Symbol.asyncIterator]() {
|
34
|
+
return this;
|
35
|
+
},
|
36
|
+
byPage: () => {
|
37
|
+
return this.listPagingPage(options);
|
38
|
+
}
|
39
|
+
};
|
40
|
+
}
|
41
|
+
listPagingPage(options) {
|
42
|
+
return __asyncGenerator(this, arguments, function* listPagingPage_1() {
|
43
|
+
let result = yield __await(this._list(options));
|
44
|
+
yield yield __await(result.value || []);
|
45
|
+
let continuationToken = result.nextLink;
|
46
|
+
while (continuationToken) {
|
47
|
+
result = yield __await(this._listNext(continuationToken, options));
|
48
|
+
continuationToken = result.nextLink;
|
49
|
+
yield yield __await(result.value || []);
|
50
|
+
}
|
51
|
+
});
|
52
|
+
}
|
53
|
+
listPagingAll(options) {
|
54
|
+
return __asyncGenerator(this, arguments, function* listPagingAll_1() {
|
55
|
+
var e_1, _a;
|
56
|
+
try {
|
57
|
+
for (var _b = __asyncValues(this.listPagingPage(options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
58
|
+
const page = _c.value;
|
59
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
60
|
+
}
|
61
|
+
}
|
62
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
63
|
+
finally {
|
64
|
+
try {
|
65
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
66
|
+
}
|
67
|
+
finally { if (e_1) throw e_1.error; }
|
68
|
+
}
|
69
|
+
});
|
70
|
+
}
|
71
|
+
/**
|
72
|
+
* ListNext
|
73
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
74
|
+
* @param options The options parameters.
|
75
|
+
*/
|
76
|
+
listNext(nextLink, options) {
|
77
|
+
const iter = this.listNextPagingAll(nextLink, options);
|
78
|
+
return {
|
79
|
+
next() {
|
80
|
+
return iter.next();
|
81
|
+
},
|
82
|
+
[Symbol.asyncIterator]() {
|
83
|
+
return this;
|
84
|
+
},
|
85
|
+
byPage: () => {
|
86
|
+
return this.listNextPagingPage(nextLink, options);
|
87
|
+
}
|
88
|
+
};
|
89
|
+
}
|
90
|
+
listNextPagingPage(nextLink, options) {
|
91
|
+
return __asyncGenerator(this, arguments, function* listNextPagingPage_1() {
|
92
|
+
let result = yield __await(this._listNext(nextLink, options));
|
93
|
+
yield yield __await(result.value || []);
|
94
|
+
let continuationToken = result.nextLink;
|
95
|
+
while (continuationToken) {
|
96
|
+
result = yield __await(this._listNextNext(continuationToken, options));
|
97
|
+
continuationToken = result.nextLink;
|
98
|
+
yield yield __await(result.value || []);
|
99
|
+
}
|
100
|
+
});
|
101
|
+
}
|
102
|
+
listNextPagingAll(nextLink, options) {
|
103
|
+
return __asyncGenerator(this, arguments, function* listNextPagingAll_1() {
|
104
|
+
var e_2, _a;
|
105
|
+
try {
|
106
|
+
for (var _b = __asyncValues(this.listNextPagingPage(nextLink, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
107
|
+
const page = _c.value;
|
108
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
109
|
+
}
|
110
|
+
}
|
111
|
+
catch (e_2_1) { e_2 = { error: e_2_1 }; }
|
112
|
+
finally {
|
113
|
+
try {
|
114
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
115
|
+
}
|
116
|
+
finally { if (e_2) throw e_2.error; }
|
117
|
+
}
|
118
|
+
});
|
119
|
+
}
|
120
|
+
/**
|
121
|
+
* Lists all of the available Microsoft.Authorization REST API operations.
|
122
|
+
* @param options The options parameters.
|
123
|
+
*/
|
124
|
+
_list(options) {
|
125
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
126
|
+
}
|
127
|
+
/**
|
128
|
+
* ListNext
|
129
|
+
* @param nextLink The nextLink from the previous successful call to the List method.
|
130
|
+
* @param options The options parameters.
|
131
|
+
*/
|
132
|
+
_listNext(nextLink, options) {
|
133
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
|
134
|
+
}
|
135
|
+
/**
|
136
|
+
* ListNextNext
|
137
|
+
* @param nextLink The nextLink from the previous successful call to the ListNext method.
|
138
|
+
* @param options The options parameters.
|
139
|
+
*/
|
140
|
+
_listNextNext(nextLink, options) {
|
141
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextNextOperationSpec);
|
142
|
+
}
|
143
|
+
}
|
36
144
|
// Operation Specifications
|
37
|
-
|
38
|
-
|
145
|
+
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
146
|
+
const listOperationSpec = {
|
147
|
+
path: "/providers/Microsoft.Authorization/operations",
|
39
148
|
httpMethod: "GET",
|
40
|
-
path: "providers/Microsoft.Authorization/operations",
|
41
|
-
queryParameters: [
|
42
|
-
Parameters.apiVersion
|
43
|
-
],
|
44
|
-
headerParameters: [
|
45
|
-
Parameters.acceptLanguage
|
46
|
-
],
|
47
149
|
responses: {
|
48
150
|
200: {
|
49
151
|
bodyMapper: Mappers.OperationListResult
|
50
|
-
},
|
51
|
-
default: {
|
52
|
-
bodyMapper: Mappers.CloudError
|
53
152
|
}
|
54
153
|
},
|
55
|
-
|
154
|
+
queryParameters: [Parameters.apiVersion],
|
155
|
+
urlParameters: [Parameters.$host],
|
156
|
+
headerParameters: [Parameters.accept],
|
157
|
+
serializer
|
56
158
|
};
|
57
|
-
|
159
|
+
const listNextOperationSpec = {
|
160
|
+
path: "{nextLink}",
|
58
161
|
httpMethod: "GET",
|
59
|
-
|
162
|
+
responses: {
|
163
|
+
200: {
|
164
|
+
bodyMapper: Mappers.OperationListResult
|
165
|
+
}
|
166
|
+
},
|
167
|
+
queryParameters: [Parameters.apiVersion],
|
168
|
+
urlParameters: [Parameters.$host, Parameters.nextLink],
|
169
|
+
headerParameters: [Parameters.accept],
|
170
|
+
serializer
|
171
|
+
};
|
172
|
+
const listNextNextOperationSpec = {
|
60
173
|
path: "{nextLink}",
|
61
|
-
|
62
|
-
Parameters.nextPageLink
|
63
|
-
],
|
64
|
-
headerParameters: [
|
65
|
-
Parameters.acceptLanguage
|
66
|
-
],
|
174
|
+
httpMethod: "GET",
|
67
175
|
responses: {
|
68
176
|
200: {
|
69
177
|
bodyMapper: Mappers.OperationListResult
|
70
|
-
},
|
71
|
-
default: {
|
72
|
-
bodyMapper: Mappers.CloudError
|
73
178
|
}
|
74
179
|
},
|
75
|
-
|
180
|
+
queryParameters: [Parameters.apiVersion],
|
181
|
+
urlParameters: [Parameters.$host, Parameters.nextLink],
|
182
|
+
headerParameters: [Parameters.accept],
|
183
|
+
serializer
|
76
184
|
};
|
77
185
|
//# sourceMappingURL=authorizationOperations.js.map
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"authorizationOperations.js","sourceRoot":"","sources":["../../src/operations/authorizationOperations.ts"],"names":[],"mappings":"AAAA
|
1
|
+
{"version":3,"file":"authorizationOperations.js","sourceRoot":"","sources":["../../src/operations/authorizationOperations.ts"],"names":[],"mappings":"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"}
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
|
package/esm/operations/index.js
CHANGED
@@ -1,11 +1,9 @@
|
|
1
1
|
/*
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
3
|
-
* Licensed under the MIT License.
|
4
|
-
* license information.
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
3
|
+
* Licensed under the MIT License.
|
5
4
|
*
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
8
|
-
* regenerated.
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
9
7
|
*/
|
10
8
|
export * from "./authorizationOperations";
|
11
9
|
export * from "./managementLocks";
|
@@ -1 +1 @@
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
|