@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.
Files changed (84) hide show
  1. package/CHANGELOG.md +26 -0
  2. package/{LICENSE.txt → LICENSE} +2 -2
  3. package/README.md +63 -80
  4. package/dist/index.js +1796 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.min.js +1 -0
  7. package/dist/index.min.js.map +1 -0
  8. package/esm/index.d.ts +534 -0
  9. package/esm/index.d.ts.map +1 -0
  10. package/esm/index.js +13 -0
  11. package/esm/index.js.map +1 -0
  12. package/esm/managementLockClient.d.ts +9 -18
  13. package/esm/managementLockClient.d.ts.map +1 -1
  14. package/esm/managementLockClient.js +12 -28
  15. package/esm/managementLockClient.js.map +1 -1
  16. package/esm/managementLockClientContext.d.ts +10 -16
  17. package/esm/managementLockClientContext.d.ts.map +1 -1
  18. package/esm/managementLockClientContext.js +34 -46
  19. package/esm/managementLockClientContext.js.map +1 -1
  20. package/esm/models/index.d.ts +208 -445
  21. package/esm/models/index.d.ts.map +1 -1
  22. package/esm/models/index.js +9 -2
  23. package/esm/models/index.js.map +1 -1
  24. package/esm/models/mappers.d.ts +7 -9
  25. package/esm/models/mappers.d.ts.map +1 -1
  26. package/esm/models/mappers.js +69 -78
  27. package/esm/models/mappers.js.map +1 -1
  28. package/esm/models/parameters.d.ts +16 -13
  29. package/esm/models/parameters.d.ts.map +1 -1
  30. package/esm/models/parameters.js +78 -54
  31. package/esm/models/parameters.js.map +1 -1
  32. package/esm/operations/authorizationOperations.d.ts +27 -26
  33. package/esm/operations/authorizationOperations.d.ts.map +1 -1
  34. package/esm/operations/authorizationOperations.js +158 -50
  35. package/esm/operations/authorizationOperations.js.map +1 -1
  36. package/esm/operations/index.d.ts.map +1 -1
  37. package/esm/operations/index.js +3 -5
  38. package/esm/operations/index.js.map +1 -1
  39. package/esm/operations/managementLocks.d.ts +203 -393
  40. package/esm/operations/managementLocks.d.ts.map +1 -1
  41. package/esm/operations/managementLocks.js +993 -485
  42. package/esm/operations/managementLocks.js.map +1 -1
  43. package/esm/operationsInterfaces/authorizationOperations.d.ts +18 -0
  44. package/esm/operationsInterfaces/authorizationOperations.d.ts.map +1 -0
  45. package/esm/operationsInterfaces/authorizationOperations.js +9 -0
  46. package/esm/operationsInterfaces/authorizationOperations.js.map +1 -0
  47. package/esm/operationsInterfaces/index.d.ts +3 -0
  48. package/esm/operationsInterfaces/index.d.ts.map +1 -0
  49. package/esm/operationsInterfaces/index.js +10 -0
  50. package/esm/operationsInterfaces/index.js.map +1 -0
  51. package/esm/operationsInterfaces/managementLocks.d.ts +198 -0
  52. package/esm/operationsInterfaces/managementLocks.d.ts.map +1 -0
  53. package/esm/operationsInterfaces/managementLocks.js +9 -0
  54. package/esm/operationsInterfaces/managementLocks.js.map +1 -0
  55. package/package.json +53 -16
  56. package/review/arm-locks.api.md +313 -0
  57. package/rollup.config.js +181 -30
  58. package/src/index.ts +13 -0
  59. package/src/managementLockClient.ts +23 -36
  60. package/src/managementLockClientContext.ts +47 -45
  61. package/src/models/index.ts +256 -470
  62. package/src/models/mappers.ts +72 -82
  63. package/src/models/parameters.ts +97 -55
  64. package/src/operations/authorizationOperations.ts +155 -70
  65. package/src/operations/index.ts +3 -5
  66. package/src/operations/managementLocks.ts +1165 -869
  67. package/src/operationsInterfaces/authorizationOperations.ts +36 -0
  68. package/src/operationsInterfaces/index.ts +10 -0
  69. package/src/operationsInterfaces/managementLocks.ts +332 -0
  70. package/tsconfig.json +3 -2
  71. package/dist/arm-locks.js +0 -1280
  72. package/dist/arm-locks.js.map +0 -1
  73. package/dist/arm-locks.min.js +0 -1
  74. package/dist/arm-locks.min.js.map +0 -1
  75. package/esm/models/authorizationOperationsMappers.d.ts +0 -2
  76. package/esm/models/authorizationOperationsMappers.d.ts.map +0 -1
  77. package/esm/models/authorizationOperationsMappers.js +0 -9
  78. package/esm/models/authorizationOperationsMappers.js.map +0 -1
  79. package/esm/models/managementLocksMappers.d.ts +0 -2
  80. package/esm/models/managementLocksMappers.d.ts.map +0 -1
  81. package/esm/models/managementLocksMappers.js +0 -9
  82. package/esm/models/managementLocksMappers.js.map +0 -1
  83. package/src/models/authorizationOperationsMappers.ts +0 -14
  84. package/src/models/managementLocksMappers.ts +0 -15
