@azure/arm-operations 4.0.0-alpha.20220105.1 → 4.0.0-alpha.20220128.2
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/dist/index.js +56 -36
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/dist/index.min.js.map +1 -1
- package/package.json +3 -3
- package/types/tsdoc-metadata.json +1 -1
package/dist/index.js
CHANGED
|
@@ -6,6 +6,26 @@ var coreClient = require('@azure/core-client');
|
|
|
6
6
|
var tslib = require('tslib');
|
|
7
7
|
var coreLro = require('@azure/core-lro');
|
|
8
8
|
|
|
9
|
+
function _interopNamespace(e) {
|
|
10
|
+
if (e && e.__esModule) return e;
|
|
11
|
+
var n = Object.create(null);
|
|
12
|
+
if (e) {
|
|
13
|
+
Object.keys(e).forEach(function (k) {
|
|
14
|
+
if (k !== 'default') {
|
|
15
|
+
var d = Object.getOwnPropertyDescriptor(e, k);
|
|
16
|
+
Object.defineProperty(n, k, d.get ? d : {
|
|
17
|
+
enumerable: true,
|
|
18
|
+
get: function () { return e[k]; }
|
|
19
|
+
});
|
|
20
|
+
}
|
|
21
|
+
});
|
|
22
|
+
}
|
|
23
|
+
n["default"] = e;
|
|
24
|
+
return Object.freeze(n);
|
|
25
|
+
}
|
|
26
|
+
|
|
27
|
+
var coreClient__namespace = /*#__PURE__*/_interopNamespace(coreClient);
|
|
28
|
+
|
|
9
29
|
/*
|
|
10
30
|
* Copyright (c) Microsoft Corporation.
|
|
11
31
|
* Licensed under the MIT License.
|
|
@@ -740,7 +760,7 @@ class SolutionsImpl {
|
|
|
740
760
|
}
|
|
741
761
|
};
|
|
742
762
|
});
|
|
743
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, solutionName, parameters, options }, createOrUpdateOperationSpec);
|
|
763
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, solutionName, parameters, options }, createOrUpdateOperationSpec$2);
|
|
744
764
|
return new coreLro.LroEngine(lro, {
|
|
745
765
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
746
766
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -841,7 +861,7 @@ class SolutionsImpl {
|
|
|
841
861
|
}
|
|
842
862
|
};
|
|
843
863
|
});
|
|
844
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, solutionName, options }, deleteOperationSpec);
|
|
864
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, solutionName, options }, deleteOperationSpec$2);
|
|
845
865
|
return new coreLro.LroEngine(lro, {
|
|
846
866
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
847
867
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -867,7 +887,7 @@ class SolutionsImpl {
|
|
|
867
887
|
* @param options The options parameters.
|
|
868
888
|
*/
|
|
869
889
|
get(resourceGroupName, solutionName, options) {
|
|
870
|
-
return this.client.sendOperationRequest({ resourceGroupName, solutionName, options }, getOperationSpec);
|
|
890
|
+
return this.client.sendOperationRequest({ resourceGroupName, solutionName, options }, getOperationSpec$2);
|
|
871
891
|
}
|
|
872
892
|
/**
|
|
873
893
|
* Retrieves the solution list. It will retrieve both first party and third party solutions
|
|
@@ -882,12 +902,12 @@ class SolutionsImpl {
|
|
|
882
902
|
* @param options The options parameters.
|
|
883
903
|
*/
|
|
884
904
|
listBySubscription(options) {
|
|
885
|
-
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
|
|
905
|
+
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec$2);
|
|
886
906
|
}
|
|
887
907
|
}
|
|
888
908
|
// Operation Specifications
|
|
889
|
-
const serializer =
|
|
890
|
-
const createOrUpdateOperationSpec = {
|
|
909
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
910
|
+
const createOrUpdateOperationSpec$2 = {
|
|
891
911
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",
|
|
892
912
|
httpMethod: "PUT",
|
|
893
913
|
responses: {
|
|
@@ -917,7 +937,7 @@ const createOrUpdateOperationSpec = {
|
|
|
917
937
|
],
|
|
918
938
|
headerParameters: [contentType, accept],
|
|
919
939
|
mediaType: "json",
|
|
920
|
-
serializer
|
|
940
|
+
serializer: serializer$3
|
|
921
941
|
};
|
|
922
942
|
const updateOperationSpec = {
|
|
923
943
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",
|
|
@@ -949,9 +969,9 @@ const updateOperationSpec = {
|
|
|
949
969
|
],
|
|
950
970
|
headerParameters: [contentType, accept],
|
|
951
971
|
mediaType: "json",
|
|
952
|
-
serializer
|
|
972
|
+
serializer: serializer$3
|
|
953
973
|
};
|
|
954
|
-
const deleteOperationSpec = {
|
|
974
|
+
const deleteOperationSpec$2 = {
|
|
955
975
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",
|
|
956
976
|
httpMethod: "DELETE",
|
|
957
977
|
responses: {
|
|
@@ -971,9 +991,9 @@ const deleteOperationSpec = {
|
|
|
971
991
|
solutionName
|
|
972
992
|
],
|
|
973
993
|
headerParameters: [accept],
|
|
974
|
-
serializer
|
|
994
|
+
serializer: serializer$3
|
|
975
995
|
};
|
|
976
|
-
const getOperationSpec = {
|
|
996
|
+
const getOperationSpec$2 = {
|
|
977
997
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",
|
|
978
998
|
httpMethod: "GET",
|
|
979
999
|
responses: {
|
|
@@ -992,7 +1012,7 @@ const getOperationSpec = {
|
|
|
992
1012
|
solutionName
|
|
993
1013
|
],
|
|
994
1014
|
headerParameters: [accept],
|
|
995
|
-
serializer
|
|
1015
|
+
serializer: serializer$3
|
|
996
1016
|
};
|
|
997
1017
|
const listByResourceGroupOperationSpec = {
|
|
998
1018
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions",
|
|
@@ -1012,9 +1032,9 @@ const listByResourceGroupOperationSpec = {
|
|
|
1012
1032
|
resourceGroupName
|
|
1013
1033
|
],
|
|
1014
1034
|
headerParameters: [accept],
|
|
1015
|
-
serializer
|
|
1035
|
+
serializer: serializer$3
|
|
1016
1036
|
};
|
|
1017
|
-
const listBySubscriptionOperationSpec = {
|
|
1037
|
+
const listBySubscriptionOperationSpec$2 = {
|
|
1018
1038
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions",
|
|
1019
1039
|
httpMethod: "GET",
|
|
1020
1040
|
responses: {
|
|
@@ -1028,7 +1048,7 @@ const listBySubscriptionOperationSpec = {
|
|
|
1028
1048
|
queryParameters: [apiVersion],
|
|
1029
1049
|
urlParameters: [$host, subscriptionId],
|
|
1030
1050
|
headerParameters: [accept],
|
|
1031
|
-
serializer
|
|
1051
|
+
serializer: serializer$3
|
|
1032
1052
|
};
|
|
1033
1053
|
|
|
1034
1054
|
/*
|
|
@@ -1084,7 +1104,7 @@ class ManagementAssociationsImpl {
|
|
|
1084
1104
|
}
|
|
1085
1105
|
}
|
|
1086
1106
|
// Operation Specifications
|
|
1087
|
-
const serializer$
|
|
1107
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
1088
1108
|
const listBySubscriptionOperationSpec$1 = {
|
|
1089
1109
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations",
|
|
1090
1110
|
httpMethod: "GET",
|
|
@@ -1099,7 +1119,7 @@ const listBySubscriptionOperationSpec$1 = {
|
|
|
1099
1119
|
queryParameters: [apiVersion],
|
|
1100
1120
|
urlParameters: [$host, subscriptionId],
|
|
1101
1121
|
headerParameters: [accept],
|
|
1102
|
-
serializer: serializer$
|
|
1122
|
+
serializer: serializer$2
|
|
1103
1123
|
};
|
|
1104
1124
|
const createOrUpdateOperationSpec$1 = {
|
|
1105
1125
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",
|
|
@@ -1125,7 +1145,7 @@ const createOrUpdateOperationSpec$1 = {
|
|
|
1125
1145
|
],
|
|
1126
1146
|
headerParameters: [contentType, accept],
|
|
1127
1147
|
mediaType: "json",
|
|
1128
|
-
serializer: serializer$
|
|
1148
|
+
serializer: serializer$2
|
|
1129
1149
|
};
|
|
1130
1150
|
const deleteOperationSpec$1 = {
|
|
1131
1151
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",
|
|
@@ -1147,7 +1167,7 @@ const deleteOperationSpec$1 = {
|
|
|
1147
1167
|
managementAssociationName
|
|
1148
1168
|
],
|
|
1149
1169
|
headerParameters: [accept],
|
|
1150
|
-
serializer: serializer$
|
|
1170
|
+
serializer: serializer$2
|
|
1151
1171
|
};
|
|
1152
1172
|
const getOperationSpec$1 = {
|
|
1153
1173
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",
|
|
@@ -1171,7 +1191,7 @@ const getOperationSpec$1 = {
|
|
|
1171
1191
|
managementAssociationName
|
|
1172
1192
|
],
|
|
1173
1193
|
headerParameters: [accept],
|
|
1174
|
-
serializer: serializer$
|
|
1194
|
+
serializer: serializer$2
|
|
1175
1195
|
};
|
|
1176
1196
|
|
|
1177
1197
|
/*
|
|
@@ -1195,7 +1215,7 @@ class ManagementConfigurationsImpl {
|
|
|
1195
1215
|
* @param options The options parameters.
|
|
1196
1216
|
*/
|
|
1197
1217
|
listBySubscription(options) {
|
|
1198
|
-
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec
|
|
1218
|
+
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
|
|
1199
1219
|
}
|
|
1200
1220
|
/**
|
|
1201
1221
|
* Creates or updates the ManagementConfiguration.
|
|
@@ -1205,7 +1225,7 @@ class ManagementConfigurationsImpl {
|
|
|
1205
1225
|
* @param options The options parameters.
|
|
1206
1226
|
*/
|
|
1207
1227
|
createOrUpdate(resourceGroupName, managementConfigurationName, parameters, options) {
|
|
1208
|
-
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, parameters, options }, createOrUpdateOperationSpec
|
|
1228
|
+
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, parameters, options }, createOrUpdateOperationSpec);
|
|
1209
1229
|
}
|
|
1210
1230
|
/**
|
|
1211
1231
|
* Deletes the ManagementConfiguration in the subscription.
|
|
@@ -1214,7 +1234,7 @@ class ManagementConfigurationsImpl {
|
|
|
1214
1234
|
* @param options The options parameters.
|
|
1215
1235
|
*/
|
|
1216
1236
|
delete(resourceGroupName, managementConfigurationName, options) {
|
|
1217
|
-
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, options }, deleteOperationSpec
|
|
1237
|
+
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, options }, deleteOperationSpec);
|
|
1218
1238
|
}
|
|
1219
1239
|
/**
|
|
1220
1240
|
* Retrieves the user ManagementConfiguration.
|
|
@@ -1223,12 +1243,12 @@ class ManagementConfigurationsImpl {
|
|
|
1223
1243
|
* @param options The options parameters.
|
|
1224
1244
|
*/
|
|
1225
1245
|
get(resourceGroupName, managementConfigurationName, options) {
|
|
1226
|
-
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, options }, getOperationSpec
|
|
1246
|
+
return this.client.sendOperationRequest({ resourceGroupName, managementConfigurationName, options }, getOperationSpec);
|
|
1227
1247
|
}
|
|
1228
1248
|
}
|
|
1229
1249
|
// Operation Specifications
|
|
1230
|
-
const serializer$
|
|
1231
|
-
const listBySubscriptionOperationSpec
|
|
1250
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
1251
|
+
const listBySubscriptionOperationSpec = {
|
|
1232
1252
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations",
|
|
1233
1253
|
httpMethod: "GET",
|
|
1234
1254
|
responses: {
|
|
@@ -1242,9 +1262,9 @@ const listBySubscriptionOperationSpec$2 = {
|
|
|
1242
1262
|
queryParameters: [apiVersion],
|
|
1243
1263
|
urlParameters: [$host, subscriptionId],
|
|
1244
1264
|
headerParameters: [accept],
|
|
1245
|
-
serializer: serializer$
|
|
1265
|
+
serializer: serializer$1
|
|
1246
1266
|
};
|
|
1247
|
-
const createOrUpdateOperationSpec
|
|
1267
|
+
const createOrUpdateOperationSpec = {
|
|
1248
1268
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",
|
|
1249
1269
|
httpMethod: "PUT",
|
|
1250
1270
|
responses: {
|
|
@@ -1265,9 +1285,9 @@ const createOrUpdateOperationSpec$2 = {
|
|
|
1265
1285
|
],
|
|
1266
1286
|
headerParameters: [contentType, accept],
|
|
1267
1287
|
mediaType: "json",
|
|
1268
|
-
serializer: serializer$
|
|
1288
|
+
serializer: serializer$1
|
|
1269
1289
|
};
|
|
1270
|
-
const deleteOperationSpec
|
|
1290
|
+
const deleteOperationSpec = {
|
|
1271
1291
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",
|
|
1272
1292
|
httpMethod: "DELETE",
|
|
1273
1293
|
responses: {
|
|
@@ -1284,9 +1304,9 @@ const deleteOperationSpec$2 = {
|
|
|
1284
1304
|
managementConfigurationName
|
|
1285
1305
|
],
|
|
1286
1306
|
headerParameters: [accept],
|
|
1287
|
-
serializer: serializer$
|
|
1307
|
+
serializer: serializer$1
|
|
1288
1308
|
};
|
|
1289
|
-
const getOperationSpec
|
|
1309
|
+
const getOperationSpec = {
|
|
1290
1310
|
path: "/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",
|
|
1291
1311
|
httpMethod: "GET",
|
|
1292
1312
|
responses: {
|
|
@@ -1305,7 +1325,7 @@ const getOperationSpec$2 = {
|
|
|
1305
1325
|
managementConfigurationName
|
|
1306
1326
|
],
|
|
1307
1327
|
headerParameters: [accept],
|
|
1308
|
-
serializer: serializer$
|
|
1328
|
+
serializer: serializer$1
|
|
1309
1329
|
};
|
|
1310
1330
|
|
|
1311
1331
|
/*
|
|
@@ -1376,7 +1396,7 @@ class OperationsImpl {
|
|
|
1376
1396
|
}
|
|
1377
1397
|
}
|
|
1378
1398
|
// Operation Specifications
|
|
1379
|
-
const serializer
|
|
1399
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
1380
1400
|
const listOperationSpec = {
|
|
1381
1401
|
path: "/providers/Microsoft.OperationsManagement/operations",
|
|
1382
1402
|
httpMethod: "GET",
|
|
@@ -1388,7 +1408,7 @@ const listOperationSpec = {
|
|
|
1388
1408
|
queryParameters: [apiVersion],
|
|
1389
1409
|
urlParameters: [$host],
|
|
1390
1410
|
headerParameters: [accept],
|
|
1391
|
-
serializer
|
|
1411
|
+
serializer
|
|
1392
1412
|
};
|
|
1393
1413
|
|
|
1394
1414
|
/*
|
|
@@ -1398,7 +1418,7 @@ const listOperationSpec = {
|
|
|
1398
1418
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
1399
1419
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
1400
1420
|
*/
|
|
1401
|
-
class OperationsManagementClient extends
|
|
1421
|
+
class OperationsManagementClient extends coreClient__namespace.ServiceClient {
|
|
1402
1422
|
/**
|
|
1403
1423
|
* Initializes a new instance of the OperationsManagementClient class.
|
|
1404
1424
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/solutions.ts","../src/operations/managementAssociations.ts","../src/operations/managementConfigurations.ts","../src/operations/operations.ts","../src/operationsManagementClient.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const Solution: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Solution\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"SolutionPlan\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"SolutionProperties\"\n }\n }\n }\n }\n};\n\nexport const SolutionPlan: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPlan\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n publisher: {\n serializedName: \"publisher\",\n type: {\n name: \"String\"\n }\n },\n promotionCode: {\n serializedName: \"promotionCode\",\n type: {\n name: \"String\"\n }\n },\n product: {\n serializedName: \"product\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SolutionProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionProperties\",\n modelProperties: {\n workspaceResourceId: {\n serializedName: \"workspaceResourceId\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n provisioningState: {\n serializedName: \"provisioningState\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n containedResources: {\n serializedName: \"containedResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n referencedResources: {\n serializedName: \"referencedResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CodeMessageError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CodeMessageError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CodeMessageErrorError\"\n }\n }\n }\n }\n};\n\nexport const CodeMessageErrorError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CodeMessageErrorError\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SolutionPatch: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPatch\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n }\n }\n }\n};\n\nexport const SolutionPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Solution\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementAssociationPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementAssociation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociation\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationProperties\"\n }\n }\n }\n }\n};\n\nexport const ManagementAssociationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationProperties\",\n modelProperties: {\n applicationId: {\n serializedName: \"applicationId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementConfigurationPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementConfiguration\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementConfiguration: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfiguration\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationProperties\"\n }\n }\n }\n }\n};\n\nexport const ManagementConfigurationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationProperties\",\n modelProperties: {\n applicationId: {\n serializedName: \"applicationId\",\n type: {\n name: \"String\"\n }\n },\n parentResourceType: {\n serializedName: \"parentResourceType\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n parameters: {\n serializedName: \"parameters\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ArmTemplateParameter\"\n }\n }\n }\n },\n provisioningState: {\n serializedName: \"provisioningState\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n template: {\n serializedName: \"template\",\n required: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ArmTemplateParameter: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ArmTemplateParameter\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n Solution as SolutionMapper,\n SolutionPatch as SolutionPatchMapper,\n ManagementAssociation as ManagementAssociationMapper,\n ManagementConfiguration as ManagementConfigurationMapper\n} from \"../models/mappers\";\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: SolutionMapper\n};\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2015-11-01-preview\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const solutionName: OperationURLParameter = {\n parameterPath: \"solutionName\",\n mapper: {\n serializedName: \"solutionName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters1: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: SolutionPatchMapper\n};\n\nexport const parameters2: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: ManagementAssociationMapper\n};\n\nexport const providerName: OperationURLParameter = {\n parameterPath: \"providerName\",\n mapper: {\n serializedName: \"providerName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceType: OperationURLParameter = {\n parameterPath: \"resourceType\",\n mapper: {\n serializedName: \"resourceType\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceName: OperationURLParameter = {\n parameterPath: \"resourceName\",\n mapper: {\n serializedName: \"resourceName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const managementAssociationName: OperationURLParameter = {\n parameterPath: \"managementAssociationName\",\n mapper: {\n serializedName: \"managementAssociationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters3: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: ManagementConfigurationMapper\n};\n\nexport const managementConfigurationName: OperationURLParameter = {\n parameterPath: \"managementConfigurationName\",\n mapper: {\n serializedName: \"managementConfigurationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport class LroImpl<T> implements LongRunningOperation<T> {\n constructor(\n private sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>,\n private args: Record<string, unknown>,\n private spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>,\n public requestPath: string = spec.path!,\n public requestMethod: string = spec.httpMethod\n ) {}\n public async sendInitialRequest(): Promise<LroResponse<T>> {\n return this.sendOperationFn(this.args, this.spec);\n }\n public async sendPollRequest(path: string): Promise<LroResponse<T>> {\n const { requestBody, ...restSpec } = this.spec;\n return this.sendOperationFn(this.args, {\n ...restSpec,\n path,\n httpMethod: \"GET\"\n });\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { Solutions } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport { PollerLike, PollOperationState, LroEngine } from \"@azure/core-lro\";\nimport { LroImpl } from \"../lroImpl\";\nimport {\n Solution,\n SolutionsCreateOrUpdateOptionalParams,\n SolutionsCreateOrUpdateResponse,\n SolutionPatch,\n SolutionsUpdateOptionalParams,\n SolutionsUpdateResponse,\n SolutionsDeleteOptionalParams,\n SolutionsGetOptionalParams,\n SolutionsGetResponse,\n SolutionsListByResourceGroupOptionalParams,\n SolutionsListByResourceGroupResponse,\n SolutionsListBySubscriptionOptionalParams,\n SolutionsListBySubscriptionResponse\n} from \"../models\";\n\n/** Class containing Solutions operations. */\nexport class SolutionsImpl implements Solutions {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class Solutions class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Creates or updates the Solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n async beginCreateOrUpdate(\n resourceGroupName: string,\n solutionName: string,\n parameters: Solution,\n options?: SolutionsCreateOrUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<SolutionsCreateOrUpdateResponse>,\n SolutionsCreateOrUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<SolutionsCreateOrUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, parameters, options },\n createOrUpdateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Creates or updates the Solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n async beginCreateOrUpdateAndWait(\n resourceGroupName: string,\n solutionName: string,\n parameters: Solution,\n options?: SolutionsCreateOrUpdateOptionalParams\n ): Promise<SolutionsCreateOrUpdateResponse> {\n const poller = await this.beginCreateOrUpdate(\n resourceGroupName,\n solutionName,\n parameters,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Patch a Solution. Only updating tags supported.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to patch a Solution.\n * @param options The options parameters.\n */\n async beginUpdate(\n resourceGroupName: string,\n solutionName: string,\n parameters: SolutionPatch,\n options?: SolutionsUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<SolutionsUpdateResponse>,\n SolutionsUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<SolutionsUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, parameters, options },\n updateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Patch a Solution. Only updating tags supported.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to patch a Solution.\n * @param options The options parameters.\n */\n async beginUpdateAndWait(\n resourceGroupName: string,\n solutionName: string,\n parameters: SolutionPatch,\n options?: SolutionsUpdateOptionalParams\n ): Promise<SolutionsUpdateResponse> {\n const poller = await this.beginUpdate(\n resourceGroupName,\n solutionName,\n parameters,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Deletes the solution in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n async beginDelete(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsDeleteOptionalParams\n ): Promise<PollerLike<PollOperationState<void>, void>> {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<void> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, options },\n deleteOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Deletes the solution in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsDeleteOptionalParams\n ): Promise<void> {\n const poller = await this.beginDelete(\n resourceGroupName,\n solutionName,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Retrieves the user solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsGetOptionalParams\n ): Promise<SolutionsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, solutionName, options },\n getOperationSpec\n );\n }\n\n /**\n * Retrieves the solution list. It will retrieve both first party and third party solutions\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param options The options parameters.\n */\n listByResourceGroup(\n resourceGroupName: string,\n options?: SolutionsListByResourceGroupOptionalParams\n ): Promise<SolutionsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Retrieves the solution list. It will retrieve both first party and third party solutions\n * @param options The options parameters.\n */\n listBySubscription(\n options?: SolutionsListBySubscriptionOptionalParams\n ): Promise<SolutionsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n 201: {\n bodyMapper: Mappers.Solution\n },\n 202: {\n bodyMapper: Mappers.Solution\n },\n 204: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n 201: {\n bodyMapper: Mappers.Solution\n },\n 202: {\n bodyMapper: Mappers.Solution\n },\n 204: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters1,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 201: {},\n 202: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SolutionPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SolutionPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { ManagementAssociations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n ManagementAssociationsListBySubscriptionOptionalParams,\n ManagementAssociationsListBySubscriptionResponse,\n ManagementAssociation,\n ManagementAssociationsCreateOrUpdateOptionalParams,\n ManagementAssociationsCreateOrUpdateResponse,\n ManagementAssociationsDeleteOptionalParams,\n ManagementAssociationsGetOptionalParams,\n ManagementAssociationsGetResponse\n} from \"../models\";\n\n/** Class containing ManagementAssociations operations. */\nexport class ManagementAssociationsImpl implements ManagementAssociations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class ManagementAssociations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Retrieves the ManagementAssociations list.\n * @param options The options parameters.\n */\n listBySubscription(\n options?: ManagementAssociationsListBySubscriptionOptionalParams\n ): Promise<ManagementAssociationsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Creates or updates the ManagementAssociation.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param parameters The parameters required to create ManagementAssociation extension.\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n managementAssociationName: string,\n parameters: ManagementAssociation,\n options?: ManagementAssociationsCreateOrUpdateOptionalParams\n ): Promise<ManagementAssociationsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, parameters, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Deletes the ManagementAssociation in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n managementAssociationName: string,\n options?: ManagementAssociationsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves the user ManagementAssociation.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n managementAssociationName: string,\n options?: ManagementAssociationsGetOptionalParams\n ): Promise<ManagementAssociationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, options },\n getOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociationPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociation\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters2,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociation\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { ManagementConfigurations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n ManagementConfigurationsListBySubscriptionOptionalParams,\n ManagementConfigurationsListBySubscriptionResponse,\n ManagementConfiguration,\n ManagementConfigurationsCreateOrUpdateOptionalParams,\n ManagementConfigurationsCreateOrUpdateResponse,\n ManagementConfigurationsDeleteOptionalParams,\n ManagementConfigurationsGetOptionalParams,\n ManagementConfigurationsGetResponse\n} from \"../models\";\n\n/** Class containing ManagementConfigurations operations. */\nexport class ManagementConfigurationsImpl implements ManagementConfigurations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class ManagementConfigurations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Retrieves the ManagementConfigurations list.\n * @param options The options parameters.\n */\n listBySubscription(\n options?: ManagementConfigurationsListBySubscriptionOptionalParams\n ): Promise<ManagementConfigurationsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Creates or updates the ManagementConfiguration.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n managementConfigurationName: string,\n parameters: ManagementConfiguration,\n options?: ManagementConfigurationsCreateOrUpdateOptionalParams\n ): Promise<ManagementConfigurationsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, parameters, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Deletes the ManagementConfiguration in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n managementConfigurationName: string,\n options?: ManagementConfigurationsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves the user ManagementConfiguration.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n managementConfigurationName: string,\n options?: ManagementConfigurationsGetOptionalParams\n ): Promise<ManagementConfigurationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, options },\n getOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfigurationPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfiguration\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters3,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfiguration\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n Operation,\n OperationsListOptionalParams,\n OperationsListResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Lists all of the available OperationsManagement Rest API operations.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all of the available OperationsManagement Rest API operations.\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.OperationsManagement/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n SolutionsImpl,\n ManagementAssociationsImpl,\n ManagementConfigurationsImpl,\n OperationsImpl\n} from \"./operations\";\nimport {\n Solutions,\n ManagementAssociations,\n ManagementConfigurations,\n Operations\n} from \"./operationsInterfaces\";\nimport { OperationsManagementClientOptionalParams } from \"./models\";\n\nexport class OperationsManagementClient extends coreClient.ServiceClient {\n $host: string;\n subscriptionId: string;\n apiVersion: string;\n providerName: string;\n resourceType: string;\n resourceName: string;\n\n /**\n * Initializes a new instance of the OperationsManagementClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId Gets subscription credentials which uniquely identify Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param providerName Provider name for the parent resource.\n * @param resourceType Resource type for the parent resource\n * @param resourceName Parent resource name.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n providerName: string,\n resourceType: string,\n resourceName: string,\n options?: OperationsManagementClientOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (subscriptionId === undefined) {\n throw new Error(\"'subscriptionId' cannot be null\");\n }\n if (providerName === undefined) {\n throw new Error(\"'providerName' cannot be null\");\n }\n if (resourceType === undefined) {\n throw new Error(\"'resourceType' cannot be null\");\n }\n if (resourceName === undefined) {\n throw new Error(\"'resourceName' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: OperationsManagementClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-operations/4.0.0-beta.2`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n this.providerName = providerName;\n this.resourceType = resourceType;\n this.resourceName = resourceName;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2015-11-01-preview\";\n this.solutions = new SolutionsImpl(this);\n this.managementAssociations = new ManagementAssociationsImpl(this);\n this.managementConfigurations = new ManagementConfigurationsImpl(this);\n this.operations = new OperationsImpl(this);\n }\n\n solutions: Solutions;\n managementAssociations: ManagementAssociations;\n managementConfigurations: ManagementConfigurations;\n operations: Operations;\n}\n"],"names":["SolutionMapper","SolutionPatchMapper","ManagementAssociationMapper","ManagementConfigurationMapper","LroEngine","coreClient.createSerializer","Mappers.Solution","Mappers.CodeMessageError","Parameters.parameters","Parameters.apiVersion","Parameters.$host","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.solutionName","Parameters.contentType","Parameters.accept","Parameters.parameters1","Mappers.SolutionPropertiesList","listBySubscriptionOperationSpec","createOrUpdateOperationSpec","deleteOperationSpec","getOperationSpec","serializer","Mappers.ManagementAssociationPropertiesList","Mappers.ManagementAssociation","Parameters.parameters2","Parameters.providerName","Parameters.resourceType","Parameters.resourceName","Parameters.managementAssociationName","Mappers.ManagementConfigurationPropertiesList","Mappers.ManagementConfiguration","Parameters.parameters3","Parameters.managementConfigurationName","__asyncValues","__asyncDelegator","Mappers.OperationListResult","coreClient.ServiceClient"],"mappings":";;;;;;;;AAAA;;;;;;;AAUO,MAAM,QAAQ,GAA+B;IAClD,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,UAAU;QACrB,eAAe,EAAE;YACf,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;iBACpC;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,cAAc;iBAC1B;aACF;YACD,UAAU,EAAE;gBACV,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,oBAAoB;iBAChC;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,YAAY,GAA+B;IACtD,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,cAAc;QACzB,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,cAAc,EAAE,WAAW;gBAC3B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,aAAa,EAAE;gBACb,cAAc,EAAE,eAAe;gBAC/B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,OAAO,EAAE;gBACP,cAAc,EAAE,SAAS;gBACzB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,kBAAkB,GAA+B;IAC5D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,oBAAoB;QAC/B,eAAe,EAAE;YACf,mBAAmB,EAAE;gBACnB,cAAc,EAAE,qBAAqB;gBACrC,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,iBAAiB,EAAE;gBACjB,cAAc,EAAE,mBAAmB;gBACnC,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,kBAAkB,EAAE;gBAClB,cAAc,EAAE,oBAAoB;gBACpC,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF;YACD,mBAAmB,EAAE;gBACnB,cAAc,EAAE,qBAAqB;gBACrC,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,QAAQ;yBACf;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,gBAAgB,GAA+B;IAC1D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,kBAAkB;QAC7B,eAAe,EAAE;YACf,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,uBAAuB;iBACnC;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,qBAAqB,GAA+B;IAC/D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,uBAAuB;QAClC,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,OAAO,EAAE;gBACP,cAAc,EAAE,SAAS;gBACzB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,aAAa,GAA+B;IACvD,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,eAAe;QAC1B,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,QAAQ,EAAE,EAAE;iBACpC;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,sBAAsB,GAA+B;IAChE,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,wBAAwB;QACnC,eAAe,EAAE;YACf,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,UAAU;yBACtB;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,mCAAmC,GAA+B;IAC7E,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,qCAAqC;QAChD,eAAe,EAAE;YACf,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,uBAAuB;yBACnC;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,qBAAqB,GAA+B;IAC/D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,uBAAuB;QAClC,eAAe,EAAE;YACf,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,UAAU,EAAE;gBACV,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,iCAAiC;iBAC7C;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,+BAA+B,GAA+B;IACzE,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,iCAAiC;QAC5C,eAAe,EAAE;YACf,aAAa,EAAE;gBACb,cAAc,EAAE,eAAe;gBAC/B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,qCAAqC,GAA+B;IAC/E,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,uCAAuC;QAClD,eAAe,EAAE;YACf,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,yBAAyB;yBACrC;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,uBAAuB,GAA+B;IACjE,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,yBAAyB;QACpC,eAAe,EAAE;YACf,EAAE,EAAE;gBACF,cAAc,EAAE,IAAI;gBACpB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,UAAU,EAAE;gBACV,cAAc,EAAE,YAAY;gBAC5B,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,mCAAmC;iBAC/C;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,iCAAiC,GAA+B;IAC3E,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,mCAAmC;QAC9C,eAAe,EAAE;YACf,aAAa,EAAE;gBACb,cAAc,EAAE,eAAe;gBAC/B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,kBAAkB,EAAE;gBAClB,cAAc,EAAE,oBAAoB;gBACpC,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,UAAU,EAAE;gBACV,cAAc,EAAE,YAAY;gBAC5B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,sBAAsB;yBAClC;qBACF;iBACF;aACF;YACD,iBAAiB,EAAE;gBACjB,cAAc,EAAE,mBAAmB;gBACnC,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,QAAQ,EAAE,IAAI;gBACd,IAAI,EAAE;oBACJ,IAAI,EAAE,YAAY;oBAClB,KAAK,EAAE,EAAE,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,EAAE;iBACjC;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,oBAAoB,GAA+B;IAC9D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,sBAAsB;QACjC,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,mBAAmB,GAA+B;IAC7D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,qBAAqB;QAChC,eAAe,EAAE;YACf,KAAK,EAAE;gBACL,cAAc,EAAE,OAAO;gBACvB,IAAI,EAAE;oBACJ,IAAI,EAAE,UAAU;oBAChB,OAAO,EAAE;wBACP,IAAI,EAAE;4BACJ,IAAI,EAAE,WAAW;4BACjB,SAAS,EAAE,WAAW;yBACvB;qBACF;iBACF;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,SAAS,GAA+B;IACnD,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,WAAW;QACtB,eAAe,EAAE;YACf,IAAI,EAAE;gBACJ,cAAc,EAAE,MAAM;gBACtB,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,OAAO,EAAE;gBACP,cAAc,EAAE,SAAS;gBACzB,IAAI,EAAE;oBACJ,IAAI,EAAE,WAAW;oBACjB,SAAS,EAAE,kBAAkB;iBAC9B;aACF;SACF;KACF;CACF,CAAC;AAEK,MAAM,gBAAgB,GAA+B;IAC1D,IAAI,EAAE;QACJ,IAAI,EAAE,WAAW;QACjB,SAAS,EAAE,kBAAkB;QAC7B,eAAe,EAAE;YACf,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,QAAQ,EAAE;gBACR,cAAc,EAAE,UAAU;gBAC1B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;YACD,SAAS,EAAE;gBACT,cAAc,EAAE,WAAW;gBAC3B,IAAI,EAAE;oBACJ,IAAI,EAAE,QAAQ;iBACf;aACF;SACF;KACF;CACF;;;;;;;;;;;;;;;;;;;;;;;ACtfD;;;;;;;AAaA,AAOO,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,CAAC,SAAS,EAAE,aAAa,CAAC;IACzC,MAAM,EAAE;QACN,YAAY,EAAE,kBAAkB;QAChC,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,cAAc;QAC9B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,UAAU,GAAuB;IAC5C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAEA,QAAc;CACvB,CAAC;AAEF,AAAO,MAAM,MAAM,GAAuB;IACxC,aAAa,EAAE,QAAQ;IACvB,MAAM,EAAE;QACN,YAAY,EAAE,kBAAkB;QAChC,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,QAAQ;QACxB,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,KAAK,GAA0B;IAC1C,aAAa,EAAE,OAAO;IACtB,MAAM,EAAE;QACN,cAAc,EAAE,OAAO;QACvB,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;IACD,YAAY,EAAE,IAAI;CACnB,CAAC;AAEF,AAAO,MAAM,cAAc,GAA0B;IACnD,aAAa,EAAE,gBAAgB;IAC/B,MAAM,EAAE;QACN,cAAc,EAAE,gBAAgB;QAChC,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,iBAAiB,GAA0B;IACtD,aAAa,EAAE,mBAAmB;IAClC,MAAM,EAAE;QACN,WAAW,EAAE;YACX,OAAO,EAAE,IAAI,MAAM,CAAC,qBAAqB,CAAC;YAC1C,SAAS,EAAE,EAAE;YACb,SAAS,EAAE,CAAC;SACb;QACD,cAAc,EAAE,mBAAmB;QACnC,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,UAAU,GAA4B;IACjD,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAE;QACN,YAAY,EAAE,oBAAoB;QAClC,UAAU,EAAE,IAAI;QAChB,cAAc,EAAE,aAAa;QAC7B,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,YAAY,GAA0B;IACjD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,cAAc,EAAE,cAAc;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAEC,aAAmB;CAC5B,CAAC;AAEF,AAAO,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAEC,qBAA2B;CACpC,CAAC;AAEF,AAAO,MAAM,YAAY,GAA0B;IACjD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,cAAc,EAAE,cAAc;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,YAAY,GAA0B;IACjD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,cAAc,EAAE,cAAc;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,YAAY,GAA0B;IACjD,aAAa,EAAE,cAAc;IAC7B,MAAM,EAAE;QACN,cAAc,EAAE,cAAc;QAC9B,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,yBAAyB,GAA0B;IAC9D,aAAa,EAAE,2BAA2B;IAC1C,MAAM,EAAE;QACN,cAAc,EAAE,2BAA2B;QAC3C,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;AAEF,AAAO,MAAM,WAAW,GAAuB;IAC7C,aAAa,EAAE,YAAY;IAC3B,MAAM,EAAEC,uBAA6B;CACtC,CAAC;AAEF,AAAO,MAAM,2BAA2B,GAA0B;IAChE,aAAa,EAAE,6BAA6B;IAC5C,MAAM,EAAE;QACN,cAAc,EAAE,6BAA6B;QAC7C,QAAQ,EAAE,IAAI;QACd,IAAI,EAAE;YACJ,IAAI,EAAE,QAAQ;SACf;KACF;CACF,CAAC;;ACnLF;;;;;;;MAUa,OAAO;IAClB,YACU,eAAkE,EAClE,IAA6B,EAC7B,IAIe,EAChB,cAAsB,IAAI,CAAC,IAAK,EAChC,gBAAwB,IAAI,CAAC,UAAU;QARtC,oBAAe,GAAf,eAAe,CAAmD;QAClE,SAAI,GAAJ,IAAI,CAAyB;QAC7B,SAAI,GAAJ,IAAI,CAIW;QAChB,gBAAW,GAAX,WAAW,CAAqB;QAChC,kBAAa,GAAb,aAAa,CAA0B;KAC5C;IACS,kBAAkB;;YAC7B,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;SACnD;KAAA;IACY,eAAe,CAAC,IAAY;;YACvC,MAAM,KAA+B,IAAI,CAAC,IAAI,EAAxC,AAAkB,QAAQ,oBAA1B,eAA4B,CAAY,CAAC;YAC/C,OAAO,IAAI,CAAC,eAAe,CAAC,IAAI,CAAC,IAAI,kCAChC,QAAQ,KACX,IAAI,EACJ,UAAU,EAAE,KAAK,IACjB,CAAC;SACJ;KAAA;CACF;;ACjCD;;;;;;;AA+BA;AACA,MAAa,aAAa;;;;;IAOxB,YAAY,MAAkC;QAC5C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;;;;;;;;IASK,mBAAmB,CACvB,iBAAyB,EACzB,YAAoB,EACpB,UAAoB,EACpB,OAA+C;;YAO/C,MAAM,mBAAmB,GAAG,CAC1B,IAAmC,EACnC,IAA8B;gBAE9B,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;aACrD,CAAA,CAAC;YACF,MAAM,aAAa,GAAG,CACpB,IAAmC,EACnC,IAA8B;;gBAE9B,IAAI,kBAAkB,GAEN,SAAS,CAAC;gBAC1B,MAAM,gBAAgB,GAAG,MAAA,IAAI,CAAC,OAAO,0CAAE,UAAU,CAAC;gBAClD,MAAM,QAAQ,GAAmC,CAC/C,WAA6C,EAC7C,YAAqB;oBAErB,kBAAkB,GAAG,WAAW,CAAC;oBACjC,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAG,WAAW,EAAE,YAAY,CAAC,CAAC;iBAC/C,CAAC;gBACF,MAAM,WAAW,mCACZ,IAAI,KACP,OAAO,kCACF,IAAI,CAAC,OAAO,KACf,UAAU,EAAE,QAAQ,MAEvB,CAAC;gBACF,MAAM,YAAY,GAAG,MAAM,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;gBAClE,OAAO;oBACL,YAAY;oBACZ,WAAW,EAAE;wBACX,UAAU,EAAE,kBAAmB,CAAC,MAAM;wBACtC,IAAI,EAAE,kBAAmB,CAAC,UAAU;wBACpC,OAAO,EAAE,kBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE;qBAC9C;iBACF,CAAC;aACH,CAAA,CAAC;YAEF,MAAM,GAAG,GAAG,IAAI,OAAO,CACrB,aAAa,EACb,EAAE,iBAAiB,EAAE,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,EACxD,2BAA2B,CAC5B,CAAC;YACF,OAAO,IAAIC,iBAAS,CAAC,GAAG,EAAE;gBACxB,UAAU,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU;gBAC/B,YAAY,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,kBAAkB;aAC1C,CAAC,CAAC;SACJ;KAAA;;;;;;;;IASK,0BAA0B,CAC9B,iBAAyB,EACzB,YAAoB,EACpB,UAAoB,EACpB,OAA+C;;YAE/C,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,mBAAmB,CAC3C,iBAAiB,EACjB,YAAY,EACZ,UAAU,EACV,OAAO,CACR,CAAC;YACF,OAAO,MAAM,CAAC,aAAa,EAAE,CAAC;SAC/B;KAAA;;;;;;;;IASK,WAAW,CACf,iBAAyB,EACzB,YAAoB,EACpB,UAAyB,EACzB,OAAuC;;YAOvC,MAAM,mBAAmB,GAAG,CAC1B,IAAmC,EACnC,IAA8B;gBAE9B,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;aACrD,CAAA,CAAC;YACF,MAAM,aAAa,GAAG,CACpB,IAAmC,EACnC,IAA8B;;gBAE9B,IAAI,kBAAkB,GAEN,SAAS,CAAC;gBAC1B,MAAM,gBAAgB,GAAG,MAAA,IAAI,CAAC,OAAO,0CAAE,UAAU,CAAC;gBAClD,MAAM,QAAQ,GAAmC,CAC/C,WAA6C,EAC7C,YAAqB;oBAErB,kBAAkB,GAAG,WAAW,CAAC;oBACjC,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAG,WAAW,EAAE,YAAY,CAAC,CAAC;iBAC/C,CAAC;gBACF,MAAM,WAAW,mCACZ,IAAI,KACP,OAAO,kCACF,IAAI,CAAC,OAAO,KACf,UAAU,EAAE,QAAQ,MAEvB,CAAC;gBACF,MAAM,YAAY,GAAG,MAAM,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;gBAClE,OAAO;oBACL,YAAY;oBACZ,WAAW,EAAE;wBACX,UAAU,EAAE,kBAAmB,CAAC,MAAM;wBACtC,IAAI,EAAE,kBAAmB,CAAC,UAAU;wBACpC,OAAO,EAAE,kBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE;qBAC9C;iBACF,CAAC;aACH,CAAA,CAAC;YAEF,MAAM,GAAG,GAAG,IAAI,OAAO,CACrB,aAAa,EACb,EAAE,iBAAiB,EAAE,YAAY,EAAE,UAAU,EAAE,OAAO,EAAE,EACxD,mBAAmB,CACpB,CAAC;YACF,OAAO,IAAIA,iBAAS,CAAC,GAAG,EAAE;gBACxB,UAAU,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU;gBAC/B,YAAY,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,kBAAkB;aAC1C,CAAC,CAAC;SACJ;KAAA;;;;;;;;IASK,kBAAkB,CACtB,iBAAyB,EACzB,YAAoB,EACpB,UAAyB,EACzB,OAAuC;;YAEvC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CACnC,iBAAiB,EACjB,YAAY,EACZ,UAAU,EACV,OAAO,CACR,CAAC;YACF,OAAO,MAAM,CAAC,aAAa,EAAE,CAAC;SAC/B;KAAA;;;;;;;IAQK,WAAW,CACf,iBAAyB,EACzB,YAAoB,EACpB,OAAuC;;YAEvC,MAAM,mBAAmB,GAAG,CAC1B,IAAmC,EACnC,IAA8B;gBAE9B,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,IAAI,EAAE,IAAI,CAAC,CAAC;aACrD,CAAA,CAAC;YACF,MAAM,aAAa,GAAG,CACpB,IAAmC,EACnC,IAA8B;;gBAE9B,IAAI,kBAAkB,GAEN,SAAS,CAAC;gBAC1B,MAAM,gBAAgB,GAAG,MAAA,IAAI,CAAC,OAAO,0CAAE,UAAU,CAAC;gBAClD,MAAM,QAAQ,GAAmC,CAC/C,WAA6C,EAC7C,YAAqB;oBAErB,kBAAkB,GAAG,WAAW,CAAC;oBACjC,gBAAgB,aAAhB,gBAAgB,uBAAhB,gBAAgB,CAAG,WAAW,EAAE,YAAY,CAAC,CAAC;iBAC/C,CAAC;gBACF,MAAM,WAAW,mCACZ,IAAI,KACP,OAAO,kCACF,IAAI,CAAC,OAAO,KACf,UAAU,EAAE,QAAQ,MAEvB,CAAC;gBACF,MAAM,YAAY,GAAG,MAAM,mBAAmB,CAAC,WAAW,EAAE,IAAI,CAAC,CAAC;gBAClE,OAAO;oBACL,YAAY;oBACZ,WAAW,EAAE;wBACX,UAAU,EAAE,kBAAmB,CAAC,MAAM;wBACtC,IAAI,EAAE,kBAAmB,CAAC,UAAU;wBACpC,OAAO,EAAE,kBAAmB,CAAC,OAAO,CAAC,MAAM,EAAE;qBAC9C;iBACF,CAAC;aACH,CAAA,CAAC;YAEF,MAAM,GAAG,GAAG,IAAI,OAAO,CACrB,aAAa,EACb,EAAE,iBAAiB,EAAE,YAAY,EAAE,OAAO,EAAE,EAC5C,mBAAmB,CACpB,CAAC;YACF,OAAO,IAAIA,iBAAS,CAAC,GAAG,EAAE;gBACxB,UAAU,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,UAAU;gBAC/B,YAAY,EAAE,OAAO,aAAP,OAAO,uBAAP,OAAO,CAAE,kBAAkB;aAC1C,CAAC,CAAC;SACJ;KAAA;;;;;;;IAQK,kBAAkB,CACtB,iBAAyB,EACzB,YAAoB,EACpB,OAAuC;;YAEvC,MAAM,MAAM,GAAG,MAAM,IAAI,CAAC,WAAW,CACnC,iBAAiB,EACjB,YAAY,EACZ,OAAO,CACR,CAAC;YACF,OAAO,MAAM,CAAC,aAAa,EAAE,CAAC;SAC/B;KAAA;;;;;;;IAQD,GAAG,CACD,iBAAyB,EACzB,YAAoB,EACpB,OAAoC;QAEpC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,YAAY,EAAE,OAAO,EAAE,EAC5C,gBAAgB,CACjB,CAAC;KACH;;;;;;IAOD,mBAAmB,CACjB,iBAAyB,EACzB,OAAoD;QAEpD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,OAAO,EAAE,EAC9B,gCAAgC,CACjC,CAAC;KACH;;;;;IAMD,kBAAkB,CAChB,OAAmD;QAEnD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,OAAO,EAAE,EACX,+BAA+B,CAChC,CAAC;KACH;CACF;AACD;AACA,MAAM,UAAU,GAAGC,2BAA2B,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAM,2BAA2B,GAA6B;IAC5D,IAAI,EACF,sIAAsI;IACxI,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEC,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,OAAO,EAAE;YACP,UAAU,EAAEC,gBAAwB;SACrC;KACF;IACD,WAAW,EAAEC,UAAqB;IAClC,eAAe,EAAE,CAACC,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BC,YAAuB;KACxB;IACD,gBAAgB,EAAE,CAACC,WAAsB,EAAEC,MAAiB,CAAC;IAC7D,SAAS,EAAE,MAAM;IACjB,UAAU;CACX,CAAC;AACF,MAAM,mBAAmB,GAA6B;IACpD,IAAI,EACF,sIAAsI;IACxI,UAAU,EAAE,OAAO;IACnB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAET,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,GAAG,EAAE;YACH,UAAU,EAAEA,QAAgB;SAC7B;QACD,OAAO,EAAE;YACP,UAAU,EAAEC,gBAAwB;SACrC;KACF;IACD,WAAW,EAAES,WAAsB;IACnC,eAAe,EAAE,CAACP,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BC,YAAuB;KACxB;IACD,gBAAgB,EAAE,CAACC,WAAsB,EAAEC,MAAiB,CAAC;IAC7D,SAAS,EAAE,MAAM;IACjB,UAAU;CACX,CAAC;AACF,MAAM,mBAAmB,GAA6B;IACpD,IAAI,EACF,sIAAsI;IACxI,UAAU,EAAE,QAAQ;IACpB,SAAS,EAAE;QACT,GAAG,EAAE,EAAE;QACP,GAAG,EAAE,EAAE;QACP,GAAG,EAAE,EAAE;QACP,GAAG,EAAE,EAAE;QACP,OAAO,EAAE;YACP,UAAU,EAAER,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BC,YAAuB;KACxB;IACD,gBAAgB,EAAE,CAACE,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,gBAAgB,GAA6B;IACjD,IAAI,EACF,sIAAsI;IACxI,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAET,QAAgB;SAC7B;QACD,OAAO,EAAE;YACP,UAAU,EAAEC,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BC,YAAuB;KACxB;IACD,gBAAgB,EAAE,CAACE,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,gCAAgC,GAA6B;IACjE,IAAI,EACF,uHAAuH;IACzH,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEE,sBAA8B;SAC3C;QACD,OAAO,EAAE;YACP,UAAU,EAAEV,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;KAC7B;IACD,gBAAgB,EAAE,CAACG,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;AACF,MAAM,+BAA+B,GAA6B;IAChE,IAAI,EACF,oFAAoF;IACtF,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEE,sBAA8B;SAC3C;QACD,OAAO,EAAE;YACP,UAAU,EAAEV,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE,CAACC,KAAgB,EAAEC,cAAyB,CAAC;IAC5D,gBAAgB,EAAE,CAACI,MAAiB,CAAC;IACrC,UAAU;CACX,CAAC;;ACnfF;;;;;;;AASA,AAeA;AACA,MAAa,0BAA0B;;;;;IAOrC,YAAY,MAAkC;QAC5C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;;;;;IAMD,kBAAkB,CAChB,OAAgE;QAEhE,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,OAAO,EAAE,EACXG,iCAA+B,CAChC,CAAC;KACH;;;;;;;;IASD,cAAc,CACZ,iBAAyB,EACzB,yBAAiC,EACjC,UAAiC,EACjC,OAA4D;QAE5D,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,yBAAyB,EAAE,UAAU,EAAE,OAAO,EAAE,EACrEC,6BAA2B,CAC5B,CAAC;KACH;;;;;;;IAQD,MAAM,CACJ,iBAAyB,EACzB,yBAAiC,EACjC,OAAoD;QAEpD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,yBAAyB,EAAE,OAAO,EAAE,EACzDC,qBAAmB,CACpB,CAAC;KACH;;;;;;;IAQD,GAAG,CACD,iBAAyB,EACzB,yBAAiC,EACjC,OAAiD;QAEjD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,yBAAyB,EAAE,OAAO,EAAE,EACzDC,kBAAgB,CACjB,CAAC;KACH;CACF;AACD;AACA,MAAMC,YAAU,GAAGjB,2BAA2B,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAMa,iCAA+B,GAA6B;IAChE,IAAI,EACF,iGAAiG;IACnG,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEK,mCAA2C;SACxD;QACD,OAAO,EAAE;YACP,UAAU,EAAEhB,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE,CAACC,KAAgB,EAAEC,cAAyB,CAAC;IAC5D,gBAAgB,EAAE,CAACI,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;AACF,MAAMH,6BAA2B,GAA6B;IAC5D,IAAI,EACF,uNAAuN;IACzN,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEK,qBAA6B;SAC1C;QACD,OAAO,EAAE;YACP,UAAU,EAAEjB,gBAAwB;SACrC;KACF;IACD,WAAW,EAAEkB,WAAsB;IACnC,eAAe,EAAE,CAAChB,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5Bc,YAAuB;QACvBC,YAAuB;QACvBC,YAAuB;QACvBC,yBAAoC;KACrC;IACD,gBAAgB,EAAE,CAACf,WAAsB,EAAEC,MAAiB,CAAC;IAC7D,SAAS,EAAE,MAAM;gBACjBO,YAAU;CACX,CAAC;AACF,MAAMF,qBAAmB,GAA6B;IACpD,IAAI,EACF,uNAAuN;IACzN,UAAU,EAAE,QAAQ;IACpB,SAAS,EAAE;QACT,GAAG,EAAE,EAAE;QACP,OAAO,EAAE;YACP,UAAU,EAAEb,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5Bc,YAAuB;QACvBC,YAAuB;QACvBC,YAAuB;QACvBC,yBAAoC;KACrC;IACD,gBAAgB,EAAE,CAACd,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;AACF,MAAMD,kBAAgB,GAA6B;IACjD,IAAI,EACF,uNAAuN;IACzN,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEG,qBAA6B;SAC1C;QACD,OAAO,EAAE;YACP,UAAU,EAAEjB,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5Bc,YAAuB;QACvBC,YAAuB;QACvBC,YAAuB;QACvBC,yBAAoC;KACrC;IACD,gBAAgB,EAAE,CAACd,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;;ACpMF;;;;;;;AASA,AAeA;AACA,MAAa,4BAA4B;;;;;IAOvC,YAAY,MAAkC;QAC5C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;;;;;IAMD,kBAAkB,CAChB,OAAkE;QAElE,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,OAAO,EAAE,EACXJ,iCAA+B,CAChC,CAAC;KACH;;;;;;;;IASD,cAAc,CACZ,iBAAyB,EACzB,2BAAmC,EACnC,UAAmC,EACnC,OAA8D;QAE9D,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,UAAU,EAAE,OAAO,EAAE,EACvEC,6BAA2B,CAC5B,CAAC;KACH;;;;;;;IAQD,MAAM,CACJ,iBAAyB,EACzB,2BAAmC,EACnC,OAAsD;QAEtD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,OAAO,EAAE,EAC3DC,qBAAmB,CACpB,CAAC;KACH;;;;;;;IAQD,GAAG,CACD,iBAAyB,EACzB,2BAAmC,EACnC,OAAmD;QAEnD,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CACrC,EAAE,iBAAiB,EAAE,2BAA2B,EAAE,OAAO,EAAE,EAC3DC,kBAAgB,CACjB,CAAC;KACH;CACF;AACD;AACA,MAAMC,YAAU,GAAGjB,2BAA2B,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAMa,iCAA+B,GAA6B;IAChE,IAAI,EACF,mGAAmG;IACrG,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEY,qCAA6C;SAC1D;QACD,OAAO,EAAE;YACP,UAAU,EAAEvB,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE,CAACC,KAAgB,EAAEC,cAAyB,CAAC;IAC5D,gBAAgB,EAAE,CAACI,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;AACF,MAAMH,6BAA2B,GAA6B;IAC5D,IAAI,EACF,oKAAoK;IACtK,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEY,uBAA+B;SAC5C;QACD,OAAO,EAAE;YACP,UAAU,EAAExB,gBAAwB;SACrC;KACF;IACD,WAAW,EAAEyB,WAAsB;IACnC,eAAe,EAAE,CAACvB,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BqB,2BAAsC;KACvC;IACD,gBAAgB,EAAE,CAACnB,WAAsB,EAAEC,MAAiB,CAAC;IAC7D,SAAS,EAAE,MAAM;gBACjBO,YAAU;CACX,CAAC;AACF,MAAMF,qBAAmB,GAA6B;IACpD,IAAI,EACF,oKAAoK;IACtK,UAAU,EAAE,QAAQ;IACpB,SAAS,EAAE;QACT,GAAG,EAAE,EAAE;QACP,OAAO,EAAE;YACP,UAAU,EAAEb,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BqB,2BAAsC;KACvC;IACD,gBAAgB,EAAE,CAAClB,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;AACF,MAAMD,kBAAgB,GAA6B;IACjD,IAAI,EACF,oKAAoK;IACtK,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAEU,uBAA+B;SAC5C;QACD,OAAO,EAAE;YACP,UAAU,EAAExB,gBAAwB;SACrC;KACF;IACD,eAAe,EAAE,CAACE,UAAqB,CAAC;IACxC,aAAa,EAAE;QACbC,KAAgB;QAChBC,cAAyB;QACzBC,iBAA4B;QAC5BqB,2BAAsC;KACvC;IACD,gBAAgB,EAAE,CAAClB,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;;AC3LF;;;;;;;AAoBA;AACA;AACA,MAAa,cAAc;;;;;IAOzB,YAAY,MAAkC;QAC5C,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;KACtB;;;;;IAMM,IAAI,CACT,OAAsC;QAEtC,MAAM,IAAI,GAAG,IAAI,CAAC,aAAa,CAAC,OAAO,CAAC,CAAC;QACzC,OAAO;YACL,IAAI;gBACF,OAAO,IAAI,CAAC,IAAI,EAAE,CAAC;aACpB;YACD,CAAC,MAAM,CAAC,aAAa,CAAC;gBACpB,OAAO,IAAI,CAAC;aACb;YACD,MAAM,EAAE;gBACN,OAAO,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAC;aACrC;SACF,CAAC;KACH;IAEc,cAAc,CAC3B,OAAsC;;YAEtC,IAAI,MAAM,GAAG,oBAAM,IAAI,CAAC,KAAK,CAAC,OAAO,CAAC,CAAA,CAAC;YACvC,0BAAM,MAAM,CAAC,KAAK,IAAI,EAAE,CAAA,CAAC;SAC1B;KAAA;IAEc,aAAa,CAC1B,OAAsC;;;;gBAEtC,KAAyB,IAAA,KAAAY,oBAAA,IAAI,CAAC,cAAc,CAAC,OAAO,CAAC,CAAA,IAAA;oBAA1C,MAAM,IAAI,WAAA,CAAA;oBACnB,oBAAA,OAAOC,uBAAAD,oBAAA,IAAI,CAAA,CAAA,CAAA,CAAC;iBACb;;;;;;;;;SACF;KAAA;;;;;IAMO,KAAK,CACX,OAAsC;QAEtC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE,OAAO,EAAE,EAAE,iBAAiB,CAAC,CAAC;KACzE;CACF;AACD;AACA,MAAMZ,YAAU,GAAGjB,2BAA2B,CAAC,OAAO,cAAc,KAAK,CAAC,CAAC;AAE3E,MAAM,iBAAiB,GAA6B;IAClD,IAAI,EAAE,sDAAsD;IAC5D,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE+B,mBAA2B;SACxC;KACF;IACD,eAAe,EAAE,CAAC3B,UAAqB,CAAC;IACxC,aAAa,EAAE,CAACC,KAAgB,CAAC;IACjC,gBAAgB,EAAE,CAACK,MAAiB,CAAC;gBACrCO,YAAU;CACX,CAAC;;AC9FF;;;;;;;AAQA,MAgBa,0BAA2B,SAAQe,wBAAwB;;;;;;;;;;;IAkBtE,YACE,WAAqC,EACrC,cAAsB,EACtB,YAAoB,EACpB,YAAoB,EACpB,YAAoB,EACpB,OAAkD;QAElD,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;QACD,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;SAClD;QACD,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;SAClD;QACD,IAAI,YAAY,KAAK,SAAS,EAAE;YAC9B,MAAM,IAAI,KAAK,CAAC,+BAA+B,CAAC,CAAC;SAClD;;QAGD,IAAI,CAAC,OAAO,EAAE;YACZ,OAAO,GAAG,EAAE,CAAC;SACd;QACD,MAAM,QAAQ,GAA6C;YACzD,kBAAkB,EAAE,iCAAiC;YACrD,UAAU,EAAE,WAAW;SACxB,CAAC;QAEF,MAAM,cAAc,GAAG,sCAAsC,CAAC;QAC9D,MAAM,eAAe,GACnB,OAAO,CAAC,gBAAgB,IAAI,OAAO,CAAC,gBAAgB,CAAC,eAAe;cAChE,GAAG,OAAO,CAAC,gBAAgB,CAAC,eAAe,IAAI,cAAc,EAAE;cAC/D,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,EAAE,OAAO,CAAC,QAAQ,IAAI,8BAA8B,GAC5D,CAAC;QACF,KAAK,CAAC,mBAAmB,CAAC,CAAC;;QAE3B,IAAI,CAAC,cAAc,GAAG,cAAc,CAAC;QACrC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;QACjC,IAAI,CAAC,YAAY,GAAG,YAAY,CAAC;;QAGjC,IAAI,CAAC,KAAK,GAAG,OAAO,CAAC,KAAK,IAAI,8BAA8B,CAAC;QAC7D,IAAI,CAAC,UAAU,GAAG,OAAO,CAAC,UAAU,IAAI,oBAAoB,CAAC;QAC7D,IAAI,CAAC,SAAS,GAAG,IAAI,aAAa,CAAC,IAAI,CAAC,CAAC;QACzC,IAAI,CAAC,sBAAsB,GAAG,IAAI,0BAA0B,CAAC,IAAI,CAAC,CAAC;QACnE,IAAI,CAAC,wBAAwB,GAAG,IAAI,4BAA4B,CAAC,IAAI,CAAC,CAAC;QACvE,IAAI,CAAC,UAAU,GAAG,IAAI,cAAc,CAAC,IAAI,CAAC,CAAC;KAC5C;CAMF;;;;"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/solutions.ts","../src/operations/managementAssociations.ts","../src/operations/managementConfigurations.ts","../src/operations/operations.ts","../src/operationsManagementClient.ts"],"sourcesContent":["/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\n\nexport const Solution: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Solution\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n },\n plan: {\n serializedName: \"plan\",\n type: {\n name: \"Composite\",\n className: \"SolutionPlan\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"SolutionProperties\"\n }\n }\n }\n }\n};\n\nexport const SolutionPlan: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPlan\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n publisher: {\n serializedName: \"publisher\",\n type: {\n name: \"String\"\n }\n },\n promotionCode: {\n serializedName: \"promotionCode\",\n type: {\n name: \"String\"\n }\n },\n product: {\n serializedName: \"product\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SolutionProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionProperties\",\n modelProperties: {\n workspaceResourceId: {\n serializedName: \"workspaceResourceId\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n provisioningState: {\n serializedName: \"provisioningState\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n containedResources: {\n serializedName: \"containedResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n },\n referencedResources: {\n serializedName: \"referencedResources\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"String\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const CodeMessageError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CodeMessageError\",\n modelProperties: {\n error: {\n serializedName: \"error\",\n type: {\n name: \"Composite\",\n className: \"CodeMessageErrorError\"\n }\n }\n }\n }\n};\n\nexport const CodeMessageErrorError: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"CodeMessageErrorError\",\n modelProperties: {\n code: {\n serializedName: \"code\",\n type: {\n name: \"String\"\n }\n },\n message: {\n serializedName: \"message\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const SolutionPatch: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPatch\",\n modelProperties: {\n tags: {\n serializedName: \"tags\",\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"String\" } }\n }\n }\n }\n }\n};\n\nexport const SolutionPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"SolutionPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Solution\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementAssociationPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementAssociation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociation\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationProperties\"\n }\n }\n }\n }\n};\n\nexport const ManagementAssociationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementAssociationProperties\",\n modelProperties: {\n applicationId: {\n serializedName: \"applicationId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const ManagementConfigurationPropertiesList: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationPropertiesList\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ManagementConfiguration\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const ManagementConfiguration: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfiguration\",\n modelProperties: {\n id: {\n serializedName: \"id\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n name: {\n serializedName: \"name\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n type: {\n serializedName: \"type\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n location: {\n serializedName: \"location\",\n type: {\n name: \"String\"\n }\n },\n properties: {\n serializedName: \"properties\",\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationProperties\"\n }\n }\n }\n }\n};\n\nexport const ManagementConfigurationProperties: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ManagementConfigurationProperties\",\n modelProperties: {\n applicationId: {\n serializedName: \"applicationId\",\n type: {\n name: \"String\"\n }\n },\n parentResourceType: {\n serializedName: \"parentResourceType\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n parameters: {\n serializedName: \"parameters\",\n required: true,\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"ArmTemplateParameter\"\n }\n }\n }\n },\n provisioningState: {\n serializedName: \"provisioningState\",\n readOnly: true,\n type: {\n name: \"String\"\n }\n },\n template: {\n serializedName: \"template\",\n required: true,\n type: {\n name: \"Dictionary\",\n value: { type: { name: \"any\" } }\n }\n }\n }\n }\n};\n\nexport const ArmTemplateParameter: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"ArmTemplateParameter\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n value: {\n serializedName: \"value\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n\nexport const OperationListResult: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationListResult\",\n modelProperties: {\n value: {\n serializedName: \"value\",\n type: {\n name: \"Sequence\",\n element: {\n type: {\n name: \"Composite\",\n className: \"Operation\"\n }\n }\n }\n }\n }\n }\n};\n\nexport const Operation: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"Operation\",\n modelProperties: {\n name: {\n serializedName: \"name\",\n type: {\n name: \"String\"\n }\n },\n display: {\n serializedName: \"display\",\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\"\n }\n }\n }\n }\n};\n\nexport const OperationDisplay: coreClient.CompositeMapper = {\n type: {\n name: \"Composite\",\n className: \"OperationDisplay\",\n modelProperties: {\n provider: {\n serializedName: \"provider\",\n type: {\n name: \"String\"\n }\n },\n resource: {\n serializedName: \"resource\",\n type: {\n name: \"String\"\n }\n },\n operation: {\n serializedName: \"operation\",\n type: {\n name: \"String\"\n }\n }\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport {\n OperationParameter,\n OperationURLParameter,\n OperationQueryParameter\n} from \"@azure/core-client\";\nimport {\n Solution as SolutionMapper,\n SolutionPatch as SolutionPatchMapper,\n ManagementAssociation as ManagementAssociationMapper,\n ManagementConfiguration as ManagementConfigurationMapper\n} from \"../models/mappers\";\n\nexport const contentType: OperationParameter = {\n parameterPath: [\"options\", \"contentType\"],\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Content-Type\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: SolutionMapper\n};\n\nexport const accept: OperationParameter = {\n parameterPath: \"accept\",\n mapper: {\n defaultValue: \"application/json\",\n isConstant: true,\n serializedName: \"Accept\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const $host: OperationURLParameter = {\n parameterPath: \"$host\",\n mapper: {\n serializedName: \"$host\",\n required: true,\n type: {\n name: \"String\"\n }\n },\n skipEncoding: true\n};\n\nexport const subscriptionId: OperationURLParameter = {\n parameterPath: \"subscriptionId\",\n mapper: {\n serializedName: \"subscriptionId\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceGroupName: OperationURLParameter = {\n parameterPath: \"resourceGroupName\",\n mapper: {\n constraints: {\n Pattern: new RegExp(\"^[-\\\\w\\\\._\\\\(\\\\)]+$\"),\n MaxLength: 90,\n MinLength: 1\n },\n serializedName: \"resourceGroupName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const apiVersion: OperationQueryParameter = {\n parameterPath: \"apiVersion\",\n mapper: {\n defaultValue: \"2015-11-01-preview\",\n isConstant: true,\n serializedName: \"api-version\",\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const solutionName: OperationURLParameter = {\n parameterPath: \"solutionName\",\n mapper: {\n serializedName: \"solutionName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters1: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: SolutionPatchMapper\n};\n\nexport const parameters2: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: ManagementAssociationMapper\n};\n\nexport const providerName: OperationURLParameter = {\n parameterPath: \"providerName\",\n mapper: {\n serializedName: \"providerName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceType: OperationURLParameter = {\n parameterPath: \"resourceType\",\n mapper: {\n serializedName: \"resourceType\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const resourceName: OperationURLParameter = {\n parameterPath: \"resourceName\",\n mapper: {\n serializedName: \"resourceName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const managementAssociationName: OperationURLParameter = {\n parameterPath: \"managementAssociationName\",\n mapper: {\n serializedName: \"managementAssociationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n\nexport const parameters3: OperationParameter = {\n parameterPath: \"parameters\",\n mapper: ManagementConfigurationMapper\n};\n\nexport const managementConfigurationName: OperationURLParameter = {\n parameterPath: \"managementConfigurationName\",\n mapper: {\n serializedName: \"managementConfigurationName\",\n required: true,\n type: {\n name: \"String\"\n }\n }\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { LongRunningOperation, LroResponse } from \"@azure/core-lro\";\n\nexport class LroImpl<T> implements LongRunningOperation<T> {\n constructor(\n private sendOperationFn: (args: any, spec: any) => Promise<LroResponse<T>>,\n private args: Record<string, unknown>,\n private spec: {\n readonly requestBody?: unknown;\n readonly path?: string;\n readonly httpMethod: string;\n } & Record<string, any>,\n public requestPath: string = spec.path!,\n public requestMethod: string = spec.httpMethod\n ) {}\n public async sendInitialRequest(): Promise<LroResponse<T>> {\n return this.sendOperationFn(this.args, this.spec);\n }\n public async sendPollRequest(path: string): Promise<LroResponse<T>> {\n const { requestBody, ...restSpec } = this.spec;\n return this.sendOperationFn(this.args, {\n ...restSpec,\n path,\n httpMethod: \"GET\"\n });\n }\n}\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { Solutions } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport { PollerLike, PollOperationState, LroEngine } from \"@azure/core-lro\";\nimport { LroImpl } from \"../lroImpl\";\nimport {\n Solution,\n SolutionsCreateOrUpdateOptionalParams,\n SolutionsCreateOrUpdateResponse,\n SolutionPatch,\n SolutionsUpdateOptionalParams,\n SolutionsUpdateResponse,\n SolutionsDeleteOptionalParams,\n SolutionsGetOptionalParams,\n SolutionsGetResponse,\n SolutionsListByResourceGroupOptionalParams,\n SolutionsListByResourceGroupResponse,\n SolutionsListBySubscriptionOptionalParams,\n SolutionsListBySubscriptionResponse\n} from \"../models\";\n\n/** Class containing Solutions operations. */\nexport class SolutionsImpl implements Solutions {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class Solutions class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Creates or updates the Solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n async beginCreateOrUpdate(\n resourceGroupName: string,\n solutionName: string,\n parameters: Solution,\n options?: SolutionsCreateOrUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<SolutionsCreateOrUpdateResponse>,\n SolutionsCreateOrUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<SolutionsCreateOrUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, parameters, options },\n createOrUpdateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Creates or updates the Solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n async beginCreateOrUpdateAndWait(\n resourceGroupName: string,\n solutionName: string,\n parameters: Solution,\n options?: SolutionsCreateOrUpdateOptionalParams\n ): Promise<SolutionsCreateOrUpdateResponse> {\n const poller = await this.beginCreateOrUpdate(\n resourceGroupName,\n solutionName,\n parameters,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Patch a Solution. Only updating tags supported.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to patch a Solution.\n * @param options The options parameters.\n */\n async beginUpdate(\n resourceGroupName: string,\n solutionName: string,\n parameters: SolutionPatch,\n options?: SolutionsUpdateOptionalParams\n ): Promise<\n PollerLike<\n PollOperationState<SolutionsUpdateResponse>,\n SolutionsUpdateResponse\n >\n > {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<SolutionsUpdateResponse> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, parameters, options },\n updateOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Patch a Solution. Only updating tags supported.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param parameters The parameters required to patch a Solution.\n * @param options The options parameters.\n */\n async beginUpdateAndWait(\n resourceGroupName: string,\n solutionName: string,\n parameters: SolutionPatch,\n options?: SolutionsUpdateOptionalParams\n ): Promise<SolutionsUpdateResponse> {\n const poller = await this.beginUpdate(\n resourceGroupName,\n solutionName,\n parameters,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Deletes the solution in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n async beginDelete(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsDeleteOptionalParams\n ): Promise<PollerLike<PollOperationState<void>, void>> {\n const directSendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ): Promise<void> => {\n return this.client.sendOperationRequest(args, spec);\n };\n const sendOperation = async (\n args: coreClient.OperationArguments,\n spec: coreClient.OperationSpec\n ) => {\n let currentRawResponse:\n | coreClient.FullOperationResponse\n | undefined = undefined;\n const providedCallback = args.options?.onResponse;\n const callback: coreClient.RawResponseCallback = (\n rawResponse: coreClient.FullOperationResponse,\n flatResponse: unknown\n ) => {\n currentRawResponse = rawResponse;\n providedCallback?.(rawResponse, flatResponse);\n };\n const updatedArgs = {\n ...args,\n options: {\n ...args.options,\n onResponse: callback\n }\n };\n const flatResponse = await directSendOperation(updatedArgs, spec);\n return {\n flatResponse,\n rawResponse: {\n statusCode: currentRawResponse!.status,\n body: currentRawResponse!.parsedBody,\n headers: currentRawResponse!.headers.toJSON()\n }\n };\n };\n\n const lro = new LroImpl(\n sendOperation,\n { resourceGroupName, solutionName, options },\n deleteOperationSpec\n );\n return new LroEngine(lro, {\n resumeFrom: options?.resumeFrom,\n intervalInMs: options?.updateIntervalInMs\n });\n }\n\n /**\n * Deletes the solution in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n async beginDeleteAndWait(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsDeleteOptionalParams\n ): Promise<void> {\n const poller = await this.beginDelete(\n resourceGroupName,\n solutionName,\n options\n );\n return poller.pollUntilDone();\n }\n\n /**\n * Retrieves the user solution.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param solutionName User Solution Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n solutionName: string,\n options?: SolutionsGetOptionalParams\n ): Promise<SolutionsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, solutionName, options },\n getOperationSpec\n );\n }\n\n /**\n * Retrieves the solution list. It will retrieve both first party and third party solutions\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param options The options parameters.\n */\n listByResourceGroup(\n resourceGroupName: string,\n options?: SolutionsListByResourceGroupOptionalParams\n ): Promise<SolutionsListByResourceGroupResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, options },\n listByResourceGroupOperationSpec\n );\n }\n\n /**\n * Retrieves the solution list. It will retrieve both first party and third party solutions\n * @param options The options parameters.\n */\n listBySubscription(\n options?: SolutionsListBySubscriptionOptionalParams\n ): Promise<SolutionsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n 201: {\n bodyMapper: Mappers.Solution\n },\n 202: {\n bodyMapper: Mappers.Solution\n },\n 204: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst updateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"PATCH\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n 201: {\n bodyMapper: Mappers.Solution\n },\n 202: {\n bodyMapper: Mappers.Solution\n },\n 204: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters1,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n 201: {},\n 202: {},\n 204: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.Solution\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.solutionName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listByResourceGroupOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SolutionPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.SolutionPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { ManagementAssociations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n ManagementAssociationsListBySubscriptionOptionalParams,\n ManagementAssociationsListBySubscriptionResponse,\n ManagementAssociation,\n ManagementAssociationsCreateOrUpdateOptionalParams,\n ManagementAssociationsCreateOrUpdateResponse,\n ManagementAssociationsDeleteOptionalParams,\n ManagementAssociationsGetOptionalParams,\n ManagementAssociationsGetResponse\n} from \"../models\";\n\n/** Class containing ManagementAssociations operations. */\nexport class ManagementAssociationsImpl implements ManagementAssociations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class ManagementAssociations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Retrieves the ManagementAssociations list.\n * @param options The options parameters.\n */\n listBySubscription(\n options?: ManagementAssociationsListBySubscriptionOptionalParams\n ): Promise<ManagementAssociationsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Creates or updates the ManagementAssociation.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param parameters The parameters required to create ManagementAssociation extension.\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n managementAssociationName: string,\n parameters: ManagementAssociation,\n options?: ManagementAssociationsCreateOrUpdateOptionalParams\n ): Promise<ManagementAssociationsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, parameters, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Deletes the ManagementAssociation in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n managementAssociationName: string,\n options?: ManagementAssociationsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves the user ManagementAssociation.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementAssociationName User ManagementAssociation Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n managementAssociationName: string,\n options?: ManagementAssociationsGetOptionalParams\n ): Promise<ManagementAssociationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementAssociationName, options },\n getOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociationPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociation\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters2,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementAssociation\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.providerName,\n Parameters.resourceType,\n Parameters.resourceName,\n Parameters.managementAssociationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { ManagementConfigurations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n ManagementConfigurationsListBySubscriptionOptionalParams,\n ManagementConfigurationsListBySubscriptionResponse,\n ManagementConfiguration,\n ManagementConfigurationsCreateOrUpdateOptionalParams,\n ManagementConfigurationsCreateOrUpdateResponse,\n ManagementConfigurationsDeleteOptionalParams,\n ManagementConfigurationsGetOptionalParams,\n ManagementConfigurationsGetResponse\n} from \"../models\";\n\n/** Class containing ManagementConfigurations operations. */\nexport class ManagementConfigurationsImpl implements ManagementConfigurations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class ManagementConfigurations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Retrieves the ManagementConfigurations list.\n * @param options The options parameters.\n */\n listBySubscription(\n options?: ManagementConfigurationsListBySubscriptionOptionalParams\n ): Promise<ManagementConfigurationsListBySubscriptionResponse> {\n return this.client.sendOperationRequest(\n { options },\n listBySubscriptionOperationSpec\n );\n }\n\n /**\n * Creates or updates the ManagementConfiguration.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param parameters The parameters required to create OMS Solution.\n * @param options The options parameters.\n */\n createOrUpdate(\n resourceGroupName: string,\n managementConfigurationName: string,\n parameters: ManagementConfiguration,\n options?: ManagementConfigurationsCreateOrUpdateOptionalParams\n ): Promise<ManagementConfigurationsCreateOrUpdateResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, parameters, options },\n createOrUpdateOperationSpec\n );\n }\n\n /**\n * Deletes the ManagementConfiguration in the subscription.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param options The options parameters.\n */\n delete(\n resourceGroupName: string,\n managementConfigurationName: string,\n options?: ManagementConfigurationsDeleteOptionalParams\n ): Promise<void> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, options },\n deleteOperationSpec\n );\n }\n\n /**\n * Retrieves the user ManagementConfiguration.\n * @param resourceGroupName The name of the resource group to get. The name is case insensitive.\n * @param managementConfigurationName User Management Configuration Name.\n * @param options The options parameters.\n */\n get(\n resourceGroupName: string,\n managementConfigurationName: string,\n options?: ManagementConfigurationsGetOptionalParams\n ): Promise<ManagementConfigurationsGetResponse> {\n return this.client.sendOperationRequest(\n { resourceGroupName, managementConfigurationName, options },\n getOperationSpec\n );\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listBySubscriptionOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfigurationPropertiesList\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host, Parameters.subscriptionId],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst createOrUpdateOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"PUT\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfiguration\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n requestBody: Parameters.parameters3,\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.contentType, Parameters.accept],\n mediaType: \"json\",\n serializer\n};\nconst deleteOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"DELETE\",\n responses: {\n 200: {},\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\nconst getOperationSpec: coreClient.OperationSpec = {\n path:\n \"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.ManagementConfiguration\n },\n default: {\n bodyMapper: Mappers.CodeMessageError\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [\n Parameters.$host,\n Parameters.subscriptionId,\n Parameters.resourceGroupName,\n Parameters.managementConfigurationName\n ],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport { PagedAsyncIterableIterator } from \"@azure/core-paging\";\nimport { Operations } from \"../operationsInterfaces\";\nimport * as coreClient from \"@azure/core-client\";\nimport * as Mappers from \"../models/mappers\";\nimport * as Parameters from \"../models/parameters\";\nimport { OperationsManagementClient } from \"../operationsManagementClient\";\nimport {\n Operation,\n OperationsListOptionalParams,\n OperationsListResponse\n} from \"../models\";\n\n/// <reference lib=\"esnext.asynciterable\" />\n/** Class containing Operations operations. */\nexport class OperationsImpl implements Operations {\n private readonly client: OperationsManagementClient;\n\n /**\n * Initialize a new instance of the class Operations class.\n * @param client Reference to the service client\n */\n constructor(client: OperationsManagementClient) {\n this.client = client;\n }\n\n /**\n * Lists all of the available OperationsManagement Rest API operations.\n * @param options The options parameters.\n */\n public list(\n options?: OperationsListOptionalParams\n ): PagedAsyncIterableIterator<Operation> {\n const iter = this.listPagingAll(options);\n return {\n next() {\n return iter.next();\n },\n [Symbol.asyncIterator]() {\n return this;\n },\n byPage: () => {\n return this.listPagingPage(options);\n }\n };\n }\n\n private async *listPagingPage(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation[]> {\n let result = await this._list(options);\n yield result.value || [];\n }\n\n private async *listPagingAll(\n options?: OperationsListOptionalParams\n ): AsyncIterableIterator<Operation> {\n for await (const page of this.listPagingPage(options)) {\n yield* page;\n }\n }\n\n /**\n * Lists all of the available OperationsManagement Rest API operations.\n * @param options The options parameters.\n */\n private _list(\n options?: OperationsListOptionalParams\n ): Promise<OperationsListResponse> {\n return this.client.sendOperationRequest({ options }, listOperationSpec);\n }\n}\n// Operation Specifications\nconst serializer = coreClient.createSerializer(Mappers, /* isXml */ false);\n\nconst listOperationSpec: coreClient.OperationSpec = {\n path: \"/providers/Microsoft.OperationsManagement/operations\",\n httpMethod: \"GET\",\n responses: {\n 200: {\n bodyMapper: Mappers.OperationListResult\n }\n },\n queryParameters: [Parameters.apiVersion],\n urlParameters: [Parameters.$host],\n headerParameters: [Parameters.accept],\n serializer\n};\n","/*\n * Copyright (c) Microsoft Corporation.\n * Licensed under the MIT License.\n *\n * Code generated by Microsoft (R) AutoRest Code Generator.\n * Changes may cause incorrect behavior and will be lost if the code is regenerated.\n */\n\nimport * as coreClient from \"@azure/core-client\";\nimport * as coreAuth from \"@azure/core-auth\";\nimport {\n SolutionsImpl,\n ManagementAssociationsImpl,\n ManagementConfigurationsImpl,\n OperationsImpl\n} from \"./operations\";\nimport {\n Solutions,\n ManagementAssociations,\n ManagementConfigurations,\n Operations\n} from \"./operationsInterfaces\";\nimport { OperationsManagementClientOptionalParams } from \"./models\";\n\nexport class OperationsManagementClient extends coreClient.ServiceClient {\n $host: string;\n subscriptionId: string;\n apiVersion: string;\n providerName: string;\n resourceType: string;\n resourceName: string;\n\n /**\n * Initializes a new instance of the OperationsManagementClient class.\n * @param credentials Subscription credentials which uniquely identify client subscription.\n * @param subscriptionId Gets subscription credentials which uniquely identify Microsoft Azure\n * subscription. The subscription ID forms part of the URI for every service call.\n * @param providerName Provider name for the parent resource.\n * @param resourceType Resource type for the parent resource\n * @param resourceName Parent resource name.\n * @param options The parameter options\n */\n constructor(\n credentials: coreAuth.TokenCredential,\n subscriptionId: string,\n providerName: string,\n resourceType: string,\n resourceName: string,\n options?: OperationsManagementClientOptionalParams\n ) {\n if (credentials === undefined) {\n throw new Error(\"'credentials' cannot be null\");\n }\n if (subscriptionId === undefined) {\n throw new Error(\"'subscriptionId' cannot be null\");\n }\n if (providerName === undefined) {\n throw new Error(\"'providerName' cannot be null\");\n }\n if (resourceType === undefined) {\n throw new Error(\"'resourceType' cannot be null\");\n }\n if (resourceName === undefined) {\n throw new Error(\"'resourceName' cannot be null\");\n }\n\n // Initializing default values for options\n if (!options) {\n options = {};\n }\n const defaults: OperationsManagementClientOptionalParams = {\n requestContentType: \"application/json; charset=utf-8\",\n credential: credentials\n };\n\n const packageDetails = `azsdk-js-arm-operations/4.0.0-beta.2`;\n const userAgentPrefix =\n options.userAgentOptions && options.userAgentOptions.userAgentPrefix\n ? `${options.userAgentOptions.userAgentPrefix} ${packageDetails}`\n : `${packageDetails}`;\n\n if (!options.credentialScopes) {\n options.credentialScopes = [\"https://management.azure.com/.default\"];\n }\n const optionsWithDefaults = {\n ...defaults,\n ...options,\n userAgentOptions: {\n userAgentPrefix\n },\n baseUri: options.endpoint || \"https://management.azure.com\"\n };\n super(optionsWithDefaults);\n // Parameter assignments\n this.subscriptionId = subscriptionId;\n this.providerName = providerName;\n this.resourceType = resourceType;\n this.resourceName = resourceName;\n\n // Assigning values to Constant parameters\n this.$host = options.$host || \"https://management.azure.com\";\n this.apiVersion = options.apiVersion || \"2015-11-01-preview\";\n this.solutions = new SolutionsImpl(this);\n this.managementAssociations = new ManagementAssociationsImpl(this);\n this.managementConfigurations = new ManagementConfigurationsImpl(this);\n this.operations = new OperationsImpl(this);\n }\n\n solutions: Solutions;\n managementAssociations: ManagementAssociations;\n managementConfigurations: ManagementConfigurations;\n operations: Operations;\n}\n"],"names":["SolutionMapper","SolutionPatchMapper","ManagementAssociationMapper","ManagementConfigurationMapper","createOrUpdateOperationSpec","LroEngine","deleteOperationSpec","getOperationSpec","listBySubscriptionOperationSpec","serializer","coreClient","Mappers.Solution","Mappers.CodeMessageError","Parameters.parameters","Parameters.apiVersion","Parameters.$host","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.solutionName","Parameters.contentType","Parameters.accept","Parameters.parameters1","Mappers.SolutionPropertiesList","Mappers.ManagementAssociationPropertiesList","Mappers.ManagementAssociation","Parameters.parameters2","Parameters.providerName","Parameters.resourceType","Parameters.resourceName","Parameters.managementAssociationName","Mappers.ManagementConfigurationPropertiesList","Mappers.ManagementConfiguration","Parameters.parameters3","Parameters.managementConfigurationName","__asyncValues","__asyncDelegator","Mappers.OperationListResult"],"mappings":"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"}
|
package/dist/index.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib"),coreLro=require("@azure/core-lro");const Solution={type:{name:"Composite",className:"Solution",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},plan:{serializedName:"plan",type:{name:"Composite",className:"SolutionPlan"}},properties:{serializedName:"properties",type:{name:"Composite",className:"SolutionProperties"}}}}},SolutionPlan={type:{name:"Composite",className:"SolutionPlan",modelProperties:{name:{serializedName:"name",type:{name:"String"}},publisher:{serializedName:"publisher",type:{name:"String"}},promotionCode:{serializedName:"promotionCode",type:{name:"String"}},product:{serializedName:"product",type:{name:"String"}}}}},SolutionProperties={type:{name:"Composite",className:"SolutionProperties",modelProperties:{workspaceResourceId:{serializedName:"workspaceResourceId",required:!0,type:{name:"String"}},provisioningState:{serializedName:"provisioningState",readOnly:!0,type:{name:"String"}},containedResources:{serializedName:"containedResources",type:{name:"Sequence",element:{type:{name:"String"}}}},referencedResources:{serializedName:"referencedResources",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},CodeMessageError={type:{name:"Composite",className:"CodeMessageError",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"CodeMessageErrorError"}}}}},CodeMessageErrorError={type:{name:"Composite",className:"CodeMessageErrorError",modelProperties:{code:{serializedName:"code",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}}}}},SolutionPatch={type:{name:"Composite",className:"SolutionPatch",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},SolutionPropertiesList={type:{name:"Composite",className:"SolutionPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Solution"}}}}}}},ManagementAssociationPropertiesList={type:{name:"Composite",className:"ManagementAssociationPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ManagementAssociation"}}}}}}},ManagementAssociation={type:{name:"Composite",className:"ManagementAssociation",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"ManagementAssociationProperties"}}}}},ManagementAssociationProperties={type:{name:"Composite",className:"ManagementAssociationProperties",modelProperties:{applicationId:{serializedName:"applicationId",required:!0,type:{name:"String"}}}}},ManagementConfigurationPropertiesList={type:{name:"Composite",className:"ManagementConfigurationPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ManagementConfiguration"}}}}}}},ManagementConfiguration={type:{name:"Composite",className:"ManagementConfiguration",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"ManagementConfigurationProperties"}}}}},ManagementConfigurationProperties={type:{name:"Composite",className:"ManagementConfigurationProperties",modelProperties:{applicationId:{serializedName:"applicationId",type:{name:"String"}},parentResourceType:{serializedName:"parentResourceType",required:!0,type:{name:"String"}},parameters:{serializedName:"parameters",required:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ArmTemplateParameter"}}}},provisioningState:{serializedName:"provisioningState",readOnly:!0,type:{name:"String"}},template:{serializedName:"template",required:!0,type:{name:"Dictionary",value:{type:{name:"any"}}}}}}},ArmTemplateParameter={type:{name:"Composite",className:"ArmTemplateParameter",modelProperties:{name:{serializedName:"name",type:{name:"String"}},value:{serializedName:"value",type:{name:"String"}}}}},OperationListResult={type:{name:"Composite",className:"OperationListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}}}}},OperationDisplay={type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}}}}};var Mappers=Object.freeze({__proto__:null,Solution:Solution,SolutionPlan:SolutionPlan,SolutionProperties:SolutionProperties,CodeMessageError:CodeMessageError,CodeMessageErrorError:CodeMessageErrorError,SolutionPatch:SolutionPatch,SolutionPropertiesList:SolutionPropertiesList,ManagementAssociationPropertiesList:ManagementAssociationPropertiesList,ManagementAssociation:ManagementAssociation,ManagementAssociationProperties:ManagementAssociationProperties,ManagementConfigurationPropertiesList:ManagementConfigurationPropertiesList,ManagementConfiguration:ManagementConfiguration,ManagementConfigurationProperties:ManagementConfigurationProperties,ArmTemplateParameter:ArmTemplateParameter,OperationListResult:OperationListResult,Operation:Operation,OperationDisplay:OperationDisplay});const contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},parameters={parameterPath:"parameters",mapper:Solution},accept={parameterPath:"accept",mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Accept",type:{name:"String"}}},$host={parameterPath:"$host",mapper:{serializedName:"$host",required:!0,type:{name:"String"}},skipEncoding:!0},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2015-11-01-preview",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},solutionName={parameterPath:"solutionName",mapper:{serializedName:"solutionName",required:!0,type:{name:"String"}}},parameters1={parameterPath:"parameters",mapper:SolutionPatch},parameters2={parameterPath:"parameters",mapper:ManagementAssociation},providerName={parameterPath:"providerName",mapper:{serializedName:"providerName",required:!0,type:{name:"String"}}},resourceType={parameterPath:"resourceType",mapper:{serializedName:"resourceType",required:!0,type:{name:"String"}}},resourceName={parameterPath:"resourceName",mapper:{serializedName:"resourceName",required:!0,type:{name:"String"}}},managementAssociationName={parameterPath:"managementAssociationName",mapper:{serializedName:"managementAssociationName",required:!0,type:{name:"String"}}},parameters3={parameterPath:"parameters",mapper:ManagementConfiguration},managementConfigurationName={parameterPath:"managementConfigurationName",mapper:{serializedName:"managementConfigurationName",required:!0,type:{name:"String"}}};class LroImpl{constructor(e,r,t,a=t.path,i=t.httpMethod){this.sendOperationFn=e,this.args=r,this.spec=t,this.requestPath=a,this.requestMethod=i}sendInitialRequest(){return tslib.__awaiter(this,void 0,void 0,function*(){return this.sendOperationFn(this.args,this.spec)})}sendPollRequest(r){return tslib.__awaiter(this,void 0,void 0,function*(){var e=this.spec,e=tslib.__rest(e,["requestBody"]);return this.sendOperationFn(this.args,Object.assign(Object.assign({},e),{path:r,httpMethod:"GET"}))})}}class SolutionsImpl{constructor(e){this.client=e}beginCreateOrUpdate(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,parameters:a,options:i},createOrUpdateOperationSpec);return new coreLro.LroEngine(e,{resumeFrom:null==i?void 0:i.resumeFrom,intervalInMs:null==i?void 0:i.updateIntervalInMs})})}beginCreateOrUpdateAndWait(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginCreateOrUpdate(r,t,a,i);return e.pollUntilDone()})}beginUpdate(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,parameters:a,options:i},updateOperationSpec);return new coreLro.LroEngine(e,{resumeFrom:null==i?void 0:i.resumeFrom,intervalInMs:null==i?void 0:i.updateIntervalInMs})})}beginUpdateAndWait(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginUpdate(r,t,a,i);return e.pollUntilDone()})}beginDelete(r,t,a){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,options:a},deleteOperationSpec);return new coreLro.LroEngine(e,{resumeFrom:null==a?void 0:a.resumeFrom,intervalInMs:null==a?void 0:a.updateIntervalInMs})})}beginDeleteAndWait(r,t,a){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginDelete(r,t,a);return e.pollUntilDone()})}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,solutionName:r,options:t},getOperationSpec)}listByResourceGroup(e,r){return this.client.sendOperationRequest({resourceGroupName:e,options:r},listByResourceGroupOperationSpec)}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}}const serializer=coreClient.createSerializer(Mappers,!1),createOrUpdateOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"PUT",responses:{200:{bodyMapper:Solution},201:{bodyMapper:Solution},202:{bodyMapper:Solution},204:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},requestBody:parameters,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"PATCH",responses:{200:{bodyMapper:Solution},201:{bodyMapper:Solution},202:{bodyMapper:Solution},204:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},requestBody:parameters1,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"DELETE",responses:{200:{},201:{},202:{},204:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[accept],serializer:serializer},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"GET",responses:{200:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[accept],serializer:serializer},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions",httpMethod:"GET",responses:{200:{bodyMapper:SolutionPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer},listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions",httpMethod:"GET",responses:{200:{bodyMapper:SolutionPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer};class ManagementAssociationsImpl{constructor(e){this.client=e}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$1)}createOrUpdate(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,parameters:t,options:a},createOrUpdateOperationSpec$1)}delete(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,options:t},deleteOperationSpec$1)}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,options:t},getOperationSpec$1)}}const serializer$1=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec$1={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations",httpMethod:"GET",responses:{200:{bodyMapper:ManagementAssociationPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$1},createOrUpdateOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"PUT",responses:{200:{bodyMapper:ManagementAssociation},default:{bodyMapper:CodeMessageError}},requestBody:parameters2,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$1},deleteOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"DELETE",responses:{200:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[accept],serializer:serializer$1},getOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"GET",responses:{200:{bodyMapper:ManagementAssociation},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[accept],serializer:serializer$1};class ManagementConfigurationsImpl{constructor(e){this.client=e}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$2)}createOrUpdate(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,parameters:t,options:a},createOrUpdateOperationSpec$2)}delete(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,options:t},deleteOperationSpec$2)}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,options:t},getOperationSpec$2)}}const serializer$2=coreClient.createSerializer(Mappers,!1),listBySubscriptionOperationSpec$2={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations",httpMethod:"GET",responses:{200:{bodyMapper:ManagementConfigurationPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$2},createOrUpdateOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"PUT",responses:{200:{bodyMapper:ManagementConfiguration},default:{bodyMapper:CodeMessageError}},requestBody:parameters3,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$2},deleteOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"DELETE",responses:{200:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[accept],serializer:serializer$2},getOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"GET",responses:{200:{bodyMapper:ManagementConfiguration},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[accept],serializer:serializer$2};class OperationsImpl{constructor(e){this.client=e}list(e){const r=this.listPagingAll(e);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(r));yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,a=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(a.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(r)throw r.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}}const serializer$3=coreClient.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.OperationsManagement/operations",httpMethod:"GET",responses:{200:{bodyMapper:OperationListResult}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer$3};class OperationsManagementClient extends coreClient.ServiceClient{constructor(e,r,t,a,i,s){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===r)throw new Error("'subscriptionId' cannot be null");if(void 0===t)throw new Error("'providerName' cannot be null");if(void 0===a)throw new Error("'resourceType' cannot be null");if(void 0===i)throw new Error("'resourceName' cannot be null");var o={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-operations/4.0.0-beta.2",e=(s=s||{}).userAgentOptions&&s.userAgentOptions.userAgentPrefix?s.userAgentOptions.userAgentPrefix+" "+e:e;s.credentialScopes||(s.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},o),s),{userAgentOptions:{userAgentPrefix:e},baseUri:s.endpoint||"https://management.azure.com"})),this.subscriptionId=r,this.providerName=t,this.resourceType=a,this.resourceName=i,this.$host=s.$host||"https://management.azure.com",this.apiVersion=s.apiVersion||"2015-11-01-preview",this.solutions=new SolutionsImpl(this),this.managementAssociations=new ManagementAssociationsImpl(this),this.managementConfigurations=new ManagementConfigurationsImpl(this),this.operations=new OperationsImpl(this)}}exports.OperationsManagementClient=OperationsManagementClient;
|
|
1
|
+
"use strict";Object.defineProperty(exports,"__esModule",{value:!0});var coreClient=require("@azure/core-client"),tslib=require("tslib"),coreLro=require("@azure/core-lro");function _interopNamespace(t){if(t&&t.__esModule)return t;var a=Object.create(null);return t&&Object.keys(t).forEach(function(e){var r;"default"!==e&&(r=Object.getOwnPropertyDescriptor(t,e),Object.defineProperty(a,e,r.get?r:{enumerable:!0,get:function(){return t[e]}}))}),a.default=t,Object.freeze(a)}var coreClient__namespace=_interopNamespace(coreClient);const Solution={type:{name:"Composite",className:"Solution",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}},plan:{serializedName:"plan",type:{name:"Composite",className:"SolutionPlan"}},properties:{serializedName:"properties",type:{name:"Composite",className:"SolutionProperties"}}}}},SolutionPlan={type:{name:"Composite",className:"SolutionPlan",modelProperties:{name:{serializedName:"name",type:{name:"String"}},publisher:{serializedName:"publisher",type:{name:"String"}},promotionCode:{serializedName:"promotionCode",type:{name:"String"}},product:{serializedName:"product",type:{name:"String"}}}}},SolutionProperties={type:{name:"Composite",className:"SolutionProperties",modelProperties:{workspaceResourceId:{serializedName:"workspaceResourceId",required:!0,type:{name:"String"}},provisioningState:{serializedName:"provisioningState",readOnly:!0,type:{name:"String"}},containedResources:{serializedName:"containedResources",type:{name:"Sequence",element:{type:{name:"String"}}}},referencedResources:{serializedName:"referencedResources",type:{name:"Sequence",element:{type:{name:"String"}}}}}}},CodeMessageError={type:{name:"Composite",className:"CodeMessageError",modelProperties:{error:{serializedName:"error",type:{name:"Composite",className:"CodeMessageErrorError"}}}}},CodeMessageErrorError={type:{name:"Composite",className:"CodeMessageErrorError",modelProperties:{code:{serializedName:"code",type:{name:"String"}},message:{serializedName:"message",type:{name:"String"}}}}},SolutionPatch={type:{name:"Composite",className:"SolutionPatch",modelProperties:{tags:{serializedName:"tags",type:{name:"Dictionary",value:{type:{name:"String"}}}}}}},SolutionPropertiesList={type:{name:"Composite",className:"SolutionPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Solution"}}}}}}},ManagementAssociationPropertiesList={type:{name:"Composite",className:"ManagementAssociationPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ManagementAssociation"}}}}}}},ManagementAssociation={type:{name:"Composite",className:"ManagementAssociation",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"ManagementAssociationProperties"}}}}},ManagementAssociationProperties={type:{name:"Composite",className:"ManagementAssociationProperties",modelProperties:{applicationId:{serializedName:"applicationId",required:!0,type:{name:"String"}}}}},ManagementConfigurationPropertiesList={type:{name:"Composite",className:"ManagementConfigurationPropertiesList",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"ManagementConfiguration"}}}}}}},ManagementConfiguration={type:{name:"Composite",className:"ManagementConfiguration",modelProperties:{id:{serializedName:"id",readOnly:!0,type:{name:"String"}},name:{serializedName:"name",readOnly:!0,type:{name:"String"}},type:{serializedName:"type",readOnly:!0,type:{name:"String"}},location:{serializedName:"location",type:{name:"String"}},properties:{serializedName:"properties",type:{name:"Composite",className:"ManagementConfigurationProperties"}}}}},ManagementConfigurationProperties={type:{name:"Composite",className:"ManagementConfigurationProperties",modelProperties:{applicationId:{serializedName:"applicationId",type:{name:"String"}},parentResourceType:{serializedName:"parentResourceType",required:!0,type:{name:"String"}},parameters:{serializedName:"parameters",required:!0,type:{name:"Sequence",element:{type:{name:"Composite",className:"ArmTemplateParameter"}}}},provisioningState:{serializedName:"provisioningState",readOnly:!0,type:{name:"String"}},template:{serializedName:"template",required:!0,type:{name:"Dictionary",value:{type:{name:"any"}}}}}}},ArmTemplateParameter={type:{name:"Composite",className:"ArmTemplateParameter",modelProperties:{name:{serializedName:"name",type:{name:"String"}},value:{serializedName:"value",type:{name:"String"}}}}},OperationListResult={type:{name:"Composite",className:"OperationListResult",modelProperties:{value:{serializedName:"value",type:{name:"Sequence",element:{type:{name:"Composite",className:"Operation"}}}}}}},Operation={type:{name:"Composite",className:"Operation",modelProperties:{name:{serializedName:"name",type:{name:"String"}},display:{serializedName:"display",type:{name:"Composite",className:"OperationDisplay"}}}}},OperationDisplay={type:{name:"Composite",className:"OperationDisplay",modelProperties:{provider:{serializedName:"provider",type:{name:"String"}},resource:{serializedName:"resource",type:{name:"String"}},operation:{serializedName:"operation",type:{name:"String"}}}}};var Mappers=Object.freeze({__proto__:null,Solution:Solution,SolutionPlan:SolutionPlan,SolutionProperties:SolutionProperties,CodeMessageError:CodeMessageError,CodeMessageErrorError:CodeMessageErrorError,SolutionPatch:SolutionPatch,SolutionPropertiesList:SolutionPropertiesList,ManagementAssociationPropertiesList:ManagementAssociationPropertiesList,ManagementAssociation:ManagementAssociation,ManagementAssociationProperties:ManagementAssociationProperties,ManagementConfigurationPropertiesList:ManagementConfigurationPropertiesList,ManagementConfiguration:ManagementConfiguration,ManagementConfigurationProperties:ManagementConfigurationProperties,ArmTemplateParameter:ArmTemplateParameter,OperationListResult:OperationListResult,Operation:Operation,OperationDisplay:OperationDisplay});const contentType={parameterPath:["options","contentType"],mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Content-Type",type:{name:"String"}}},parameters={parameterPath:"parameters",mapper:Solution},accept={parameterPath:"accept",mapper:{defaultValue:"application/json",isConstant:!0,serializedName:"Accept",type:{name:"String"}}},$host={parameterPath:"$host",mapper:{serializedName:"$host",required:!0,type:{name:"String"}},skipEncoding:!0},subscriptionId={parameterPath:"subscriptionId",mapper:{serializedName:"subscriptionId",required:!0,type:{name:"String"}}},resourceGroupName={parameterPath:"resourceGroupName",mapper:{constraints:{Pattern:new RegExp("^[-\\w\\._\\(\\)]+$"),MaxLength:90,MinLength:1},serializedName:"resourceGroupName",required:!0,type:{name:"String"}}},apiVersion={parameterPath:"apiVersion",mapper:{defaultValue:"2015-11-01-preview",isConstant:!0,serializedName:"api-version",type:{name:"String"}}},solutionName={parameterPath:"solutionName",mapper:{serializedName:"solutionName",required:!0,type:{name:"String"}}},parameters1={parameterPath:"parameters",mapper:SolutionPatch},parameters2={parameterPath:"parameters",mapper:ManagementAssociation},providerName={parameterPath:"providerName",mapper:{serializedName:"providerName",required:!0,type:{name:"String"}}},resourceType={parameterPath:"resourceType",mapper:{serializedName:"resourceType",required:!0,type:{name:"String"}}},resourceName={parameterPath:"resourceName",mapper:{serializedName:"resourceName",required:!0,type:{name:"String"}}},managementAssociationName={parameterPath:"managementAssociationName",mapper:{serializedName:"managementAssociationName",required:!0,type:{name:"String"}}},parameters3={parameterPath:"parameters",mapper:ManagementConfiguration},managementConfigurationName={parameterPath:"managementConfigurationName",mapper:{serializedName:"managementConfigurationName",required:!0,type:{name:"String"}}};class LroImpl{constructor(e,r,t,a=t.path,i=t.httpMethod){this.sendOperationFn=e,this.args=r,this.spec=t,this.requestPath=a,this.requestMethod=i}sendInitialRequest(){return tslib.__awaiter(this,void 0,void 0,function*(){return this.sendOperationFn(this.args,this.spec)})}sendPollRequest(r){return tslib.__awaiter(this,void 0,void 0,function*(){var e=this.spec,e=tslib.__rest(e,["requestBody"]);return this.sendOperationFn(this.args,Object.assign(Object.assign({},e),{path:r,httpMethod:"GET"}))})}}class SolutionsImpl{constructor(e){this.client=e}beginCreateOrUpdate(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,parameters:a,options:i},createOrUpdateOperationSpec$2);return new coreLro.LroEngine(e,{resumeFrom:null==i?void 0:i.resumeFrom,intervalInMs:null==i?void 0:i.updateIntervalInMs})})}beginCreateOrUpdateAndWait(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginCreateOrUpdate(r,t,a,i);return e.pollUntilDone()})}beginUpdate(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,parameters:a,options:i},updateOperationSpec);return new coreLro.LroEngine(e,{resumeFrom:null==i?void 0:i.resumeFrom,intervalInMs:null==i?void 0:i.updateIntervalInMs})})}beginUpdateAndWait(r,t,a,i){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginUpdate(r,t,a,i);return e.pollUntilDone()})}beginDelete(r,t,a){return tslib.__awaiter(this,void 0,void 0,function*(){const s=(e,r)=>tslib.__awaiter(this,void 0,void 0,function*(){return this.client.sendOperationRequest(e,r)});var e=new LroImpl((r,i)=>tslib.__awaiter(this,void 0,void 0,function*(){let t=void 0;const a=null===(e=r.options)||void 0===e?void 0:e.onResponse;var e=Object.assign(Object.assign({},r),{options:Object.assign(Object.assign({},r.options),{onResponse:(e,r)=>{t=e,null!==a&&void 0!==a&&a(e,r)}})});return{flatResponse:yield s(e,i),rawResponse:{statusCode:t.status,body:t.parsedBody,headers:t.headers.toJSON()}}}),{resourceGroupName:r,solutionName:t,options:a},deleteOperationSpec$2);return new coreLro.LroEngine(e,{resumeFrom:null==a?void 0:a.resumeFrom,intervalInMs:null==a?void 0:a.updateIntervalInMs})})}beginDeleteAndWait(r,t,a){return tslib.__awaiter(this,void 0,void 0,function*(){const e=yield this.beginDelete(r,t,a);return e.pollUntilDone()})}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,solutionName:r,options:t},getOperationSpec$2)}listByResourceGroup(e,r){return this.client.sendOperationRequest({resourceGroupName:e,options:r},listByResourceGroupOperationSpec)}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$2)}}const serializer$3=coreClient__namespace.createSerializer(Mappers,!1),createOrUpdateOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"PUT",responses:{200:{bodyMapper:Solution},201:{bodyMapper:Solution},202:{bodyMapper:Solution},204:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},requestBody:parameters,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$3},updateOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"PATCH",responses:{200:{bodyMapper:Solution},201:{bodyMapper:Solution},202:{bodyMapper:Solution},204:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},requestBody:parameters1,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$3},deleteOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"DELETE",responses:{200:{},201:{},202:{},204:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[accept],serializer:serializer$3},getOperationSpec$2={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions/{solutionName}",httpMethod:"GET",responses:{200:{bodyMapper:Solution},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,solutionName],headerParameters:[accept],serializer:serializer$3},listByResourceGroupOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/solutions",httpMethod:"GET",responses:{200:{bodyMapper:SolutionPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName],headerParameters:[accept],serializer:serializer$3},listBySubscriptionOperationSpec$2={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/solutions",httpMethod:"GET",responses:{200:{bodyMapper:SolutionPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$3};class ManagementAssociationsImpl{constructor(e){this.client=e}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec$1)}createOrUpdate(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,parameters:t,options:a},createOrUpdateOperationSpec$1)}delete(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,options:t},deleteOperationSpec$1)}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementAssociationName:r,options:t},getOperationSpec$1)}}const serializer$2=coreClient__namespace.createSerializer(Mappers,!1),listBySubscriptionOperationSpec$1={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementAssociations",httpMethod:"GET",responses:{200:{bodyMapper:ManagementAssociationPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$2},createOrUpdateOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"PUT",responses:{200:{bodyMapper:ManagementAssociation},default:{bodyMapper:CodeMessageError}},requestBody:parameters2,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$2},deleteOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"DELETE",responses:{200:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[accept],serializer:serializer$2},getOperationSpec$1={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/{providerName}/{resourceType}/{resourceName}/providers/Microsoft.OperationsManagement/ManagementAssociations/{managementAssociationName}",httpMethod:"GET",responses:{200:{bodyMapper:ManagementAssociation},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,providerName,resourceType,resourceName,managementAssociationName],headerParameters:[accept],serializer:serializer$2};class ManagementConfigurationsImpl{constructor(e){this.client=e}listBySubscription(e){return this.client.sendOperationRequest({options:e},listBySubscriptionOperationSpec)}createOrUpdate(e,r,t,a){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,parameters:t,options:a},createOrUpdateOperationSpec)}delete(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,options:t},deleteOperationSpec)}get(e,r,t){return this.client.sendOperationRequest({resourceGroupName:e,managementConfigurationName:r,options:t},getOperationSpec)}}const serializer$1=coreClient__namespace.createSerializer(Mappers,!1),listBySubscriptionOperationSpec={path:"/subscriptions/{subscriptionId}/providers/Microsoft.OperationsManagement/ManagementConfigurations",httpMethod:"GET",responses:{200:{bodyMapper:ManagementConfigurationPropertiesList},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId],headerParameters:[accept],serializer:serializer$1},createOrUpdateOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"PUT",responses:{200:{bodyMapper:ManagementConfiguration},default:{bodyMapper:CodeMessageError}},requestBody:parameters3,queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[contentType,accept],mediaType:"json",serializer:serializer$1},deleteOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"DELETE",responses:{200:{},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[accept],serializer:serializer$1},getOperationSpec={path:"/subscriptions/{subscriptionId}/resourcegroups/{resourceGroupName}/providers/Microsoft.OperationsManagement/ManagementConfigurations/{managementConfigurationName}",httpMethod:"GET",responses:{200:{bodyMapper:ManagementConfiguration},default:{bodyMapper:CodeMessageError}},queryParameters:[apiVersion],urlParameters:[$host,subscriptionId,resourceGroupName,managementConfigurationName],headerParameters:[accept],serializer:serializer$1};class OperationsImpl{constructor(e){this.client=e}list(e){const r=this.listPagingAll(e);return{next(){return r.next()},[Symbol.asyncIterator](){return this},byPage:()=>this.listPagingPage(e)}}listPagingPage(r){return tslib.__asyncGenerator(this,arguments,function*(){var e=yield tslib.__await(this._list(r));yield yield tslib.__await(e.value||[])})}listPagingAll(s){return tslib.__asyncGenerator(this,arguments,function*(){var r,e;try{for(var t,a=tslib.__asyncValues(this.listPagingPage(s));!(t=yield tslib.__await(a.next())).done;){var i=t.value;yield tslib.__await(yield*tslib.__asyncDelegator(tslib.__asyncValues(i)))}}catch(e){r={error:e}}finally{try{t&&!t.done&&(e=a.return)&&(yield tslib.__await(e.call(a)))}finally{if(r)throw r.error}}})}_list(e){return this.client.sendOperationRequest({options:e},listOperationSpec)}}const serializer=coreClient__namespace.createSerializer(Mappers,!1),listOperationSpec={path:"/providers/Microsoft.OperationsManagement/operations",httpMethod:"GET",responses:{200:{bodyMapper:OperationListResult}},queryParameters:[apiVersion],urlParameters:[$host],headerParameters:[accept],serializer:serializer};class OperationsManagementClient extends coreClient__namespace.ServiceClient{constructor(e,r,t,a,i,s){if(void 0===e)throw new Error("'credentials' cannot be null");if(void 0===r)throw new Error("'subscriptionId' cannot be null");if(void 0===t)throw new Error("'providerName' cannot be null");if(void 0===a)throw new Error("'resourceType' cannot be null");if(void 0===i)throw new Error("'resourceName' cannot be null");var o={requestContentType:"application/json; charset=utf-8",credential:e},e="azsdk-js-arm-operations/4.0.0-beta.2",e=(s=s||{}).userAgentOptions&&s.userAgentOptions.userAgentPrefix?s.userAgentOptions.userAgentPrefix+" "+e:e;s.credentialScopes||(s.credentialScopes=["https://management.azure.com/.default"]),super(Object.assign(Object.assign(Object.assign({},o),s),{userAgentOptions:{userAgentPrefix:e},baseUri:s.endpoint||"https://management.azure.com"})),this.subscriptionId=r,this.providerName=t,this.resourceType=a,this.resourceName=i,this.$host=s.$host||"https://management.azure.com",this.apiVersion=s.apiVersion||"2015-11-01-preview",this.solutions=new SolutionsImpl(this),this.managementAssociations=new ManagementAssociationsImpl(this),this.managementConfigurations=new ManagementConfigurationsImpl(this),this.operations=new OperationsImpl(this)}}exports.OperationsManagementClient=OperationsManagementClient;
|
package/dist/index.min.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/solutions.ts","../src/operations/managementAssociations.ts","../src/operations/managementConfigurations.ts","../src/operations/operations.ts","../src/operationsManagementClient.ts"],"names":["Solution","type","name","className","modelProperties","id","serializedName","readOnly","location","tags","value","plan","properties","SolutionPlan","publisher","promotionCode","product","SolutionProperties","workspaceResourceId","required","provisioningState","containedResources","element","referencedResources","CodeMessageError","error","CodeMessageErrorError","code","message","SolutionPatch","SolutionPropertiesList","ManagementAssociationPropertiesList","ManagementAssociation","ManagementAssociationProperties","applicationId","ManagementConfigurationPropertiesList","ManagementConfiguration","ManagementConfigurationProperties","parentResourceType","parameters","template","ArmTemplateParameter","OperationListResult","Operation","display","OperationDisplay","provider","resource","operation","contentType","parameterPath","mapper","defaultValue","isConstant","SolutionMapper","accept","$host","skipEncoding","subscriptionId","resourceGroupName","constraints","Pattern","RegExp","MaxLength","MinLength","apiVersion","solutionName","parameters1","SolutionPatchMapper","parameters2","ManagementAssociationMapper","providerName","resourceType","resourceName","managementAssociationName","parameters3","ManagementConfigurationMapper","managementConfigurationName","LroImpl","constructor","sendOperationFn","args","spec","requestPath","path","requestMethod","httpMethod","this","sendInitialRequest","sendPollRequest","_a","restSpec","tslib","__rest","Object","assign","SolutionsImpl","client","beginCreateOrUpdate","options","directSendOperation","__awaiter","sendOperationRequest","lro","let","currentRawResponse","undefined","providedCallback","onResponse","updatedArgs","rawResponse","flatResponse","statusCode","status","body","parsedBody","headers","toJSON","createOrUpdateOperationSpec","LroEngine","resumeFrom","intervalInMs","updateIntervalInMs","beginCreateOrUpdateAndWait","poller","pollUntilDone","beginUpdate","updateOperationSpec","beginUpdateAndWait","beginDelete","deleteOperationSpec","beginDeleteAndWait","get","getOperationSpec","listByResourceGroup","listByResourceGroupOperationSpec","listBySubscription","listBySubscriptionOperationSpec","serializer","coreClient.createSerializer","Mappers","responses","200","bodyMapper","Mappers.Solution","201","202","204","default","Mappers.CodeMessageError","requestBody","Parameters.parameters","queryParameters","Parameters.apiVersion","urlParameters","Parameters.$host","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.solutionName","headerParameters","Parameters.contentType","Parameters.accept","mediaType","Parameters.parameters1","Mappers.SolutionPropertiesList","ManagementAssociationsImpl","createOrUpdate","delete","Mappers.ManagementAssociationPropertiesList","Mappers.ManagementAssociation","Parameters.parameters2","Parameters.providerName","Parameters.resourceType","Parameters.resourceName","Parameters.managementAssociationName","ManagementConfigurationsImpl","Mappers.ManagementConfigurationPropertiesList","Mappers.ManagementConfiguration","Parameters.parameters3","Parameters.managementConfigurationName","OperationsImpl","list","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","result","__await","_list","_c","_b","__asyncValues","done","page","__asyncDelegator","listOperationSpec","Mappers.OperationListResult","OperationsManagementClient","coreClient.ServiceClient","credentials","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","credentialScopes","super","baseUri","endpoint","solutions","managementAssociations","managementConfigurations","operations"],"mappings":"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"}
|
|
1
|
+
{"version":3,"sources":["../src/models/mappers.ts","../src/models/parameters.ts","../src/lroImpl.ts","../src/operations/solutions.ts","../src/operations/managementAssociations.ts","../src/operations/managementConfigurations.ts","../src/operations/operations.ts","../src/operationsManagementClient.ts"],"names":["Solution","type","name","className","modelProperties","id","serializedName","readOnly","location","tags","value","plan","properties","SolutionPlan","publisher","promotionCode","product","SolutionProperties","workspaceResourceId","required","provisioningState","containedResources","element","referencedResources","CodeMessageError","error","CodeMessageErrorError","code","message","SolutionPatch","SolutionPropertiesList","ManagementAssociationPropertiesList","ManagementAssociation","ManagementAssociationProperties","applicationId","ManagementConfigurationPropertiesList","ManagementConfiguration","ManagementConfigurationProperties","parentResourceType","parameters","template","ArmTemplateParameter","OperationListResult","Operation","display","OperationDisplay","provider","resource","operation","contentType","parameterPath","mapper","defaultValue","isConstant","SolutionMapper","accept","$host","skipEncoding","subscriptionId","resourceGroupName","constraints","Pattern","RegExp","MaxLength","MinLength","apiVersion","solutionName","parameters1","SolutionPatchMapper","parameters2","ManagementAssociationMapper","providerName","resourceType","resourceName","managementAssociationName","parameters3","ManagementConfigurationMapper","managementConfigurationName","LroImpl","constructor","sendOperationFn","args","spec","requestPath","path","requestMethod","httpMethod","this","sendInitialRequest","sendPollRequest","_a","restSpec","tslib","__rest","Object","assign","SolutionsImpl","client","beginCreateOrUpdate","options","directSendOperation","__awaiter","sendOperationRequest","lro","let","currentRawResponse","undefined","providedCallback","onResponse","updatedArgs","rawResponse","flatResponse","statusCode","status","body","parsedBody","headers","toJSON","createOrUpdateOperationSpec","LroEngine","resumeFrom","intervalInMs","updateIntervalInMs","beginCreateOrUpdateAndWait","poller","pollUntilDone","beginUpdate","updateOperationSpec","beginUpdateAndWait","beginDelete","deleteOperationSpec","beginDeleteAndWait","get","getOperationSpec","listByResourceGroup","listByResourceGroupOperationSpec","listBySubscription","listBySubscriptionOperationSpec","serializer","coreClient","createSerializer","Mappers","responses","200","bodyMapper","Mappers.Solution","201","202","204","default","Mappers.CodeMessageError","requestBody","Parameters.parameters","queryParameters","Parameters.apiVersion","urlParameters","Parameters.$host","Parameters.subscriptionId","Parameters.resourceGroupName","Parameters.solutionName","headerParameters","Parameters.contentType","Parameters.accept","mediaType","Parameters.parameters1","Mappers.SolutionPropertiesList","ManagementAssociationsImpl","createOrUpdate","delete","Mappers.ManagementAssociationPropertiesList","Mappers.ManagementAssociation","Parameters.parameters2","Parameters.providerName","Parameters.resourceType","Parameters.resourceName","Parameters.managementAssociationName","ManagementConfigurationsImpl","Mappers.ManagementConfigurationPropertiesList","Mappers.ManagementConfiguration","Parameters.parameters3","Parameters.managementConfigurationName","OperationsImpl","list","iter","listPagingAll","next","Symbol","asyncIterator","byPage","listPagingPage","result","__await","_list","_c","_b","__asyncValues","done","page","__asyncDelegator","listOperationSpec","Mappers.OperationListResult","OperationsManagementClient","ServiceClient","credentials","Error","defaults","requestContentType","credential","packageDetails","userAgentPrefix","userAgentOptions","credentialScopes","super","baseUri","endpoint","solutions","managementAssociations","managementConfigurations","operations"],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
"sdk-type": "mgmt",
|
|
4
4
|
"author": "Microsoft Corporation",
|
|
5
5
|
"description": "A generated SDK for OperationsManagementClient.",
|
|
6
|
-
"version": "4.0.0-alpha.
|
|
6
|
+
"version": "4.0.0-alpha.20220128.2",
|
|
7
7
|
"engines": {
|
|
8
8
|
"node": ">=12.0.0"
|
|
9
9
|
},
|
|
@@ -29,12 +29,12 @@
|
|
|
29
29
|
"types": "./types/arm-operations.d.ts",
|
|
30
30
|
"devDependencies": {
|
|
31
31
|
"@microsoft/api-extractor": "^7.18.11",
|
|
32
|
-
"@rollup/plugin-commonjs": "
|
|
32
|
+
"@rollup/plugin-commonjs": "^21.0.1",
|
|
33
33
|
"@rollup/plugin-json": "^4.0.0",
|
|
34
34
|
"@rollup/plugin-multi-entry": "^3.0.0",
|
|
35
35
|
"@rollup/plugin-node-resolve": "^8.0.0",
|
|
36
36
|
"mkdirp": "^1.0.4",
|
|
37
|
-
"rollup": "^
|
|
37
|
+
"rollup": "^2.0.0",
|
|
38
38
|
"rollup-plugin-sourcemaps": "^0.4.2",
|
|
39
39
|
"typescript": "~4.2.0",
|
|
40
40
|
"uglify-js": "^3.4.9",
|