@azure/arm-azurestackhci 1.1.0 → 2.0.1-alpha.20220114.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -80
- package/dist/index.js +2369 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/azureStackHCIClient.d.ts +21 -0
- package/dist-esm/src/azureStackHCIClient.d.ts.map +1 -0
- package/dist-esm/src/azureStackHCIClient.js +54 -0
- package/dist-esm/src/azureStackHCIClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +864 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +135 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +881 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +16 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +137 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/arcSettings.d.ts +72 -0
- package/dist-esm/src/operations/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operations/arcSettings.js +281 -0
- package/dist-esm/src/operations/arcSettings.js.map +1 -0
- package/dist-esm/src/operations/clusters.d.ts +83 -0
- package/dist-esm/src/operations/clusters.d.ts.map +1 -0
- package/dist-esm/src/operations/clusters.js +356 -0
- package/dist-esm/src/operations/clusters.js.map +1 -0
- package/dist-esm/src/operations/extensions.d.ts +109 -0
- package/dist-esm/src/operations/extensions.d.ts.map +1 -0
- package/dist-esm/src/operations/extensions.js +462 -0
- package/dist-esm/src/operations/extensions.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +18 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +46 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js +9 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.js +9 -0
- package/dist-esm/src/operationsInterfaces/clusters.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts +82 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.js +9 -0
- package/dist-esm/src/operationsInterfaces/extensions.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +10 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -22
- package/review/arm-azurestackhci.api.md +650 -0
- package/rollup.config.js +181 -30
- package/src/azureStackHCIClient.ts +78 -37
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +775 -366
- package/src/models/mappers.ts +635 -239
- package/src/models/parameters.ts +112 -35
- package/src/operations/arcSettings.ts +394 -0
- package/src/operations/clusters.ts +279 -309
- package/src/operations/extensions.ts +672 -0
- package/src/operations/index.ts +6 -6
- package/src/operations/operations.ts +30 -45
- package/src/operationsInterfaces/arcSettings.ts +89 -0
- package/src/operationsInterfaces/clusters.ts +91 -0
- package/src/operationsInterfaces/extensions.ts +162 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/operations.ts +21 -0
- package/tsconfig.json +3 -3
- package/types/arm-azurestackhci.d.ts +1146 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-azurestackhci.js +0 -1151
- package/dist/arm-azurestackhci.js.map +0 -1
- package/dist/arm-azurestackhci.min.js +0 -1
- package/dist/arm-azurestackhci.min.js.map +0 -1
- package/esm/azureStackHCIClient.d.ts +0 -25
- package/esm/azureStackHCIClient.d.ts.map +0 -1
- package/esm/azureStackHCIClient.js +0 -39
- package/esm/azureStackHCIClient.js.map +0 -1
- package/esm/azureStackHCIClientContext.d.ts +0 -22
- package/esm/azureStackHCIClientContext.d.ts.map +0 -1
- package/esm/azureStackHCIClientContext.js +0 -61
- package/esm/azureStackHCIClientContext.js.map +0 -1
- package/esm/models/clustersMappers.d.ts +0 -2
- package/esm/models/clustersMappers.d.ts.map +0 -1
- package/esm/models/clustersMappers.js +0 -9
- package/esm/models/clustersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -509
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -19
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -527
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -9
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -82
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/clusters.d.ts +0 -169
- package/esm/operations/clusters.d.ts.map +0 -1
- package/esm/operations/clusters.js +0 -273
- package/esm/operations/clusters.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/src/azureStackHCIClientContext.ts +0 -68
- package/src/models/clustersMappers.ts +0 -23
- package/src/models/operationsMappers.ts +0 -16
|
@@ -0,0 +1,462 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*
|
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
*/
|
|
8
|
+
import { __asyncDelegator, __asyncGenerator, __asyncValues, __await, __awaiter } from "tslib";
|
|
9
|
+
import * as coreClient from "@azure/core-client";
|
|
10
|
+
import * as Mappers from "../models/mappers";
|
|
11
|
+
import * as Parameters from "../models/parameters";
|
|
12
|
+
import { LroEngine } from "@azure/core-lro";
|
|
13
|
+
import { LroImpl } from "../lroImpl";
|
|
14
|
+
/// <reference lib="esnext.asynciterable" />
|
|
15
|
+
/** Class containing Extensions operations. */
|
|
16
|
+
export class ExtensionsImpl {
|
|
17
|
+
/**
|
|
18
|
+
* Initialize a new instance of the class Extensions class.
|
|
19
|
+
* @param client Reference to the service client
|
|
20
|
+
*/
|
|
21
|
+
constructor(client) {
|
|
22
|
+
this.client = client;
|
|
23
|
+
}
|
|
24
|
+
/**
|
|
25
|
+
* List all Extensions under ArcSetting resource.
|
|
26
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
27
|
+
* @param clusterName The name of the cluster.
|
|
28
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
29
|
+
* @param options The options parameters.
|
|
30
|
+
*/
|
|
31
|
+
listByArcSetting(resourceGroupName, clusterName, arcSettingName, options) {
|
|
32
|
+
const iter = this.listByArcSettingPagingAll(resourceGroupName, clusterName, arcSettingName, options);
|
|
33
|
+
return {
|
|
34
|
+
next() {
|
|
35
|
+
return iter.next();
|
|
36
|
+
},
|
|
37
|
+
[Symbol.asyncIterator]() {
|
|
38
|
+
return this;
|
|
39
|
+
},
|
|
40
|
+
byPage: () => {
|
|
41
|
+
return this.listByArcSettingPagingPage(resourceGroupName, clusterName, arcSettingName, options);
|
|
42
|
+
}
|
|
43
|
+
};
|
|
44
|
+
}
|
|
45
|
+
listByArcSettingPagingPage(resourceGroupName, clusterName, arcSettingName, options) {
|
|
46
|
+
return __asyncGenerator(this, arguments, function* listByArcSettingPagingPage_1() {
|
|
47
|
+
let result = yield __await(this._listByArcSetting(resourceGroupName, clusterName, arcSettingName, options));
|
|
48
|
+
yield yield __await(result.value || []);
|
|
49
|
+
let continuationToken = result.nextLink;
|
|
50
|
+
while (continuationToken) {
|
|
51
|
+
result = yield __await(this._listByArcSettingNext(resourceGroupName, clusterName, arcSettingName, continuationToken, options));
|
|
52
|
+
continuationToken = result.nextLink;
|
|
53
|
+
yield yield __await(result.value || []);
|
|
54
|
+
}
|
|
55
|
+
});
|
|
56
|
+
}
|
|
57
|
+
listByArcSettingPagingAll(resourceGroupName, clusterName, arcSettingName, options) {
|
|
58
|
+
return __asyncGenerator(this, arguments, function* listByArcSettingPagingAll_1() {
|
|
59
|
+
var e_1, _a;
|
|
60
|
+
try {
|
|
61
|
+
for (var _b = __asyncValues(this.listByArcSettingPagingPage(resourceGroupName, clusterName, arcSettingName, options)), _c; _c = yield __await(_b.next()), !_c.done;) {
|
|
62
|
+
const page = _c.value;
|
|
63
|
+
yield __await(yield* __asyncDelegator(__asyncValues(page)));
|
|
64
|
+
}
|
|
65
|
+
}
|
|
66
|
+
catch (e_1_1) { e_1 = { error: e_1_1 }; }
|
|
67
|
+
finally {
|
|
68
|
+
try {
|
|
69
|
+
if (_c && !_c.done && (_a = _b.return)) yield __await(_a.call(_b));
|
|
70
|
+
}
|
|
71
|
+
finally { if (e_1) throw e_1.error; }
|
|
72
|
+
}
|
|
73
|
+
});
|
|
74
|
+
}
|
|
75
|
+
/**
|
|
76
|
+
* List all Extensions under ArcSetting resource.
|
|
77
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
78
|
+
* @param clusterName The name of the cluster.
|
|
79
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
80
|
+
* @param options The options parameters.
|
|
81
|
+
*/
|
|
82
|
+
_listByArcSetting(resourceGroupName, clusterName, arcSettingName, options) {
|
|
83
|
+
return this.client.sendOperationRequest({ resourceGroupName, clusterName, arcSettingName, options }, listByArcSettingOperationSpec);
|
|
84
|
+
}
|
|
85
|
+
/**
|
|
86
|
+
* Get particular Arc Extension of HCI Cluster.
|
|
87
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
88
|
+
* @param clusterName The name of the cluster.
|
|
89
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
90
|
+
* @param extensionName The name of the machine extension.
|
|
91
|
+
* @param options The options parameters.
|
|
92
|
+
*/
|
|
93
|
+
get(resourceGroupName, clusterName, arcSettingName, extensionName, options) {
|
|
94
|
+
return this.client.sendOperationRequest({
|
|
95
|
+
resourceGroupName,
|
|
96
|
+
clusterName,
|
|
97
|
+
arcSettingName,
|
|
98
|
+
extensionName,
|
|
99
|
+
options
|
|
100
|
+
}, getOperationSpec);
|
|
101
|
+
}
|
|
102
|
+
/**
|
|
103
|
+
* Create Extension for HCI cluster.
|
|
104
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
105
|
+
* @param clusterName The name of the cluster.
|
|
106
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
107
|
+
* @param extensionName The name of the machine extension.
|
|
108
|
+
* @param extension Details of the Machine Extension to be created.
|
|
109
|
+
* @param options The options parameters.
|
|
110
|
+
*/
|
|
111
|
+
beginCreate(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options) {
|
|
112
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
113
|
+
const directSendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
114
|
+
return this.client.sendOperationRequest(args, spec);
|
|
115
|
+
});
|
|
116
|
+
const sendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
117
|
+
var _a;
|
|
118
|
+
let currentRawResponse = undefined;
|
|
119
|
+
const providedCallback = (_a = args.options) === null || _a === void 0 ? void 0 : _a.onResponse;
|
|
120
|
+
const callback = (rawResponse, flatResponse) => {
|
|
121
|
+
currentRawResponse = rawResponse;
|
|
122
|
+
providedCallback === null || providedCallback === void 0 ? void 0 : providedCallback(rawResponse, flatResponse);
|
|
123
|
+
};
|
|
124
|
+
const updatedArgs = Object.assign(Object.assign({}, args), { options: Object.assign(Object.assign({}, args.options), { onResponse: callback }) });
|
|
125
|
+
const flatResponse = yield directSendOperation(updatedArgs, spec);
|
|
126
|
+
return {
|
|
127
|
+
flatResponse,
|
|
128
|
+
rawResponse: {
|
|
129
|
+
statusCode: currentRawResponse.status,
|
|
130
|
+
body: currentRawResponse.parsedBody,
|
|
131
|
+
headers: currentRawResponse.headers.toJSON()
|
|
132
|
+
}
|
|
133
|
+
};
|
|
134
|
+
});
|
|
135
|
+
const lro = new LroImpl(sendOperation, {
|
|
136
|
+
resourceGroupName,
|
|
137
|
+
clusterName,
|
|
138
|
+
arcSettingName,
|
|
139
|
+
extensionName,
|
|
140
|
+
extension,
|
|
141
|
+
options
|
|
142
|
+
}, createOperationSpec);
|
|
143
|
+
return new LroEngine(lro, {
|
|
144
|
+
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
145
|
+
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs,
|
|
146
|
+
lroResourceLocationConfig: "azure-async-operation"
|
|
147
|
+
});
|
|
148
|
+
});
|
|
149
|
+
}
|
|
150
|
+
/**
|
|
151
|
+
* Create Extension for HCI cluster.
|
|
152
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
153
|
+
* @param clusterName The name of the cluster.
|
|
154
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
155
|
+
* @param extensionName The name of the machine extension.
|
|
156
|
+
* @param extension Details of the Machine Extension to be created.
|
|
157
|
+
* @param options The options parameters.
|
|
158
|
+
*/
|
|
159
|
+
beginCreateAndWait(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options) {
|
|
160
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
161
|
+
const poller = yield this.beginCreate(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options);
|
|
162
|
+
return poller.pollUntilDone();
|
|
163
|
+
});
|
|
164
|
+
}
|
|
165
|
+
/**
|
|
166
|
+
* Update Extension for HCI cluster.
|
|
167
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
168
|
+
* @param clusterName The name of the cluster.
|
|
169
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
170
|
+
* @param extensionName The name of the machine extension.
|
|
171
|
+
* @param extension Details of the Machine Extension to be created.
|
|
172
|
+
* @param options The options parameters.
|
|
173
|
+
*/
|
|
174
|
+
beginUpdate(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options) {
|
|
175
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
176
|
+
const directSendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
177
|
+
return this.client.sendOperationRequest(args, spec);
|
|
178
|
+
});
|
|
179
|
+
const sendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
180
|
+
var _a;
|
|
181
|
+
let currentRawResponse = undefined;
|
|
182
|
+
const providedCallback = (_a = args.options) === null || _a === void 0 ? void 0 : _a.onResponse;
|
|
183
|
+
const callback = (rawResponse, flatResponse) => {
|
|
184
|
+
currentRawResponse = rawResponse;
|
|
185
|
+
providedCallback === null || providedCallback === void 0 ? void 0 : providedCallback(rawResponse, flatResponse);
|
|
186
|
+
};
|
|
187
|
+
const updatedArgs = Object.assign(Object.assign({}, args), { options: Object.assign(Object.assign({}, args.options), { onResponse: callback }) });
|
|
188
|
+
const flatResponse = yield directSendOperation(updatedArgs, spec);
|
|
189
|
+
return {
|
|
190
|
+
flatResponse,
|
|
191
|
+
rawResponse: {
|
|
192
|
+
statusCode: currentRawResponse.status,
|
|
193
|
+
body: currentRawResponse.parsedBody,
|
|
194
|
+
headers: currentRawResponse.headers.toJSON()
|
|
195
|
+
}
|
|
196
|
+
};
|
|
197
|
+
});
|
|
198
|
+
const lro = new LroImpl(sendOperation, {
|
|
199
|
+
resourceGroupName,
|
|
200
|
+
clusterName,
|
|
201
|
+
arcSettingName,
|
|
202
|
+
extensionName,
|
|
203
|
+
extension,
|
|
204
|
+
options
|
|
205
|
+
}, updateOperationSpec);
|
|
206
|
+
return new LroEngine(lro, {
|
|
207
|
+
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
208
|
+
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs,
|
|
209
|
+
lroResourceLocationConfig: "original-uri"
|
|
210
|
+
});
|
|
211
|
+
});
|
|
212
|
+
}
|
|
213
|
+
/**
|
|
214
|
+
* Update Extension for HCI cluster.
|
|
215
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
216
|
+
* @param clusterName The name of the cluster.
|
|
217
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
218
|
+
* @param extensionName The name of the machine extension.
|
|
219
|
+
* @param extension Details of the Machine Extension to be created.
|
|
220
|
+
* @param options The options parameters.
|
|
221
|
+
*/
|
|
222
|
+
beginUpdateAndWait(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options) {
|
|
223
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
224
|
+
const poller = yield this.beginUpdate(resourceGroupName, clusterName, arcSettingName, extensionName, extension, options);
|
|
225
|
+
return poller.pollUntilDone();
|
|
226
|
+
});
|
|
227
|
+
}
|
|
228
|
+
/**
|
|
229
|
+
* Delete particular Arc Extension of HCI Cluster.
|
|
230
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
231
|
+
* @param clusterName The name of the cluster.
|
|
232
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
233
|
+
* @param extensionName The name of the machine extension.
|
|
234
|
+
* @param options The options parameters.
|
|
235
|
+
*/
|
|
236
|
+
beginDelete(resourceGroupName, clusterName, arcSettingName, extensionName, options) {
|
|
237
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
238
|
+
const directSendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
239
|
+
return this.client.sendOperationRequest(args, spec);
|
|
240
|
+
});
|
|
241
|
+
const sendOperation = (args, spec) => __awaiter(this, void 0, void 0, function* () {
|
|
242
|
+
var _a;
|
|
243
|
+
let currentRawResponse = undefined;
|
|
244
|
+
const providedCallback = (_a = args.options) === null || _a === void 0 ? void 0 : _a.onResponse;
|
|
245
|
+
const callback = (rawResponse, flatResponse) => {
|
|
246
|
+
currentRawResponse = rawResponse;
|
|
247
|
+
providedCallback === null || providedCallback === void 0 ? void 0 : providedCallback(rawResponse, flatResponse);
|
|
248
|
+
};
|
|
249
|
+
const updatedArgs = Object.assign(Object.assign({}, args), { options: Object.assign(Object.assign({}, args.options), { onResponse: callback }) });
|
|
250
|
+
const flatResponse = yield directSendOperation(updatedArgs, spec);
|
|
251
|
+
return {
|
|
252
|
+
flatResponse,
|
|
253
|
+
rawResponse: {
|
|
254
|
+
statusCode: currentRawResponse.status,
|
|
255
|
+
body: currentRawResponse.parsedBody,
|
|
256
|
+
headers: currentRawResponse.headers.toJSON()
|
|
257
|
+
}
|
|
258
|
+
};
|
|
259
|
+
});
|
|
260
|
+
const lro = new LroImpl(sendOperation, {
|
|
261
|
+
resourceGroupName,
|
|
262
|
+
clusterName,
|
|
263
|
+
arcSettingName,
|
|
264
|
+
extensionName,
|
|
265
|
+
options
|
|
266
|
+
}, deleteOperationSpec);
|
|
267
|
+
return new LroEngine(lro, {
|
|
268
|
+
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
269
|
+
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs,
|
|
270
|
+
lroResourceLocationConfig: "azure-async-operation"
|
|
271
|
+
});
|
|
272
|
+
});
|
|
273
|
+
}
|
|
274
|
+
/**
|
|
275
|
+
* Delete particular Arc Extension of HCI Cluster.
|
|
276
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
277
|
+
* @param clusterName The name of the cluster.
|
|
278
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
279
|
+
* @param extensionName The name of the machine extension.
|
|
280
|
+
* @param options The options parameters.
|
|
281
|
+
*/
|
|
282
|
+
beginDeleteAndWait(resourceGroupName, clusterName, arcSettingName, extensionName, options) {
|
|
283
|
+
return __awaiter(this, void 0, void 0, function* () {
|
|
284
|
+
const poller = yield this.beginDelete(resourceGroupName, clusterName, arcSettingName, extensionName, options);
|
|
285
|
+
return poller.pollUntilDone();
|
|
286
|
+
});
|
|
287
|
+
}
|
|
288
|
+
/**
|
|
289
|
+
* ListByArcSettingNext
|
|
290
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
291
|
+
* @param clusterName The name of the cluster.
|
|
292
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
293
|
+
* @param nextLink The nextLink from the previous successful call to the ListByArcSetting method.
|
|
294
|
+
* @param options The options parameters.
|
|
295
|
+
*/
|
|
296
|
+
_listByArcSettingNext(resourceGroupName, clusterName, arcSettingName, nextLink, options) {
|
|
297
|
+
return this.client.sendOperationRequest({ resourceGroupName, clusterName, arcSettingName, nextLink, options }, listByArcSettingNextOperationSpec);
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
// Operation Specifications
|
|
301
|
+
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
|
302
|
+
const listByArcSettingOperationSpec = {
|
|
303
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/arcSettings/{arcSettingName}/extensions",
|
|
304
|
+
httpMethod: "GET",
|
|
305
|
+
responses: {
|
|
306
|
+
200: {
|
|
307
|
+
bodyMapper: Mappers.ExtensionList
|
|
308
|
+
},
|
|
309
|
+
default: {
|
|
310
|
+
bodyMapper: Mappers.ErrorResponse
|
|
311
|
+
}
|
|
312
|
+
},
|
|
313
|
+
queryParameters: [Parameters.apiVersion],
|
|
314
|
+
urlParameters: [
|
|
315
|
+
Parameters.$host,
|
|
316
|
+
Parameters.subscriptionId,
|
|
317
|
+
Parameters.resourceGroupName,
|
|
318
|
+
Parameters.clusterName,
|
|
319
|
+
Parameters.arcSettingName
|
|
320
|
+
],
|
|
321
|
+
headerParameters: [Parameters.accept],
|
|
322
|
+
serializer
|
|
323
|
+
};
|
|
324
|
+
const getOperationSpec = {
|
|
325
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/arcSettings/{arcSettingName}/extensions/{extensionName}",
|
|
326
|
+
httpMethod: "GET",
|
|
327
|
+
responses: {
|
|
328
|
+
200: {
|
|
329
|
+
bodyMapper: Mappers.Extension
|
|
330
|
+
},
|
|
331
|
+
default: {
|
|
332
|
+
bodyMapper: Mappers.ErrorResponse
|
|
333
|
+
}
|
|
334
|
+
},
|
|
335
|
+
queryParameters: [Parameters.apiVersion],
|
|
336
|
+
urlParameters: [
|
|
337
|
+
Parameters.$host,
|
|
338
|
+
Parameters.subscriptionId,
|
|
339
|
+
Parameters.resourceGroupName,
|
|
340
|
+
Parameters.clusterName,
|
|
341
|
+
Parameters.arcSettingName,
|
|
342
|
+
Parameters.extensionName
|
|
343
|
+
],
|
|
344
|
+
headerParameters: [Parameters.accept],
|
|
345
|
+
serializer
|
|
346
|
+
};
|
|
347
|
+
const createOperationSpec = {
|
|
348
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/arcSettings/{arcSettingName}/extensions/{extensionName}",
|
|
349
|
+
httpMethod: "PUT",
|
|
350
|
+
responses: {
|
|
351
|
+
200: {
|
|
352
|
+
bodyMapper: Mappers.Extension
|
|
353
|
+
},
|
|
354
|
+
201: {
|
|
355
|
+
bodyMapper: Mappers.Extension
|
|
356
|
+
},
|
|
357
|
+
202: {
|
|
358
|
+
bodyMapper: Mappers.Extension
|
|
359
|
+
},
|
|
360
|
+
204: {
|
|
361
|
+
bodyMapper: Mappers.Extension
|
|
362
|
+
},
|
|
363
|
+
default: {
|
|
364
|
+
bodyMapper: Mappers.ErrorResponse
|
|
365
|
+
}
|
|
366
|
+
},
|
|
367
|
+
requestBody: Parameters.extension,
|
|
368
|
+
queryParameters: [Parameters.apiVersion],
|
|
369
|
+
urlParameters: [
|
|
370
|
+
Parameters.$host,
|
|
371
|
+
Parameters.subscriptionId,
|
|
372
|
+
Parameters.resourceGroupName,
|
|
373
|
+
Parameters.clusterName,
|
|
374
|
+
Parameters.arcSettingName,
|
|
375
|
+
Parameters.extensionName
|
|
376
|
+
],
|
|
377
|
+
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
378
|
+
mediaType: "json",
|
|
379
|
+
serializer
|
|
380
|
+
};
|
|
381
|
+
const updateOperationSpec = {
|
|
382
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/arcSettings/{arcSettingName}/extensions/{extensionName}",
|
|
383
|
+
httpMethod: "PATCH",
|
|
384
|
+
responses: {
|
|
385
|
+
200: {
|
|
386
|
+
bodyMapper: Mappers.Extension
|
|
387
|
+
},
|
|
388
|
+
201: {
|
|
389
|
+
bodyMapper: Mappers.Extension
|
|
390
|
+
},
|
|
391
|
+
202: {
|
|
392
|
+
bodyMapper: Mappers.Extension
|
|
393
|
+
},
|
|
394
|
+
204: {
|
|
395
|
+
bodyMapper: Mappers.Extension
|
|
396
|
+
},
|
|
397
|
+
default: {
|
|
398
|
+
bodyMapper: Mappers.ErrorResponse
|
|
399
|
+
}
|
|
400
|
+
},
|
|
401
|
+
requestBody: Parameters.extension,
|
|
402
|
+
queryParameters: [Parameters.apiVersion],
|
|
403
|
+
urlParameters: [
|
|
404
|
+
Parameters.$host,
|
|
405
|
+
Parameters.subscriptionId,
|
|
406
|
+
Parameters.resourceGroupName,
|
|
407
|
+
Parameters.clusterName,
|
|
408
|
+
Parameters.arcSettingName,
|
|
409
|
+
Parameters.extensionName
|
|
410
|
+
],
|
|
411
|
+
headerParameters: [Parameters.accept, Parameters.contentType],
|
|
412
|
+
mediaType: "json",
|
|
413
|
+
serializer
|
|
414
|
+
};
|
|
415
|
+
const deleteOperationSpec = {
|
|
416
|
+
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.AzureStackHCI/clusters/{clusterName}/arcSettings/{arcSettingName}/extensions/{extensionName}",
|
|
417
|
+
httpMethod: "DELETE",
|
|
418
|
+
responses: {
|
|
419
|
+
200: {},
|
|
420
|
+
201: {},
|
|
421
|
+
202: {},
|
|
422
|
+
204: {},
|
|
423
|
+
default: {
|
|
424
|
+
bodyMapper: Mappers.ErrorResponse
|
|
425
|
+
}
|
|
426
|
+
},
|
|
427
|
+
queryParameters: [Parameters.apiVersion],
|
|
428
|
+
urlParameters: [
|
|
429
|
+
Parameters.$host,
|
|
430
|
+
Parameters.subscriptionId,
|
|
431
|
+
Parameters.resourceGroupName,
|
|
432
|
+
Parameters.clusterName,
|
|
433
|
+
Parameters.arcSettingName,
|
|
434
|
+
Parameters.extensionName
|
|
435
|
+
],
|
|
436
|
+
headerParameters: [Parameters.accept],
|
|
437
|
+
serializer
|
|
438
|
+
};
|
|
439
|
+
const listByArcSettingNextOperationSpec = {
|
|
440
|
+
path: "{nextLink}",
|
|
441
|
+
httpMethod: "GET",
|
|
442
|
+
responses: {
|
|
443
|
+
200: {
|
|
444
|
+
bodyMapper: Mappers.ExtensionList
|
|
445
|
+
},
|
|
446
|
+
default: {
|
|
447
|
+
bodyMapper: Mappers.ErrorResponse
|
|
448
|
+
}
|
|
449
|
+
},
|
|
450
|
+
queryParameters: [Parameters.apiVersion],
|
|
451
|
+
urlParameters: [
|
|
452
|
+
Parameters.$host,
|
|
453
|
+
Parameters.subscriptionId,
|
|
454
|
+
Parameters.resourceGroupName,
|
|
455
|
+
Parameters.clusterName,
|
|
456
|
+
Parameters.arcSettingName,
|
|
457
|
+
Parameters.nextLink
|
|
458
|
+
],
|
|
459
|
+
headerParameters: [Parameters.accept],
|
|
460
|
+
serializer
|
|
461
|
+
};
|
|
462
|
+
//# sourceMappingURL=extensions.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"extensions.js","sourceRoot":"","sources":["../../../src/operations/extensions.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAQA,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*
|
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
*/
|
|
8
|
+
export * from "./arcSettings";
|
|
9
|
+
export * from "./clusters";
|
|
10
|
+
export * from "./extensions";
|
|
11
|
+
export * from "./operations";
|
|
12
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../../src/operations/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAEH,cAAc,eAAe,CAAC;AAC9B,cAAc,YAAY,CAAC;AAC3B,cAAc,cAAc,CAAC;AAC7B,cAAc,cAAc,CAAC"}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
import { Operations } from "../operationsInterfaces";
|
|
2
|
+
import { AzureStackHCIClient } from "../azureStackHCIClient";
|
|
3
|
+
import { OperationsListOptionalParams, OperationsListResponse } from "../models";
|
|
4
|
+
/** Class containing Operations operations. */
|
|
5
|
+
export declare class OperationsImpl implements Operations {
|
|
6
|
+
private readonly client;
|
|
7
|
+
/**
|
|
8
|
+
* Initialize a new instance of the class Operations class.
|
|
9
|
+
* @param client Reference to the service client
|
|
10
|
+
*/
|
|
11
|
+
constructor(client: AzureStackHCIClient);
|
|
12
|
+
/**
|
|
13
|
+
* List all available Microsoft.AzureStackHCI provider operations
|
|
14
|
+
* @param options The options parameters.
|
|
15
|
+
*/
|
|
16
|
+
list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
|
|
17
|
+
}
|
|
18
|
+
//# sourceMappingURL=operations.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.d.ts","sourceRoot":"","sources":["../../../src/operations/operations.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,UAAU,EAAE,MAAM,yBAAyB,CAAC;AAIrD,OAAO,EAAE,mBAAmB,EAAE,MAAM,wBAAwB,CAAC;AAC7D,OAAO,EACL,4BAA4B,EAC5B,sBAAsB,EACvB,MAAM,WAAW,CAAC;AAEnB,8CAA8C;AAC9C,qBAAa,cAAe,YAAW,UAAU;IAC/C,OAAO,CAAC,QAAQ,CAAC,MAAM,CAAsB;IAE7C;;;OAGG;gBACS,MAAM,EAAE,mBAAmB;IAIvC;;;OAGG;IACH,IAAI,CACF,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,sBAAsB,CAAC;CAGnC"}
|
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*
|
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
*/
|
|
8
|
+
import * as coreClient from "@azure/core-client";
|
|
9
|
+
import * as Mappers from "../models/mappers";
|
|
10
|
+
import * as Parameters from "../models/parameters";
|
|
11
|
+
/** Class containing Operations operations. */
|
|
12
|
+
export class OperationsImpl {
|
|
13
|
+
/**
|
|
14
|
+
* Initialize a new instance of the class Operations class.
|
|
15
|
+
* @param client Reference to the service client
|
|
16
|
+
*/
|
|
17
|
+
constructor(client) {
|
|
18
|
+
this.client = client;
|
|
19
|
+
}
|
|
20
|
+
/**
|
|
21
|
+
* List all available Microsoft.AzureStackHCI provider operations
|
|
22
|
+
* @param options The options parameters.
|
|
23
|
+
*/
|
|
24
|
+
list(options) {
|
|
25
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
26
|
+
}
|
|
27
|
+
}
|
|
28
|
+
// Operation Specifications
|
|
29
|
+
const serializer = coreClient.createSerializer(Mappers, /* isXml */ false);
|
|
30
|
+
const listOperationSpec = {
|
|
31
|
+
path: "/providers/Microsoft.AzureStackHCI/operations",
|
|
32
|
+
httpMethod: "GET",
|
|
33
|
+
responses: {
|
|
34
|
+
200: {
|
|
35
|
+
bodyMapper: Mappers.OperationListResult
|
|
36
|
+
},
|
|
37
|
+
default: {
|
|
38
|
+
bodyMapper: Mappers.ErrorResponse
|
|
39
|
+
}
|
|
40
|
+
},
|
|
41
|
+
queryParameters: [Parameters.apiVersion],
|
|
42
|
+
urlParameters: [Parameters.$host],
|
|
43
|
+
headerParameters: [Parameters.accept],
|
|
44
|
+
serializer
|
|
45
|
+
};
|
|
46
|
+
//# sourceMappingURL=operations.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"operations.js","sourceRoot":"","sources":["../../../src/operations/operations.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG;AAGH,OAAO,KAAK,UAAU,MAAM,oBAAoB,CAAC;AACjD,OAAO,KAAK,OAAO,MAAM,mBAAmB,CAAC;AAC7C,OAAO,KAAK,UAAU,MAAM,sBAAsB,CAAC;AAOnD,8CAA8C;AAC9C,MAAM,OAAO,cAAc;IAGzB;;;OAGG;IACH,YAAY,MAA2B;QACrC,IAAI,CAAC,MAAM,GAAG,MAAM,CAAC;IACvB,CAAC;IAED;;;OAGG;IACH,IAAI,CACF,OAAsC;QAEtC,OAAO,IAAI,CAAC,MAAM,CAAC,oBAAoB,CAAC,EAAE,OAAO,EAAE,EAAE,iBAAiB,CAAC,CAAC;IAC1E,CAAC;CACF;AACD,2BAA2B;AAC3B,MAAM,UAAU,GAAG,UAAU,CAAC,gBAAgB,CAAC,OAAO,EAAE,WAAW,CAAC,KAAK,CAAC,CAAC;AAE3E,MAAM,iBAAiB,GAA6B;IAClD,IAAI,EAAE,+CAA+C;IACrD,UAAU,EAAE,KAAK;IACjB,SAAS,EAAE;QACT,GAAG,EAAE;YACH,UAAU,EAAE,OAAO,CAAC,mBAAmB;SACxC;QACD,OAAO,EAAE;YACP,UAAU,EAAE,OAAO,CAAC,aAAa;SAClC;KACF;IACD,eAAe,EAAE,CAAC,UAAU,CAAC,UAAU,CAAC;IACxC,aAAa,EAAE,CAAC,UAAU,CAAC,KAAK,CAAC;IACjC,gBAAgB,EAAE,CAAC,UAAU,CAAC,MAAM,CAAC;IACrC,UAAU;CACX,CAAC"}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
import { PagedAsyncIterableIterator } from "@azure/core-paging";
|
|
2
|
+
import { PollerLike, PollOperationState } from "@azure/core-lro";
|
|
3
|
+
import { ArcSetting, ArcSettingsListByClusterOptionalParams, ArcSettingsGetOptionalParams, ArcSettingsGetResponse, ArcSettingsCreateOptionalParams, ArcSettingsCreateResponse, ArcSettingsDeleteOptionalParams } from "../models";
|
|
4
|
+
/** Interface representing a ArcSettings. */
|
|
5
|
+
export interface ArcSettings {
|
|
6
|
+
/**
|
|
7
|
+
* Get ArcSetting resources of HCI Cluster.
|
|
8
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
9
|
+
* @param clusterName The name of the cluster.
|
|
10
|
+
* @param options The options parameters.
|
|
11
|
+
*/
|
|
12
|
+
listByCluster(resourceGroupName: string, clusterName: string, options?: ArcSettingsListByClusterOptionalParams): PagedAsyncIterableIterator<ArcSetting>;
|
|
13
|
+
/**
|
|
14
|
+
* Get ArcSetting resource details of HCI Cluster.
|
|
15
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
16
|
+
* @param clusterName The name of the cluster.
|
|
17
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
18
|
+
* @param options The options parameters.
|
|
19
|
+
*/
|
|
20
|
+
get(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsGetOptionalParams): Promise<ArcSettingsGetResponse>;
|
|
21
|
+
/**
|
|
22
|
+
* Create ArcSetting for HCI cluster.
|
|
23
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
24
|
+
* @param clusterName The name of the cluster.
|
|
25
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
26
|
+
* @param arcSetting Parameters supplied to the Create ArcSetting resource for this HCI cluster.
|
|
27
|
+
* @param options The options parameters.
|
|
28
|
+
*/
|
|
29
|
+
create(resourceGroupName: string, clusterName: string, arcSettingName: string, arcSetting: ArcSetting, options?: ArcSettingsCreateOptionalParams): Promise<ArcSettingsCreateResponse>;
|
|
30
|
+
/**
|
|
31
|
+
* Delete ArcSetting resource details of HCI Cluster.
|
|
32
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
33
|
+
* @param clusterName The name of the cluster.
|
|
34
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
35
|
+
* @param options The options parameters.
|
|
36
|
+
*/
|
|
37
|
+
beginDelete(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
38
|
+
/**
|
|
39
|
+
* Delete ArcSetting resource details of HCI Cluster.
|
|
40
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
41
|
+
* @param clusterName The name of the cluster.
|
|
42
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
43
|
+
* @param options The options parameters.
|
|
44
|
+
*/
|
|
45
|
+
beginDeleteAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<void>;
|
|
46
|
+
}
|
|
47
|
+
//# sourceMappingURL=arcSettings.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arcSettings.d.ts","sourceRoot":"","sources":["../../../src/operationsInterfaces/arcSettings.ts"],"names":[],"mappings":"AAQA,OAAO,EAAE,0BAA0B,EAAE,MAAM,oBAAoB,CAAC;AAChE,OAAO,EAAE,UAAU,EAAE,kBAAkB,EAAE,MAAM,iBAAiB,CAAC;AACjE,OAAO,EACL,UAAU,EACV,sCAAsC,EACtC,4BAA4B,EAC5B,sBAAsB,EACtB,+BAA+B,EAC/B,yBAAyB,EACzB,+BAA+B,EAChC,MAAM,WAAW,CAAC;AAGnB,4CAA4C;AAC5C,MAAM,WAAW,WAAW;IAC1B;;;;;OAKG;IACH,aAAa,CACX,iBAAiB,EAAE,MAAM,EACzB,WAAW,EAAE,MAAM,EACnB,OAAO,CAAC,EAAE,sCAAsC,GAC/C,0BAA0B,CAAC,UAAU,CAAC,CAAC;IAC1C;;;;;;OAMG;IACH,GAAG,CACD,iBAAiB,EAAE,MAAM,EACzB,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,4BAA4B,GACrC,OAAO,CAAC,sBAAsB,CAAC,CAAC;IACnC;;;;;;;OAOG;IACH,MAAM,CACJ,iBAAiB,EAAE,MAAM,EACzB,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,MAAM,EACtB,UAAU,EAAE,UAAU,EACtB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,yBAAyB,CAAC,CAAC;IACtC;;;;;;OAMG;IACH,WAAW,CACT,iBAAiB,EAAE,MAAM,EACzB,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,UAAU,CAAC,kBAAkB,CAAC,IAAI,CAAC,EAAE,IAAI,CAAC,CAAC,CAAC;IACvD;;;;;;OAMG;IACH,kBAAkB,CAChB,iBAAiB,EAAE,MAAM,EACzB,WAAW,EAAE,MAAM,EACnB,cAAc,EAAE,MAAM,EACtB,OAAO,CAAC,EAAE,+BAA+B,GACxC,OAAO,CAAC,IAAI,CAAC,CAAC;CAClB"}
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
/*
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
4
|
+
*
|
|
5
|
+
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
+
*/
|
|
8
|
+
export {};
|
|
9
|
+
//# sourceMappingURL=arcSettings.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"arcSettings.js","sourceRoot":"","sources":["../../../src/operationsInterfaces/arcSettings.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|