@@ -1,46 +1,47 @@
1
- import * as msRest from "@azure/ms-rest-js";
2
- import * as Models from "../models";
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
- * Create a AuthorizationOperations.
9
- * @param {ManagementLockClientContext} client Reference to the service client.
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 [options] The optional parameters
15
- * @returns Promise<Models.AuthorizationOperationsListResponse>
16
+ * @param options The options parameters.
16
17
  */
17
- list(options?: msRest.RequestOptionsBase): Promise<Models.AuthorizationOperationsListResponse>;
18
+ list(options?: AuthorizationOperationsListOptionalParams): PagedAsyncIterableIterator<Operation>;
19
+ private listPagingPage;
20
+ private listPagingAll;
18
21
  /**
19
- * @param callback The callback
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
- 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;
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 nextPageLink The NextLink from the previous successful call to List operation.
30
- * @param [options] The optional parameters
31
- * @returns Promise<Models.AuthorizationOperationsListNextResponse>
31
+ * @param options The options parameters.
32
32
  */
33
- listNext(nextPageLink: string, options?: msRest.RequestOptionsBase): Promise<Models.AuthorizationOperationsListNextResponse>;
33
+ private _list;
34
34
  /**
35
- * @param nextPageLink The NextLink from the previous successful call to List operation.
36
- * @param callback The callback
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
- listNext(nextPageLink: string, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
39
+ private _listNext;
39
40
  /**
40
- * @param nextPageLink The NextLink from the previous successful call to List operation.
41
- * @param options The optional parameters
42
- * @param callback The callback
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
- listNext(nextPageLink: string, options: msRest.RequestOptionsBase, callback: msRest.ServiceCallback<Models.OperationListResult>): void;
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":"AAUA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAC5C,OAAO,KAAK,MAAM,MAAM,WAAW,CAAC;AAGpC,OAAO,EAAE,2BAA2B,EAAE,MAAM,gCAAgC,CAAC;AAE7E,oDAAoD;AACpD,qBAAa,uBAAuB;IAClC,OAAO,CAAC,QAAQ,CAAC,MAAM,CAA8B;IAErD;;;OAGG;gBACS,MAAM,EAAE,2BAA2B;IAI/C;;;;OAIG;IACH,IAAI,CAAC,OAAO,CAAC,EAAE,MAAM,CAAC,kBAAkB,GAAG,OAAO,CAAC,MAAM,CAAC,mCAAmC,CAAC;IAC9F;;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,uCAAuC,CAAC;IAC5H;;;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
+ {"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. All rights reserved.
3
- * Licensed under the MIT License. See License.txt in the project root for
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 * as msRest from "@azure/ms-rest-js";
11
- import * as Mappers from "../models/authorizationOperationsMappers";
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
- var AuthorizationOperations = /** @class */ (function () {
15
+ export class AuthorizationOperationsImpl {
15
16
  /**
16
- * Create a AuthorizationOperations.
17
- * @param {ManagementLockClientContext} client Reference to the service client.
17
+ * Initialize a new instance of the class AuthorizationOperations class.
18
+ * @param client Reference to the service client
18
19
  */
19
- function AuthorizationOperations(client) {
20
+ constructor(client) {
20
21
  this.client = client;
21
22
  }
22
- AuthorizationOperations.prototype.list = function (options, callback) {
23
- return this.client.sendOperationRequest({
24
- options: options
25
- }, listOperationSpec, callback);
26
- };
27
- AuthorizationOperations.prototype.listNext = function (nextPageLink, options, callback) {
28
- return this.client.sendOperationRequest({
29
- nextPageLink: nextPageLink,
30
- options: options
31
- }, listNextOperationSpec, callback);
32
- };
33
- return AuthorizationOperations;
34
- }());
35
- export { AuthorizationOperations };
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
- var serializer = new msRest.Serializer(Mappers);
38
- var listOperationSpec = {
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
- serializer: serializer
154
+ queryParameters: [Parameters.apiVersion],
155
+ urlParameters: [Parameters.$host],
156
+ headerParameters: [Parameters.accept],
157
+ serializer
56
158
  };
57
- var listNextOperationSpec = {
159
+ const listNextOperationSpec = {
160
+ path: "{nextLink}",
58
161
  httpMethod: "GET",
59
- baseUrl: "https://management.azure.com",
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
- urlParameters: [
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
- serializer: serializer
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;;;;;;;;GAQG;AAEH,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,OAAO,KAAK,OAAO,MAAM,0CAA0C,CAAC;AACpE,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAGnD,oDAAoD;AACpD;IAGE;;;OAGG;IACH,iCAAY,MAAmC;QAC7C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAiBD,sCAAI,GAAJ,UAAK,OAAwF,EAAE,QAA6D;QAC1J,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC;YACE,OAAO,SAAA;SACR,EACD,iBAAiB,EACjB,QAAQ,CAAwD,CAAC;IACrE,CAAC;IAoBD,0CAAQ,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,CAA4D,CAAC;IACzE,CAAC;IACH,8BAAC;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,8CAA8C;IACpD,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
+ {"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":"AAUA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
@@ -1,11 +1,9 @@
1
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.
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;;;;;;;;GAQG;AAEH,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,2BAA2B,CAAC;AAC1C,cAAc,mBAAmB,CAAC"}