@azure/arm-devtestlabs 4.0.0 → 4.0.1-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/CHANGELOG.md +11 -1
- package/dist/index.js +504 -438
- 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 +16 -6
- 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.
|
|
@@ -13,23 +33,33 @@ var coreLro = require('@azure/core-lro');
|
|
|
13
33
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
14
34
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
15
35
|
*/
|
|
36
|
+
/** Known values of {@link StorageType} that the service accepts. */
|
|
37
|
+
exports.KnownStorageType = void 0;
|
|
16
38
|
(function (KnownStorageType) {
|
|
17
39
|
KnownStorageType["Standard"] = "Standard";
|
|
18
40
|
KnownStorageType["Premium"] = "Premium";
|
|
19
41
|
KnownStorageType["StandardSSD"] = "StandardSSD";
|
|
20
42
|
})(exports.KnownStorageType || (exports.KnownStorageType = {}));
|
|
43
|
+
/** Known values of {@link PremiumDataDisk} that the service accepts. */
|
|
44
|
+
exports.KnownPremiumDataDisk = void 0;
|
|
21
45
|
(function (KnownPremiumDataDisk) {
|
|
22
46
|
KnownPremiumDataDisk["Disabled"] = "Disabled";
|
|
23
47
|
KnownPremiumDataDisk["Enabled"] = "Enabled";
|
|
24
48
|
})(exports.KnownPremiumDataDisk || (exports.KnownPremiumDataDisk = {}));
|
|
49
|
+
/** Known values of {@link EnvironmentPermission} that the service accepts. */
|
|
50
|
+
exports.KnownEnvironmentPermission = void 0;
|
|
25
51
|
(function (KnownEnvironmentPermission) {
|
|
26
52
|
KnownEnvironmentPermission["Reader"] = "Reader";
|
|
27
53
|
KnownEnvironmentPermission["Contributor"] = "Contributor";
|
|
28
54
|
})(exports.KnownEnvironmentPermission || (exports.KnownEnvironmentPermission = {}));
|
|
55
|
+
/** Known values of {@link EnableStatus} that the service accepts. */
|
|
56
|
+
exports.KnownEnableStatus = void 0;
|
|
29
57
|
(function (KnownEnableStatus) {
|
|
30
58
|
KnownEnableStatus["Enabled"] = "Enabled";
|
|
31
59
|
KnownEnableStatus["Disabled"] = "Disabled";
|
|
32
60
|
})(exports.KnownEnableStatus || (exports.KnownEnableStatus = {}));
|
|
61
|
+
/** Known values of {@link HttpStatusCode} that the service accepts. */
|
|
62
|
+
exports.KnownHttpStatusCode = void 0;
|
|
33
63
|
(function (KnownHttpStatusCode) {
|
|
34
64
|
KnownHttpStatusCode["Continue"] = "Continue";
|
|
35
65
|
KnownHttpStatusCode["SwitchingProtocols"] = "SwitchingProtocols";
|
|
@@ -79,64 +109,92 @@ var coreLro = require('@azure/core-lro');
|
|
|
79
109
|
KnownHttpStatusCode["GatewayTimeout"] = "GatewayTimeout";
|
|
80
110
|
KnownHttpStatusCode["HttpVersionNotSupported"] = "HttpVersionNotSupported";
|
|
81
111
|
})(exports.KnownHttpStatusCode || (exports.KnownHttpStatusCode = {}));
|
|
112
|
+
/** Known values of {@link SourceControlType} that the service accepts. */
|
|
113
|
+
exports.KnownSourceControlType = void 0;
|
|
82
114
|
(function (KnownSourceControlType) {
|
|
83
115
|
KnownSourceControlType["VsoGit"] = "VsoGit";
|
|
84
116
|
KnownSourceControlType["GitHub"] = "GitHub";
|
|
85
117
|
KnownSourceControlType["StorageAccount"] = "StorageAccount";
|
|
86
118
|
})(exports.KnownSourceControlType || (exports.KnownSourceControlType = {}));
|
|
119
|
+
/** Known values of {@link FileUploadOptions} that the service accepts. */
|
|
120
|
+
exports.KnownFileUploadOptions = void 0;
|
|
87
121
|
(function (KnownFileUploadOptions) {
|
|
88
122
|
KnownFileUploadOptions["UploadFilesAndGenerateSasTokens"] = "UploadFilesAndGenerateSasTokens";
|
|
89
123
|
KnownFileUploadOptions["None"] = "None";
|
|
90
124
|
})(exports.KnownFileUploadOptions || (exports.KnownFileUploadOptions = {}));
|
|
125
|
+
/** Known values of {@link TargetCostStatus} that the service accepts. */
|
|
126
|
+
exports.KnownTargetCostStatus = void 0;
|
|
91
127
|
(function (KnownTargetCostStatus) {
|
|
92
128
|
KnownTargetCostStatus["Enabled"] = "Enabled";
|
|
93
129
|
KnownTargetCostStatus["Disabled"] = "Disabled";
|
|
94
130
|
})(exports.KnownTargetCostStatus || (exports.KnownTargetCostStatus = {}));
|
|
131
|
+
/** Known values of {@link CostThresholdStatus} that the service accepts. */
|
|
132
|
+
exports.KnownCostThresholdStatus = void 0;
|
|
95
133
|
(function (KnownCostThresholdStatus) {
|
|
96
134
|
KnownCostThresholdStatus["Enabled"] = "Enabled";
|
|
97
135
|
KnownCostThresholdStatus["Disabled"] = "Disabled";
|
|
98
136
|
})(exports.KnownCostThresholdStatus || (exports.KnownCostThresholdStatus = {}));
|
|
137
|
+
/** Known values of {@link ReportingCycleType} that the service accepts. */
|
|
138
|
+
exports.KnownReportingCycleType = void 0;
|
|
99
139
|
(function (KnownReportingCycleType) {
|
|
100
140
|
KnownReportingCycleType["CalendarMonth"] = "CalendarMonth";
|
|
101
141
|
KnownReportingCycleType["Custom"] = "Custom";
|
|
102
142
|
})(exports.KnownReportingCycleType || (exports.KnownReportingCycleType = {}));
|
|
143
|
+
/** Known values of {@link CostType} that the service accepts. */
|
|
144
|
+
exports.KnownCostType = void 0;
|
|
103
145
|
(function (KnownCostType) {
|
|
104
146
|
KnownCostType["Unavailable"] = "Unavailable";
|
|
105
147
|
KnownCostType["Reported"] = "Reported";
|
|
106
148
|
KnownCostType["Projected"] = "Projected";
|
|
107
149
|
})(exports.KnownCostType || (exports.KnownCostType = {}));
|
|
150
|
+
/** Known values of {@link WindowsOsState} that the service accepts. */
|
|
151
|
+
exports.KnownWindowsOsState = void 0;
|
|
108
152
|
(function (KnownWindowsOsState) {
|
|
109
153
|
KnownWindowsOsState["NonSysprepped"] = "NonSysprepped";
|
|
110
154
|
KnownWindowsOsState["SysprepRequested"] = "SysprepRequested";
|
|
111
155
|
KnownWindowsOsState["SysprepApplied"] = "SysprepApplied";
|
|
112
156
|
})(exports.KnownWindowsOsState || (exports.KnownWindowsOsState = {}));
|
|
157
|
+
/** Known values of {@link LinuxOsState} that the service accepts. */
|
|
158
|
+
exports.KnownLinuxOsState = void 0;
|
|
113
159
|
(function (KnownLinuxOsState) {
|
|
114
160
|
KnownLinuxOsState["NonDeprovisioned"] = "NonDeprovisioned";
|
|
115
161
|
KnownLinuxOsState["DeprovisionRequested"] = "DeprovisionRequested";
|
|
116
162
|
KnownLinuxOsState["DeprovisionApplied"] = "DeprovisionApplied";
|
|
117
163
|
})(exports.KnownLinuxOsState || (exports.KnownLinuxOsState = {}));
|
|
164
|
+
/** Known values of {@link CustomImageOsType} that the service accepts. */
|
|
165
|
+
exports.KnownCustomImageOsType = void 0;
|
|
118
166
|
(function (KnownCustomImageOsType) {
|
|
119
167
|
KnownCustomImageOsType["Windows"] = "Windows";
|
|
120
168
|
KnownCustomImageOsType["Linux"] = "Linux";
|
|
121
169
|
KnownCustomImageOsType["None"] = "None";
|
|
122
170
|
})(exports.KnownCustomImageOsType || (exports.KnownCustomImageOsType = {}));
|
|
171
|
+
/** Known values of {@link TransportProtocol} that the service accepts. */
|
|
172
|
+
exports.KnownTransportProtocol = void 0;
|
|
123
173
|
(function (KnownTransportProtocol) {
|
|
124
174
|
KnownTransportProtocol["Tcp"] = "Tcp";
|
|
125
175
|
KnownTransportProtocol["Udp"] = "Udp";
|
|
126
176
|
})(exports.KnownTransportProtocol || (exports.KnownTransportProtocol = {}));
|
|
177
|
+
/** Known values of {@link HostCachingOptions} that the service accepts. */
|
|
178
|
+
exports.KnownHostCachingOptions = void 0;
|
|
127
179
|
(function (KnownHostCachingOptions) {
|
|
128
180
|
KnownHostCachingOptions["None"] = "None";
|
|
129
181
|
KnownHostCachingOptions["ReadOnly"] = "ReadOnly";
|
|
130
182
|
KnownHostCachingOptions["ReadWrite"] = "ReadWrite";
|
|
131
183
|
})(exports.KnownHostCachingOptions || (exports.KnownHostCachingOptions = {}));
|
|
184
|
+
/** Known values of {@link NotificationChannelEventType} that the service accepts. */
|
|
185
|
+
exports.KnownNotificationChannelEventType = void 0;
|
|
132
186
|
(function (KnownNotificationChannelEventType) {
|
|
133
187
|
KnownNotificationChannelEventType["AutoShutdown"] = "AutoShutdown";
|
|
134
188
|
KnownNotificationChannelEventType["Cost"] = "Cost";
|
|
135
189
|
})(exports.KnownNotificationChannelEventType || (exports.KnownNotificationChannelEventType = {}));
|
|
190
|
+
/** Known values of {@link PolicyStatus} that the service accepts. */
|
|
191
|
+
exports.KnownPolicyStatus = void 0;
|
|
136
192
|
(function (KnownPolicyStatus) {
|
|
137
193
|
KnownPolicyStatus["Enabled"] = "Enabled";
|
|
138
194
|
KnownPolicyStatus["Disabled"] = "Disabled";
|
|
139
195
|
})(exports.KnownPolicyStatus || (exports.KnownPolicyStatus = {}));
|
|
196
|
+
/** Known values of {@link PolicyFactName} that the service accepts. */
|
|
197
|
+
exports.KnownPolicyFactName = void 0;
|
|
140
198
|
(function (KnownPolicyFactName) {
|
|
141
199
|
KnownPolicyFactName["UserOwnedLabVmCount"] = "UserOwnedLabVmCount";
|
|
142
200
|
KnownPolicyFactName["UserOwnedLabPremiumVmCount"] = "UserOwnedLabPremiumVmCount";
|
|
@@ -149,21 +207,29 @@ var coreLro = require('@azure/core-lro');
|
|
|
149
207
|
KnownPolicyFactName["EnvironmentTemplate"] = "EnvironmentTemplate";
|
|
150
208
|
KnownPolicyFactName["ScheduleEditPermission"] = "ScheduleEditPermission";
|
|
151
209
|
})(exports.KnownPolicyFactName || (exports.KnownPolicyFactName = {}));
|
|
210
|
+
/** Known values of {@link PolicyEvaluatorType} that the service accepts. */
|
|
211
|
+
exports.KnownPolicyEvaluatorType = void 0;
|
|
152
212
|
(function (KnownPolicyEvaluatorType) {
|
|
153
213
|
KnownPolicyEvaluatorType["AllowedValuesPolicy"] = "AllowedValuesPolicy";
|
|
154
214
|
KnownPolicyEvaluatorType["MaxValuePolicy"] = "MaxValuePolicy";
|
|
155
215
|
})(exports.KnownPolicyEvaluatorType || (exports.KnownPolicyEvaluatorType = {}));
|
|
216
|
+
/** Known values of {@link ManagedIdentityType} that the service accepts. */
|
|
217
|
+
exports.KnownManagedIdentityType = void 0;
|
|
156
218
|
(function (KnownManagedIdentityType) {
|
|
157
219
|
KnownManagedIdentityType["None"] = "None";
|
|
158
220
|
KnownManagedIdentityType["SystemAssigned"] = "SystemAssigned";
|
|
159
221
|
KnownManagedIdentityType["UserAssigned"] = "UserAssigned";
|
|
160
222
|
KnownManagedIdentityType["SystemAssignedUserAssigned"] = "SystemAssigned,UserAssigned";
|
|
161
223
|
})(exports.KnownManagedIdentityType || (exports.KnownManagedIdentityType = {}));
|
|
224
|
+
/** Known values of {@link VirtualMachineCreationSource} that the service accepts. */
|
|
225
|
+
exports.KnownVirtualMachineCreationSource = void 0;
|
|
162
226
|
(function (KnownVirtualMachineCreationSource) {
|
|
163
227
|
KnownVirtualMachineCreationSource["FromCustomImage"] = "FromCustomImage";
|
|
164
228
|
KnownVirtualMachineCreationSource["FromGalleryImage"] = "FromGalleryImage";
|
|
165
229
|
KnownVirtualMachineCreationSource["FromSharedGalleryImage"] = "FromSharedGalleryImage";
|
|
166
230
|
})(exports.KnownVirtualMachineCreationSource || (exports.KnownVirtualMachineCreationSource = {}));
|
|
231
|
+
/** Known values of {@link UsagePermissionType} that the service accepts. */
|
|
232
|
+
exports.KnownUsagePermissionType = void 0;
|
|
167
233
|
(function (KnownUsagePermissionType) {
|
|
168
234
|
KnownUsagePermissionType["Default"] = "Default";
|
|
169
235
|
KnownUsagePermissionType["Deny"] = "Deny";
|
|
@@ -4893,7 +4959,7 @@ class ProviderOperationsImpl {
|
|
|
4893
4959
|
* @param options The options parameters.
|
|
4894
4960
|
*/
|
|
4895
4961
|
_list(options) {
|
|
4896
|
-
return this.client.sendOperationRequest({ options }, listOperationSpec);
|
|
4962
|
+
return this.client.sendOperationRequest({ options }, listOperationSpec$i);
|
|
4897
4963
|
}
|
|
4898
4964
|
/**
|
|
4899
4965
|
* ListNext
|
|
@@ -4901,12 +4967,12 @@ class ProviderOperationsImpl {
|
|
|
4901
4967
|
* @param options The options parameters.
|
|
4902
4968
|
*/
|
|
4903
4969
|
_listNext(nextLink, options) {
|
|
4904
|
-
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec);
|
|
4970
|
+
return this.client.sendOperationRequest({ nextLink, options }, listNextOperationSpec$i);
|
|
4905
4971
|
}
|
|
4906
4972
|
}
|
|
4907
4973
|
// Operation Specifications
|
|
4908
|
-
const serializer =
|
|
4909
|
-
const listOperationSpec = {
|
|
4974
|
+
const serializer$o = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
4975
|
+
const listOperationSpec$i = {
|
|
4910
4976
|
path: "/providers/Microsoft.DevTestLab/operations",
|
|
4911
4977
|
httpMethod: "GET",
|
|
4912
4978
|
responses: {
|
|
@@ -4920,9 +4986,9 @@ const listOperationSpec = {
|
|
|
4920
4986
|
queryParameters: [apiVersion],
|
|
4921
4987
|
urlParameters: [$host],
|
|
4922
4988
|
headerParameters: [accept],
|
|
4923
|
-
serializer
|
|
4989
|
+
serializer: serializer$o
|
|
4924
4990
|
};
|
|
4925
|
-
const listNextOperationSpec = {
|
|
4991
|
+
const listNextOperationSpec$i = {
|
|
4926
4992
|
path: "{nextLink}",
|
|
4927
4993
|
httpMethod: "GET",
|
|
4928
4994
|
responses: {
|
|
@@ -4936,7 +5002,7 @@ const listNextOperationSpec = {
|
|
|
4936
5002
|
queryParameters: [apiVersion],
|
|
4937
5003
|
urlParameters: [$host, nextLink],
|
|
4938
5004
|
headerParameters: [accept],
|
|
4939
|
-
serializer
|
|
5005
|
+
serializer: serializer$o
|
|
4940
5006
|
};
|
|
4941
5007
|
|
|
4942
5008
|
/*
|
|
@@ -5136,7 +5202,7 @@ class LabsImpl {
|
|
|
5136
5202
|
* @param options The options parameters.
|
|
5137
5203
|
*/
|
|
5138
5204
|
_listBySubscription(options) {
|
|
5139
|
-
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
|
|
5205
|
+
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec$1);
|
|
5140
5206
|
}
|
|
5141
5207
|
/**
|
|
5142
5208
|
* List labs in a resource group.
|
|
@@ -5144,7 +5210,7 @@ class LabsImpl {
|
|
|
5144
5210
|
* @param options The options parameters.
|
|
5145
5211
|
*/
|
|
5146
5212
|
_listByResourceGroup(resourceGroupName, options) {
|
|
5147
|
-
return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec);
|
|
5213
|
+
return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec$1);
|
|
5148
5214
|
}
|
|
5149
5215
|
/**
|
|
5150
5216
|
* Get lab.
|
|
@@ -5153,7 +5219,7 @@ class LabsImpl {
|
|
|
5153
5219
|
* @param options The options parameters.
|
|
5154
5220
|
*/
|
|
5155
5221
|
get(resourceGroupName, name, options) {
|
|
5156
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, options }, getOperationSpec);
|
|
5222
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, options }, getOperationSpec$l);
|
|
5157
5223
|
}
|
|
5158
5224
|
/**
|
|
5159
5225
|
* Create or replace an existing lab. This operation can take a while to complete.
|
|
@@ -5186,7 +5252,7 @@ class LabsImpl {
|
|
|
5186
5252
|
}
|
|
5187
5253
|
};
|
|
5188
5254
|
});
|
|
5189
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, name, lab, options }, createOrUpdateOperationSpec);
|
|
5255
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, name, lab, options }, createOrUpdateOperationSpec$i);
|
|
5190
5256
|
return new coreLro.LroEngine(lro, {
|
|
5191
5257
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
5192
5258
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -5236,7 +5302,7 @@ class LabsImpl {
|
|
|
5236
5302
|
}
|
|
5237
5303
|
};
|
|
5238
5304
|
});
|
|
5239
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, name, options }, deleteOperationSpec);
|
|
5305
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, name, options }, deleteOperationSpec$h);
|
|
5240
5306
|
return new coreLro.LroEngine(lro, {
|
|
5241
5307
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
5242
5308
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -5263,7 +5329,7 @@ class LabsImpl {
|
|
|
5263
5329
|
* @param options The options parameters.
|
|
5264
5330
|
*/
|
|
5265
5331
|
update(resourceGroupName, name, lab, options) {
|
|
5266
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, lab, options }, updateOperationSpec);
|
|
5332
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, lab, options }, updateOperationSpec$g);
|
|
5267
5333
|
}
|
|
5268
5334
|
/**
|
|
5269
5335
|
* Claim a random claimable virtual machine in the lab. This operation can take a while to complete.
|
|
@@ -5494,7 +5560,7 @@ class LabsImpl {
|
|
|
5494
5560
|
* @param options The options parameters.
|
|
5495
5561
|
*/
|
|
5496
5562
|
_listBySubscriptionNext(nextLink, options) {
|
|
5497
|
-
return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec);
|
|
5563
|
+
return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec$1);
|
|
5498
5564
|
}
|
|
5499
5565
|
/**
|
|
5500
5566
|
* ListByResourceGroupNext
|
|
@@ -5503,7 +5569,7 @@ class LabsImpl {
|
|
|
5503
5569
|
* @param options The options parameters.
|
|
5504
5570
|
*/
|
|
5505
5571
|
_listByResourceGroupNext(resourceGroupName, nextLink, options) {
|
|
5506
|
-
return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec);
|
|
5572
|
+
return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec$1);
|
|
5507
5573
|
}
|
|
5508
5574
|
/**
|
|
5509
5575
|
* ListVhdsNext
|
|
@@ -5517,8 +5583,8 @@ class LabsImpl {
|
|
|
5517
5583
|
}
|
|
5518
5584
|
}
|
|
5519
5585
|
// Operation Specifications
|
|
5520
|
-
const serializer$
|
|
5521
|
-
const listBySubscriptionOperationSpec = {
|
|
5586
|
+
const serializer$n = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
5587
|
+
const listBySubscriptionOperationSpec$1 = {
|
|
5522
5588
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DevTestLab/labs",
|
|
5523
5589
|
httpMethod: "GET",
|
|
5524
5590
|
responses: {
|
|
@@ -5538,9 +5604,9 @@ const listBySubscriptionOperationSpec = {
|
|
|
5538
5604
|
],
|
|
5539
5605
|
urlParameters: [$host, subscriptionId],
|
|
5540
5606
|
headerParameters: [accept],
|
|
5541
|
-
serializer: serializer$
|
|
5607
|
+
serializer: serializer$n
|
|
5542
5608
|
};
|
|
5543
|
-
const listByResourceGroupOperationSpec = {
|
|
5609
|
+
const listByResourceGroupOperationSpec$1 = {
|
|
5544
5610
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs",
|
|
5545
5611
|
httpMethod: "GET",
|
|
5546
5612
|
responses: {
|
|
@@ -5564,9 +5630,9 @@ const listByResourceGroupOperationSpec = {
|
|
|
5564
5630
|
resourceGroupName
|
|
5565
5631
|
],
|
|
5566
5632
|
headerParameters: [accept],
|
|
5567
|
-
serializer: serializer$
|
|
5633
|
+
serializer: serializer$n
|
|
5568
5634
|
};
|
|
5569
|
-
const getOperationSpec = {
|
|
5635
|
+
const getOperationSpec$l = {
|
|
5570
5636
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}",
|
|
5571
5637
|
httpMethod: "GET",
|
|
5572
5638
|
responses: {
|
|
@@ -5585,9 +5651,9 @@ const getOperationSpec = {
|
|
|
5585
5651
|
name
|
|
5586
5652
|
],
|
|
5587
5653
|
headerParameters: [accept],
|
|
5588
|
-
serializer: serializer$
|
|
5654
|
+
serializer: serializer$n
|
|
5589
5655
|
};
|
|
5590
|
-
const createOrUpdateOperationSpec = {
|
|
5656
|
+
const createOrUpdateOperationSpec$i = {
|
|
5591
5657
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}",
|
|
5592
5658
|
httpMethod: "PUT",
|
|
5593
5659
|
responses: {
|
|
@@ -5617,9 +5683,9 @@ const createOrUpdateOperationSpec = {
|
|
|
5617
5683
|
],
|
|
5618
5684
|
headerParameters: [accept, contentType],
|
|
5619
5685
|
mediaType: "json",
|
|
5620
|
-
serializer: serializer$
|
|
5686
|
+
serializer: serializer$n
|
|
5621
5687
|
};
|
|
5622
|
-
const deleteOperationSpec = {
|
|
5688
|
+
const deleteOperationSpec$h = {
|
|
5623
5689
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}",
|
|
5624
5690
|
httpMethod: "DELETE",
|
|
5625
5691
|
responses: {
|
|
@@ -5639,9 +5705,9 @@ const deleteOperationSpec = {
|
|
|
5639
5705
|
name
|
|
5640
5706
|
],
|
|
5641
5707
|
headerParameters: [accept],
|
|
5642
|
-
serializer: serializer$
|
|
5708
|
+
serializer: serializer$n
|
|
5643
5709
|
};
|
|
5644
|
-
const updateOperationSpec = {
|
|
5710
|
+
const updateOperationSpec$g = {
|
|
5645
5711
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}",
|
|
5646
5712
|
httpMethod: "PATCH",
|
|
5647
5713
|
responses: {
|
|
@@ -5662,7 +5728,7 @@ const updateOperationSpec = {
|
|
|
5662
5728
|
],
|
|
5663
5729
|
headerParameters: [accept, contentType],
|
|
5664
5730
|
mediaType: "json",
|
|
5665
|
-
serializer: serializer$
|
|
5731
|
+
serializer: serializer$n
|
|
5666
5732
|
};
|
|
5667
5733
|
const claimAnyVmOperationSpec = {
|
|
5668
5734
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/claimAnyVm",
|
|
@@ -5684,7 +5750,7 @@ const claimAnyVmOperationSpec = {
|
|
|
5684
5750
|
name
|
|
5685
5751
|
],
|
|
5686
5752
|
headerParameters: [accept],
|
|
5687
|
-
serializer: serializer$
|
|
5753
|
+
serializer: serializer$n
|
|
5688
5754
|
};
|
|
5689
5755
|
const createEnvironmentOperationSpec = {
|
|
5690
5756
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/createEnvironment",
|
|
@@ -5708,7 +5774,7 @@ const createEnvironmentOperationSpec = {
|
|
|
5708
5774
|
],
|
|
5709
5775
|
headerParameters: [accept, contentType],
|
|
5710
5776
|
mediaType: "json",
|
|
5711
|
-
serializer: serializer$
|
|
5777
|
+
serializer: serializer$n
|
|
5712
5778
|
};
|
|
5713
5779
|
const exportResourceUsageOperationSpec = {
|
|
5714
5780
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/exportResourceUsage",
|
|
@@ -5732,7 +5798,7 @@ const exportResourceUsageOperationSpec = {
|
|
|
5732
5798
|
],
|
|
5733
5799
|
headerParameters: [accept, contentType],
|
|
5734
5800
|
mediaType: "json",
|
|
5735
|
-
serializer: serializer$
|
|
5801
|
+
serializer: serializer$n
|
|
5736
5802
|
};
|
|
5737
5803
|
const generateUploadUriOperationSpec = {
|
|
5738
5804
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/generateUploadUri",
|
|
@@ -5755,7 +5821,7 @@ const generateUploadUriOperationSpec = {
|
|
|
5755
5821
|
],
|
|
5756
5822
|
headerParameters: [accept, contentType],
|
|
5757
5823
|
mediaType: "json",
|
|
5758
|
-
serializer: serializer$
|
|
5824
|
+
serializer: serializer$n
|
|
5759
5825
|
};
|
|
5760
5826
|
const importVirtualMachineOperationSpec = {
|
|
5761
5827
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/importVirtualMachine",
|
|
@@ -5779,7 +5845,7 @@ const importVirtualMachineOperationSpec = {
|
|
|
5779
5845
|
],
|
|
5780
5846
|
headerParameters: [accept, contentType],
|
|
5781
5847
|
mediaType: "json",
|
|
5782
|
-
serializer: serializer$
|
|
5848
|
+
serializer: serializer$n
|
|
5783
5849
|
};
|
|
5784
5850
|
const listVhdsOperationSpec = {
|
|
5785
5851
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{name}/listVhds",
|
|
@@ -5800,9 +5866,9 @@ const listVhdsOperationSpec = {
|
|
|
5800
5866
|
name
|
|
5801
5867
|
],
|
|
5802
5868
|
headerParameters: [accept],
|
|
5803
|
-
serializer: serializer$
|
|
5869
|
+
serializer: serializer$n
|
|
5804
5870
|
};
|
|
5805
|
-
const listBySubscriptionNextOperationSpec = {
|
|
5871
|
+
const listBySubscriptionNextOperationSpec$1 = {
|
|
5806
5872
|
path: "{nextLink}",
|
|
5807
5873
|
httpMethod: "GET",
|
|
5808
5874
|
responses: {
|
|
@@ -5826,9 +5892,9 @@ const listBySubscriptionNextOperationSpec = {
|
|
|
5826
5892
|
subscriptionId
|
|
5827
5893
|
],
|
|
5828
5894
|
headerParameters: [accept],
|
|
5829
|
-
serializer: serializer$
|
|
5895
|
+
serializer: serializer$n
|
|
5830
5896
|
};
|
|
5831
|
-
const listByResourceGroupNextOperationSpec = {
|
|
5897
|
+
const listByResourceGroupNextOperationSpec$1 = {
|
|
5832
5898
|
path: "{nextLink}",
|
|
5833
5899
|
httpMethod: "GET",
|
|
5834
5900
|
responses: {
|
|
@@ -5853,7 +5919,7 @@ const listByResourceGroupNextOperationSpec = {
|
|
|
5853
5919
|
resourceGroupName
|
|
5854
5920
|
],
|
|
5855
5921
|
headerParameters: [accept],
|
|
5856
|
-
serializer: serializer$
|
|
5922
|
+
serializer: serializer$n
|
|
5857
5923
|
};
|
|
5858
5924
|
const listVhdsNextOperationSpec = {
|
|
5859
5925
|
path: "{nextLink}",
|
|
@@ -5875,7 +5941,7 @@ const listVhdsNextOperationSpec = {
|
|
|
5875
5941
|
name
|
|
5876
5942
|
],
|
|
5877
5943
|
headerParameters: [accept],
|
|
5878
|
-
serializer: serializer$
|
|
5944
|
+
serializer: serializer$n
|
|
5879
5945
|
};
|
|
5880
5946
|
|
|
5881
5947
|
/*
|
|
@@ -5901,12 +5967,12 @@ class OperationsImpl {
|
|
|
5901
5967
|
* @param options The options parameters.
|
|
5902
5968
|
*/
|
|
5903
5969
|
get(locationName, name, options) {
|
|
5904
|
-
return this.client.sendOperationRequest({ locationName, name, options }, getOperationSpec$
|
|
5970
|
+
return this.client.sendOperationRequest({ locationName, name, options }, getOperationSpec$k);
|
|
5905
5971
|
}
|
|
5906
5972
|
}
|
|
5907
5973
|
// Operation Specifications
|
|
5908
|
-
const serializer$
|
|
5909
|
-
const getOperationSpec$
|
|
5974
|
+
const serializer$m = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
5975
|
+
const getOperationSpec$k = {
|
|
5910
5976
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DevTestLab/locations/{locationName}/operations/{name}",
|
|
5911
5977
|
httpMethod: "GET",
|
|
5912
5978
|
responses: {
|
|
@@ -5928,7 +5994,7 @@ const getOperationSpec$1 = {
|
|
|
5928
5994
|
locationName
|
|
5929
5995
|
],
|
|
5930
5996
|
headerParameters: [accept],
|
|
5931
|
-
serializer: serializer$
|
|
5997
|
+
serializer: serializer$m
|
|
5932
5998
|
};
|
|
5933
5999
|
|
|
5934
6000
|
/*
|
|
@@ -6050,7 +6116,7 @@ class GlobalSchedulesImpl {
|
|
|
6050
6116
|
* @param options The options parameters.
|
|
6051
6117
|
*/
|
|
6052
6118
|
_listBySubscription(options) {
|
|
6053
|
-
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec
|
|
6119
|
+
return this.client.sendOperationRequest({ options }, listBySubscriptionOperationSpec);
|
|
6054
6120
|
}
|
|
6055
6121
|
/**
|
|
6056
6122
|
* List schedules in a resource group.
|
|
@@ -6058,7 +6124,7 @@ class GlobalSchedulesImpl {
|
|
|
6058
6124
|
* @param options The options parameters.
|
|
6059
6125
|
*/
|
|
6060
6126
|
_listByResourceGroup(resourceGroupName, options) {
|
|
6061
|
-
return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec
|
|
6127
|
+
return this.client.sendOperationRequest({ resourceGroupName, options }, listByResourceGroupOperationSpec);
|
|
6062
6128
|
}
|
|
6063
6129
|
/**
|
|
6064
6130
|
* Get schedule.
|
|
@@ -6067,7 +6133,7 @@ class GlobalSchedulesImpl {
|
|
|
6067
6133
|
* @param options The options parameters.
|
|
6068
6134
|
*/
|
|
6069
6135
|
get(resourceGroupName, name, options) {
|
|
6070
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, options }, getOperationSpec$
|
|
6136
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, options }, getOperationSpec$j);
|
|
6071
6137
|
}
|
|
6072
6138
|
/**
|
|
6073
6139
|
* Create or replace an existing schedule.
|
|
@@ -6077,7 +6143,7 @@ class GlobalSchedulesImpl {
|
|
|
6077
6143
|
* @param options The options parameters.
|
|
6078
6144
|
*/
|
|
6079
6145
|
createOrUpdate(resourceGroupName, name, schedule, options) {
|
|
6080
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, schedule, options }, createOrUpdateOperationSpec$
|
|
6146
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, schedule, options }, createOrUpdateOperationSpec$h);
|
|
6081
6147
|
}
|
|
6082
6148
|
/**
|
|
6083
6149
|
* Delete schedule.
|
|
@@ -6086,7 +6152,7 @@ class GlobalSchedulesImpl {
|
|
|
6086
6152
|
* @param options The options parameters.
|
|
6087
6153
|
*/
|
|
6088
6154
|
delete(resourceGroupName, name, options) {
|
|
6089
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, options }, deleteOperationSpec$
|
|
6155
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, options }, deleteOperationSpec$g);
|
|
6090
6156
|
}
|
|
6091
6157
|
/**
|
|
6092
6158
|
* Allows modifying tags of schedules. All other properties will be ignored.
|
|
@@ -6096,7 +6162,7 @@ class GlobalSchedulesImpl {
|
|
|
6096
6162
|
* @param options The options parameters.
|
|
6097
6163
|
*/
|
|
6098
6164
|
update(resourceGroupName, name, schedule, options) {
|
|
6099
|
-
return this.client.sendOperationRequest({ resourceGroupName, name, schedule, options }, updateOperationSpec$
|
|
6165
|
+
return this.client.sendOperationRequest({ resourceGroupName, name, schedule, options }, updateOperationSpec$f);
|
|
6100
6166
|
}
|
|
6101
6167
|
/**
|
|
6102
6168
|
* Execute a schedule. This operation can take a while to complete.
|
|
@@ -6128,7 +6194,7 @@ class GlobalSchedulesImpl {
|
|
|
6128
6194
|
}
|
|
6129
6195
|
};
|
|
6130
6196
|
});
|
|
6131
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, name, options }, executeOperationSpec);
|
|
6197
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, name, options }, executeOperationSpec$3);
|
|
6132
6198
|
return new coreLro.LroEngine(lro, {
|
|
6133
6199
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
6134
6200
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -6204,7 +6270,7 @@ class GlobalSchedulesImpl {
|
|
|
6204
6270
|
* @param options The options parameters.
|
|
6205
6271
|
*/
|
|
6206
6272
|
_listBySubscriptionNext(nextLink, options) {
|
|
6207
|
-
return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec
|
|
6273
|
+
return this.client.sendOperationRequest({ nextLink, options }, listBySubscriptionNextOperationSpec);
|
|
6208
6274
|
}
|
|
6209
6275
|
/**
|
|
6210
6276
|
* ListByResourceGroupNext
|
|
@@ -6213,12 +6279,12 @@ class GlobalSchedulesImpl {
|
|
|
6213
6279
|
* @param options The options parameters.
|
|
6214
6280
|
*/
|
|
6215
6281
|
_listByResourceGroupNext(resourceGroupName, nextLink, options) {
|
|
6216
|
-
return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec
|
|
6282
|
+
return this.client.sendOperationRequest({ resourceGroupName, nextLink, options }, listByResourceGroupNextOperationSpec);
|
|
6217
6283
|
}
|
|
6218
6284
|
}
|
|
6219
6285
|
// Operation Specifications
|
|
6220
|
-
const serializer$
|
|
6221
|
-
const listBySubscriptionOperationSpec
|
|
6286
|
+
const serializer$l = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6287
|
+
const listBySubscriptionOperationSpec = {
|
|
6222
6288
|
path: "/subscriptions/{subscriptionId}/providers/Microsoft.DevTestLab/schedules",
|
|
6223
6289
|
httpMethod: "GET",
|
|
6224
6290
|
responses: {
|
|
@@ -6238,9 +6304,9 @@ const listBySubscriptionOperationSpec$1 = {
|
|
|
6238
6304
|
],
|
|
6239
6305
|
urlParameters: [$host, subscriptionId],
|
|
6240
6306
|
headerParameters: [accept],
|
|
6241
|
-
serializer: serializer$
|
|
6307
|
+
serializer: serializer$l
|
|
6242
6308
|
};
|
|
6243
|
-
const listByResourceGroupOperationSpec
|
|
6309
|
+
const listByResourceGroupOperationSpec = {
|
|
6244
6310
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules",
|
|
6245
6311
|
httpMethod: "GET",
|
|
6246
6312
|
responses: {
|
|
@@ -6264,9 +6330,9 @@ const listByResourceGroupOperationSpec$1 = {
|
|
|
6264
6330
|
resourceGroupName
|
|
6265
6331
|
],
|
|
6266
6332
|
headerParameters: [accept],
|
|
6267
|
-
serializer: serializer$
|
|
6333
|
+
serializer: serializer$l
|
|
6268
6334
|
};
|
|
6269
|
-
const getOperationSpec$
|
|
6335
|
+
const getOperationSpec$j = {
|
|
6270
6336
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}",
|
|
6271
6337
|
httpMethod: "GET",
|
|
6272
6338
|
responses: {
|
|
@@ -6285,9 +6351,9 @@ const getOperationSpec$2 = {
|
|
|
6285
6351
|
name
|
|
6286
6352
|
],
|
|
6287
6353
|
headerParameters: [accept],
|
|
6288
|
-
serializer: serializer$
|
|
6354
|
+
serializer: serializer$l
|
|
6289
6355
|
};
|
|
6290
|
-
const createOrUpdateOperationSpec$
|
|
6356
|
+
const createOrUpdateOperationSpec$h = {
|
|
6291
6357
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}",
|
|
6292
6358
|
httpMethod: "PUT",
|
|
6293
6359
|
responses: {
|
|
@@ -6311,9 +6377,9 @@ const createOrUpdateOperationSpec$1 = {
|
|
|
6311
6377
|
],
|
|
6312
6378
|
headerParameters: [accept, contentType],
|
|
6313
6379
|
mediaType: "json",
|
|
6314
|
-
serializer: serializer$
|
|
6380
|
+
serializer: serializer$l
|
|
6315
6381
|
};
|
|
6316
|
-
const deleteOperationSpec$
|
|
6382
|
+
const deleteOperationSpec$g = {
|
|
6317
6383
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}",
|
|
6318
6384
|
httpMethod: "DELETE",
|
|
6319
6385
|
responses: {
|
|
@@ -6331,9 +6397,9 @@ const deleteOperationSpec$1 = {
|
|
|
6331
6397
|
name
|
|
6332
6398
|
],
|
|
6333
6399
|
headerParameters: [accept],
|
|
6334
|
-
serializer: serializer$
|
|
6400
|
+
serializer: serializer$l
|
|
6335
6401
|
};
|
|
6336
|
-
const updateOperationSpec$
|
|
6402
|
+
const updateOperationSpec$f = {
|
|
6337
6403
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}",
|
|
6338
6404
|
httpMethod: "PATCH",
|
|
6339
6405
|
responses: {
|
|
@@ -6354,9 +6420,9 @@ const updateOperationSpec$1 = {
|
|
|
6354
6420
|
],
|
|
6355
6421
|
headerParameters: [accept, contentType],
|
|
6356
6422
|
mediaType: "json",
|
|
6357
|
-
serializer: serializer$
|
|
6423
|
+
serializer: serializer$l
|
|
6358
6424
|
};
|
|
6359
|
-
const executeOperationSpec = {
|
|
6425
|
+
const executeOperationSpec$3 = {
|
|
6360
6426
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}/execute",
|
|
6361
6427
|
httpMethod: "POST",
|
|
6362
6428
|
responses: {
|
|
@@ -6376,7 +6442,7 @@ const executeOperationSpec = {
|
|
|
6376
6442
|
name
|
|
6377
6443
|
],
|
|
6378
6444
|
headerParameters: [accept],
|
|
6379
|
-
serializer: serializer$
|
|
6445
|
+
serializer: serializer$l
|
|
6380
6446
|
};
|
|
6381
6447
|
const retargetOperationSpec = {
|
|
6382
6448
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/schedules/{name}/retarget",
|
|
@@ -6400,9 +6466,9 @@ const retargetOperationSpec = {
|
|
|
6400
6466
|
],
|
|
6401
6467
|
headerParameters: [accept, contentType],
|
|
6402
6468
|
mediaType: "json",
|
|
6403
|
-
serializer: serializer$
|
|
6469
|
+
serializer: serializer$l
|
|
6404
6470
|
};
|
|
6405
|
-
const listBySubscriptionNextOperationSpec
|
|
6471
|
+
const listBySubscriptionNextOperationSpec = {
|
|
6406
6472
|
path: "{nextLink}",
|
|
6407
6473
|
httpMethod: "GET",
|
|
6408
6474
|
responses: {
|
|
@@ -6426,9 +6492,9 @@ const listBySubscriptionNextOperationSpec$1 = {
|
|
|
6426
6492
|
subscriptionId
|
|
6427
6493
|
],
|
|
6428
6494
|
headerParameters: [accept],
|
|
6429
|
-
serializer: serializer$
|
|
6495
|
+
serializer: serializer$l
|
|
6430
6496
|
};
|
|
6431
|
-
const listByResourceGroupNextOperationSpec
|
|
6497
|
+
const listByResourceGroupNextOperationSpec = {
|
|
6432
6498
|
path: "{nextLink}",
|
|
6433
6499
|
httpMethod: "GET",
|
|
6434
6500
|
responses: {
|
|
@@ -6453,7 +6519,7 @@ const listByResourceGroupNextOperationSpec$1 = {
|
|
|
6453
6519
|
resourceGroupName
|
|
6454
6520
|
],
|
|
6455
6521
|
headerParameters: [accept],
|
|
6456
|
-
serializer: serializer$
|
|
6522
|
+
serializer: serializer$l
|
|
6457
6523
|
};
|
|
6458
6524
|
|
|
6459
6525
|
/*
|
|
@@ -6530,7 +6596,7 @@ class ArtifactSourcesImpl {
|
|
|
6530
6596
|
* @param options The options parameters.
|
|
6531
6597
|
*/
|
|
6532
6598
|
_list(resourceGroupName, labName, options) {
|
|
6533
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
6599
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$h);
|
|
6534
6600
|
}
|
|
6535
6601
|
/**
|
|
6536
6602
|
* Get artifact source.
|
|
@@ -6540,7 +6606,7 @@ class ArtifactSourcesImpl {
|
|
|
6540
6606
|
* @param options The options parameters.
|
|
6541
6607
|
*/
|
|
6542
6608
|
get(resourceGroupName, labName, name, options) {
|
|
6543
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
6609
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$i);
|
|
6544
6610
|
}
|
|
6545
6611
|
/**
|
|
6546
6612
|
* Create or replace an existing artifact source.
|
|
@@ -6551,7 +6617,7 @@ class ArtifactSourcesImpl {
|
|
|
6551
6617
|
* @param options The options parameters.
|
|
6552
6618
|
*/
|
|
6553
6619
|
createOrUpdate(resourceGroupName, labName, name, artifactSource, options) {
|
|
6554
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, artifactSource, options }, createOrUpdateOperationSpec$
|
|
6620
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, artifactSource, options }, createOrUpdateOperationSpec$g);
|
|
6555
6621
|
}
|
|
6556
6622
|
/**
|
|
6557
6623
|
* Delete artifact source.
|
|
@@ -6561,7 +6627,7 @@ class ArtifactSourcesImpl {
|
|
|
6561
6627
|
* @param options The options parameters.
|
|
6562
6628
|
*/
|
|
6563
6629
|
delete(resourceGroupName, labName, name, options) {
|
|
6564
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
6630
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$f);
|
|
6565
6631
|
}
|
|
6566
6632
|
/**
|
|
6567
6633
|
* Allows modifying tags of artifact sources. All other properties will be ignored.
|
|
@@ -6572,7 +6638,7 @@ class ArtifactSourcesImpl {
|
|
|
6572
6638
|
* @param options The options parameters.
|
|
6573
6639
|
*/
|
|
6574
6640
|
update(resourceGroupName, labName, name, artifactSource, options) {
|
|
6575
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, artifactSource, options }, updateOperationSpec$
|
|
6641
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, artifactSource, options }, updateOperationSpec$e);
|
|
6576
6642
|
}
|
|
6577
6643
|
/**
|
|
6578
6644
|
* ListNext
|
|
@@ -6582,12 +6648,12 @@ class ArtifactSourcesImpl {
|
|
|
6582
6648
|
* @param options The options parameters.
|
|
6583
6649
|
*/
|
|
6584
6650
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
6585
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
6651
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$h);
|
|
6586
6652
|
}
|
|
6587
6653
|
}
|
|
6588
6654
|
// Operation Specifications
|
|
6589
|
-
const serializer$
|
|
6590
|
-
const listOperationSpec$
|
|
6655
|
+
const serializer$k = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6656
|
+
const listOperationSpec$h = {
|
|
6591
6657
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources",
|
|
6592
6658
|
httpMethod: "GET",
|
|
6593
6659
|
responses: {
|
|
@@ -6612,9 +6678,9 @@ const listOperationSpec$1 = {
|
|
|
6612
6678
|
labName
|
|
6613
6679
|
],
|
|
6614
6680
|
headerParameters: [accept],
|
|
6615
|
-
serializer: serializer$
|
|
6681
|
+
serializer: serializer$k
|
|
6616
6682
|
};
|
|
6617
|
-
const getOperationSpec$
|
|
6683
|
+
const getOperationSpec$i = {
|
|
6618
6684
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}",
|
|
6619
6685
|
httpMethod: "GET",
|
|
6620
6686
|
responses: {
|
|
@@ -6634,9 +6700,9 @@ const getOperationSpec$3 = {
|
|
|
6634
6700
|
labName
|
|
6635
6701
|
],
|
|
6636
6702
|
headerParameters: [accept],
|
|
6637
|
-
serializer: serializer$
|
|
6703
|
+
serializer: serializer$k
|
|
6638
6704
|
};
|
|
6639
|
-
const createOrUpdateOperationSpec$
|
|
6705
|
+
const createOrUpdateOperationSpec$g = {
|
|
6640
6706
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}",
|
|
6641
6707
|
httpMethod: "PUT",
|
|
6642
6708
|
responses: {
|
|
@@ -6661,9 +6727,9 @@ const createOrUpdateOperationSpec$2 = {
|
|
|
6661
6727
|
],
|
|
6662
6728
|
headerParameters: [accept, contentType],
|
|
6663
6729
|
mediaType: "json",
|
|
6664
|
-
serializer: serializer$
|
|
6730
|
+
serializer: serializer$k
|
|
6665
6731
|
};
|
|
6666
|
-
const deleteOperationSpec$
|
|
6732
|
+
const deleteOperationSpec$f = {
|
|
6667
6733
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}",
|
|
6668
6734
|
httpMethod: "DELETE",
|
|
6669
6735
|
responses: {
|
|
@@ -6682,9 +6748,9 @@ const deleteOperationSpec$2 = {
|
|
|
6682
6748
|
labName
|
|
6683
6749
|
],
|
|
6684
6750
|
headerParameters: [accept],
|
|
6685
|
-
serializer: serializer$
|
|
6751
|
+
serializer: serializer$k
|
|
6686
6752
|
};
|
|
6687
|
-
const updateOperationSpec$
|
|
6753
|
+
const updateOperationSpec$e = {
|
|
6688
6754
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{name}",
|
|
6689
6755
|
httpMethod: "PATCH",
|
|
6690
6756
|
responses: {
|
|
@@ -6706,9 +6772,9 @@ const updateOperationSpec$2 = {
|
|
|
6706
6772
|
],
|
|
6707
6773
|
headerParameters: [accept, contentType],
|
|
6708
6774
|
mediaType: "json",
|
|
6709
|
-
serializer: serializer$
|
|
6775
|
+
serializer: serializer$k
|
|
6710
6776
|
};
|
|
6711
|
-
const listNextOperationSpec$
|
|
6777
|
+
const listNextOperationSpec$h = {
|
|
6712
6778
|
path: "{nextLink}",
|
|
6713
6779
|
httpMethod: "GET",
|
|
6714
6780
|
responses: {
|
|
@@ -6734,7 +6800,7 @@ const listNextOperationSpec$1 = {
|
|
|
6734
6800
|
labName
|
|
6735
6801
|
],
|
|
6736
6802
|
headerParameters: [accept],
|
|
6737
|
-
serializer: serializer$
|
|
6803
|
+
serializer: serializer$k
|
|
6738
6804
|
};
|
|
6739
6805
|
|
|
6740
6806
|
/*
|
|
@@ -6813,7 +6879,7 @@ class ArmTemplatesImpl {
|
|
|
6813
6879
|
* @param options The options parameters.
|
|
6814
6880
|
*/
|
|
6815
6881
|
_list(resourceGroupName, labName, artifactSourceName, options) {
|
|
6816
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, options }, listOperationSpec$
|
|
6882
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, options }, listOperationSpec$g);
|
|
6817
6883
|
}
|
|
6818
6884
|
/**
|
|
6819
6885
|
* Get azure resource manager template.
|
|
@@ -6824,7 +6890,7 @@ class ArmTemplatesImpl {
|
|
|
6824
6890
|
* @param options The options parameters.
|
|
6825
6891
|
*/
|
|
6826
6892
|
get(resourceGroupName, labName, artifactSourceName, name, options) {
|
|
6827
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, name, options }, getOperationSpec$
|
|
6893
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, name, options }, getOperationSpec$h);
|
|
6828
6894
|
}
|
|
6829
6895
|
/**
|
|
6830
6896
|
* ListNext
|
|
@@ -6835,12 +6901,12 @@ class ArmTemplatesImpl {
|
|
|
6835
6901
|
* @param options The options parameters.
|
|
6836
6902
|
*/
|
|
6837
6903
|
_listNext(resourceGroupName, labName, artifactSourceName, nextLink, options) {
|
|
6838
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, nextLink, options }, listNextOperationSpec$
|
|
6904
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, nextLink, options }, listNextOperationSpec$g);
|
|
6839
6905
|
}
|
|
6840
6906
|
}
|
|
6841
6907
|
// Operation Specifications
|
|
6842
|
-
const serializer$
|
|
6843
|
-
const listOperationSpec$
|
|
6908
|
+
const serializer$j = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
6909
|
+
const listOperationSpec$g = {
|
|
6844
6910
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/armtemplates",
|
|
6845
6911
|
httpMethod: "GET",
|
|
6846
6912
|
responses: {
|
|
@@ -6866,9 +6932,9 @@ const listOperationSpec$2 = {
|
|
|
6866
6932
|
artifactSourceName
|
|
6867
6933
|
],
|
|
6868
6934
|
headerParameters: [accept],
|
|
6869
|
-
serializer: serializer$
|
|
6935
|
+
serializer: serializer$j
|
|
6870
6936
|
};
|
|
6871
|
-
const getOperationSpec$
|
|
6937
|
+
const getOperationSpec$h = {
|
|
6872
6938
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/armtemplates/{name}",
|
|
6873
6939
|
httpMethod: "GET",
|
|
6874
6940
|
responses: {
|
|
@@ -6889,9 +6955,9 @@ const getOperationSpec$4 = {
|
|
|
6889
6955
|
artifactSourceName
|
|
6890
6956
|
],
|
|
6891
6957
|
headerParameters: [accept],
|
|
6892
|
-
serializer: serializer$
|
|
6958
|
+
serializer: serializer$j
|
|
6893
6959
|
};
|
|
6894
|
-
const listNextOperationSpec$
|
|
6960
|
+
const listNextOperationSpec$g = {
|
|
6895
6961
|
path: "{nextLink}",
|
|
6896
6962
|
httpMethod: "GET",
|
|
6897
6963
|
responses: {
|
|
@@ -6918,7 +6984,7 @@ const listNextOperationSpec$2 = {
|
|
|
6918
6984
|
artifactSourceName
|
|
6919
6985
|
],
|
|
6920
6986
|
headerParameters: [accept],
|
|
6921
|
-
serializer: serializer$
|
|
6987
|
+
serializer: serializer$j
|
|
6922
6988
|
};
|
|
6923
6989
|
|
|
6924
6990
|
/*
|
|
@@ -6997,7 +7063,7 @@ class ArtifactsImpl {
|
|
|
6997
7063
|
* @param options The options parameters.
|
|
6998
7064
|
*/
|
|
6999
7065
|
_list(resourceGroupName, labName, artifactSourceName, options) {
|
|
7000
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, options }, listOperationSpec$
|
|
7066
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, options }, listOperationSpec$f);
|
|
7001
7067
|
}
|
|
7002
7068
|
/**
|
|
7003
7069
|
* Get artifact.
|
|
@@ -7008,7 +7074,7 @@ class ArtifactsImpl {
|
|
|
7008
7074
|
* @param options The options parameters.
|
|
7009
7075
|
*/
|
|
7010
7076
|
get(resourceGroupName, labName, artifactSourceName, name, options) {
|
|
7011
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, name, options }, getOperationSpec$
|
|
7077
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, name, options }, getOperationSpec$g);
|
|
7012
7078
|
}
|
|
7013
7079
|
/**
|
|
7014
7080
|
* Generates an ARM template for the given artifact, uploads the required files to a storage account,
|
|
@@ -7039,12 +7105,12 @@ class ArtifactsImpl {
|
|
|
7039
7105
|
* @param options The options parameters.
|
|
7040
7106
|
*/
|
|
7041
7107
|
_listNext(resourceGroupName, labName, artifactSourceName, nextLink, options) {
|
|
7042
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, nextLink, options }, listNextOperationSpec$
|
|
7108
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, artifactSourceName, nextLink, options }, listNextOperationSpec$f);
|
|
7043
7109
|
}
|
|
7044
7110
|
}
|
|
7045
7111
|
// Operation Specifications
|
|
7046
|
-
const serializer$
|
|
7047
|
-
const listOperationSpec$
|
|
7112
|
+
const serializer$i = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7113
|
+
const listOperationSpec$f = {
|
|
7048
7114
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/artifacts",
|
|
7049
7115
|
httpMethod: "GET",
|
|
7050
7116
|
responses: {
|
|
@@ -7070,9 +7136,9 @@ const listOperationSpec$3 = {
|
|
|
7070
7136
|
artifactSourceName
|
|
7071
7137
|
],
|
|
7072
7138
|
headerParameters: [accept],
|
|
7073
|
-
serializer: serializer$
|
|
7139
|
+
serializer: serializer$i
|
|
7074
7140
|
};
|
|
7075
|
-
const getOperationSpec$
|
|
7141
|
+
const getOperationSpec$g = {
|
|
7076
7142
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/artifacts/{name}",
|
|
7077
7143
|
httpMethod: "GET",
|
|
7078
7144
|
responses: {
|
|
@@ -7093,7 +7159,7 @@ const getOperationSpec$5 = {
|
|
|
7093
7159
|
artifactSourceName
|
|
7094
7160
|
],
|
|
7095
7161
|
headerParameters: [accept],
|
|
7096
|
-
serializer: serializer$
|
|
7162
|
+
serializer: serializer$i
|
|
7097
7163
|
};
|
|
7098
7164
|
const generateArmTemplateOperationSpec = {
|
|
7099
7165
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/artifactsources/{artifactSourceName}/artifacts/{name}/generateArmTemplate",
|
|
@@ -7118,9 +7184,9 @@ const generateArmTemplateOperationSpec = {
|
|
|
7118
7184
|
],
|
|
7119
7185
|
headerParameters: [accept, contentType],
|
|
7120
7186
|
mediaType: "json",
|
|
7121
|
-
serializer: serializer$
|
|
7187
|
+
serializer: serializer$i
|
|
7122
7188
|
};
|
|
7123
|
-
const listNextOperationSpec$
|
|
7189
|
+
const listNextOperationSpec$f = {
|
|
7124
7190
|
path: "{nextLink}",
|
|
7125
7191
|
httpMethod: "GET",
|
|
7126
7192
|
responses: {
|
|
@@ -7147,7 +7213,7 @@ const listNextOperationSpec$3 = {
|
|
|
7147
7213
|
artifactSourceName
|
|
7148
7214
|
],
|
|
7149
7215
|
headerParameters: [accept],
|
|
7150
|
-
serializer: serializer$
|
|
7216
|
+
serializer: serializer$i
|
|
7151
7217
|
};
|
|
7152
7218
|
|
|
7153
7219
|
/*
|
|
@@ -7174,7 +7240,7 @@ class CostsImpl {
|
|
|
7174
7240
|
* @param options The options parameters.
|
|
7175
7241
|
*/
|
|
7176
7242
|
get(resourceGroupName, labName, name, options) {
|
|
7177
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
7243
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$f);
|
|
7178
7244
|
}
|
|
7179
7245
|
/**
|
|
7180
7246
|
* Create or replace an existing cost.
|
|
@@ -7185,12 +7251,12 @@ class CostsImpl {
|
|
|
7185
7251
|
* @param options The options parameters.
|
|
7186
7252
|
*/
|
|
7187
7253
|
createOrUpdate(resourceGroupName, labName, name, labCost, options) {
|
|
7188
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, labCost, options }, createOrUpdateOperationSpec$
|
|
7254
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, labCost, options }, createOrUpdateOperationSpec$f);
|
|
7189
7255
|
}
|
|
7190
7256
|
}
|
|
7191
7257
|
// Operation Specifications
|
|
7192
|
-
const serializer$
|
|
7193
|
-
const getOperationSpec$
|
|
7258
|
+
const serializer$h = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7259
|
+
const getOperationSpec$f = {
|
|
7194
7260
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/costs/{name}",
|
|
7195
7261
|
httpMethod: "GET",
|
|
7196
7262
|
responses: {
|
|
@@ -7210,9 +7276,9 @@ const getOperationSpec$6 = {
|
|
|
7210
7276
|
labName
|
|
7211
7277
|
],
|
|
7212
7278
|
headerParameters: [accept],
|
|
7213
|
-
serializer: serializer$
|
|
7279
|
+
serializer: serializer$h
|
|
7214
7280
|
};
|
|
7215
|
-
const createOrUpdateOperationSpec$
|
|
7281
|
+
const createOrUpdateOperationSpec$f = {
|
|
7216
7282
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/costs/{name}",
|
|
7217
7283
|
httpMethod: "PUT",
|
|
7218
7284
|
responses: {
|
|
@@ -7237,7 +7303,7 @@ const createOrUpdateOperationSpec$3 = {
|
|
|
7237
7303
|
],
|
|
7238
7304
|
headerParameters: [accept, contentType],
|
|
7239
7305
|
mediaType: "json",
|
|
7240
|
-
serializer: serializer$
|
|
7306
|
+
serializer: serializer$h
|
|
7241
7307
|
};
|
|
7242
7308
|
|
|
7243
7309
|
/*
|
|
@@ -7314,7 +7380,7 @@ class CustomImagesImpl {
|
|
|
7314
7380
|
* @param options The options parameters.
|
|
7315
7381
|
*/
|
|
7316
7382
|
_list(resourceGroupName, labName, options) {
|
|
7317
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
7383
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$e);
|
|
7318
7384
|
}
|
|
7319
7385
|
/**
|
|
7320
7386
|
* Get custom image.
|
|
@@ -7324,7 +7390,7 @@ class CustomImagesImpl {
|
|
|
7324
7390
|
* @param options The options parameters.
|
|
7325
7391
|
*/
|
|
7326
7392
|
get(resourceGroupName, labName, name, options) {
|
|
7327
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
7393
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$e);
|
|
7328
7394
|
}
|
|
7329
7395
|
/**
|
|
7330
7396
|
* Create or replace an existing custom image. This operation can take a while to complete.
|
|
@@ -7358,7 +7424,7 @@ class CustomImagesImpl {
|
|
|
7358
7424
|
}
|
|
7359
7425
|
};
|
|
7360
7426
|
});
|
|
7361
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, customImage, options }, createOrUpdateOperationSpec$
|
|
7427
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, customImage, options }, createOrUpdateOperationSpec$e);
|
|
7362
7428
|
return new coreLro.LroEngine(lro, {
|
|
7363
7429
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
7364
7430
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -7410,7 +7476,7 @@ class CustomImagesImpl {
|
|
|
7410
7476
|
}
|
|
7411
7477
|
};
|
|
7412
7478
|
});
|
|
7413
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
7479
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$e);
|
|
7414
7480
|
return new coreLro.LroEngine(lro, {
|
|
7415
7481
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
7416
7482
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -7439,7 +7505,7 @@ class CustomImagesImpl {
|
|
|
7439
7505
|
* @param options The options parameters.
|
|
7440
7506
|
*/
|
|
7441
7507
|
update(resourceGroupName, labName, name, customImage, options) {
|
|
7442
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, customImage, options }, updateOperationSpec$
|
|
7508
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, customImage, options }, updateOperationSpec$d);
|
|
7443
7509
|
}
|
|
7444
7510
|
/**
|
|
7445
7511
|
* ListNext
|
|
@@ -7449,12 +7515,12 @@ class CustomImagesImpl {
|
|
|
7449
7515
|
* @param options The options parameters.
|
|
7450
7516
|
*/
|
|
7451
7517
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
7452
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
7518
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$e);
|
|
7453
7519
|
}
|
|
7454
7520
|
}
|
|
7455
7521
|
// Operation Specifications
|
|
7456
|
-
const serializer$
|
|
7457
|
-
const listOperationSpec$
|
|
7522
|
+
const serializer$g = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7523
|
+
const listOperationSpec$e = {
|
|
7458
7524
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/customimages",
|
|
7459
7525
|
httpMethod: "GET",
|
|
7460
7526
|
responses: {
|
|
@@ -7479,9 +7545,9 @@ const listOperationSpec$4 = {
|
|
|
7479
7545
|
labName
|
|
7480
7546
|
],
|
|
7481
7547
|
headerParameters: [accept],
|
|
7482
|
-
serializer: serializer$
|
|
7548
|
+
serializer: serializer$g
|
|
7483
7549
|
};
|
|
7484
|
-
const getOperationSpec$
|
|
7550
|
+
const getOperationSpec$e = {
|
|
7485
7551
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/customimages/{name}",
|
|
7486
7552
|
httpMethod: "GET",
|
|
7487
7553
|
responses: {
|
|
@@ -7501,9 +7567,9 @@ const getOperationSpec$7 = {
|
|
|
7501
7567
|
labName
|
|
7502
7568
|
],
|
|
7503
7569
|
headerParameters: [accept],
|
|
7504
|
-
serializer: serializer$
|
|
7570
|
+
serializer: serializer$g
|
|
7505
7571
|
};
|
|
7506
|
-
const createOrUpdateOperationSpec$
|
|
7572
|
+
const createOrUpdateOperationSpec$e = {
|
|
7507
7573
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/customimages/{name}",
|
|
7508
7574
|
httpMethod: "PUT",
|
|
7509
7575
|
responses: {
|
|
@@ -7534,9 +7600,9 @@ const createOrUpdateOperationSpec$4 = {
|
|
|
7534
7600
|
],
|
|
7535
7601
|
headerParameters: [accept, contentType],
|
|
7536
7602
|
mediaType: "json",
|
|
7537
|
-
serializer: serializer$
|
|
7603
|
+
serializer: serializer$g
|
|
7538
7604
|
};
|
|
7539
|
-
const deleteOperationSpec$
|
|
7605
|
+
const deleteOperationSpec$e = {
|
|
7540
7606
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/customimages/{name}",
|
|
7541
7607
|
httpMethod: "DELETE",
|
|
7542
7608
|
responses: {
|
|
@@ -7557,9 +7623,9 @@ const deleteOperationSpec$3 = {
|
|
|
7557
7623
|
labName
|
|
7558
7624
|
],
|
|
7559
7625
|
headerParameters: [accept],
|
|
7560
|
-
serializer: serializer$
|
|
7626
|
+
serializer: serializer$g
|
|
7561
7627
|
};
|
|
7562
|
-
const updateOperationSpec$
|
|
7628
|
+
const updateOperationSpec$d = {
|
|
7563
7629
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/customimages/{name}",
|
|
7564
7630
|
httpMethod: "PATCH",
|
|
7565
7631
|
responses: {
|
|
@@ -7581,9 +7647,9 @@ const updateOperationSpec$3 = {
|
|
|
7581
7647
|
],
|
|
7582
7648
|
headerParameters: [accept, contentType],
|
|
7583
7649
|
mediaType: "json",
|
|
7584
|
-
serializer: serializer$
|
|
7650
|
+
serializer: serializer$g
|
|
7585
7651
|
};
|
|
7586
|
-
const listNextOperationSpec$
|
|
7652
|
+
const listNextOperationSpec$e = {
|
|
7587
7653
|
path: "{nextLink}",
|
|
7588
7654
|
httpMethod: "GET",
|
|
7589
7655
|
responses: {
|
|
@@ -7609,7 +7675,7 @@ const listNextOperationSpec$4 = {
|
|
|
7609
7675
|
labName
|
|
7610
7676
|
],
|
|
7611
7677
|
headerParameters: [accept],
|
|
7612
|
-
serializer: serializer$
|
|
7678
|
+
serializer: serializer$g
|
|
7613
7679
|
};
|
|
7614
7680
|
|
|
7615
7681
|
/*
|
|
@@ -7686,7 +7752,7 @@ class FormulasImpl {
|
|
|
7686
7752
|
* @param options The options parameters.
|
|
7687
7753
|
*/
|
|
7688
7754
|
_list(resourceGroupName, labName, options) {
|
|
7689
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
7755
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$d);
|
|
7690
7756
|
}
|
|
7691
7757
|
/**
|
|
7692
7758
|
* Get formula.
|
|
@@ -7696,7 +7762,7 @@ class FormulasImpl {
|
|
|
7696
7762
|
* @param options The options parameters.
|
|
7697
7763
|
*/
|
|
7698
7764
|
get(resourceGroupName, labName, name, options) {
|
|
7699
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
7765
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$d);
|
|
7700
7766
|
}
|
|
7701
7767
|
/**
|
|
7702
7768
|
* Create or replace an existing formula. This operation can take a while to complete.
|
|
@@ -7730,7 +7796,7 @@ class FormulasImpl {
|
|
|
7730
7796
|
}
|
|
7731
7797
|
};
|
|
7732
7798
|
});
|
|
7733
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, formula, options }, createOrUpdateOperationSpec$
|
|
7799
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, formula, options }, createOrUpdateOperationSpec$d);
|
|
7734
7800
|
return new coreLro.LroEngine(lro, {
|
|
7735
7801
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
7736
7802
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -7759,7 +7825,7 @@ class FormulasImpl {
|
|
|
7759
7825
|
* @param options The options parameters.
|
|
7760
7826
|
*/
|
|
7761
7827
|
delete(resourceGroupName, labName, name, options) {
|
|
7762
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
7828
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$d);
|
|
7763
7829
|
}
|
|
7764
7830
|
/**
|
|
7765
7831
|
* Allows modifying tags of formulas. All other properties will be ignored.
|
|
@@ -7770,7 +7836,7 @@ class FormulasImpl {
|
|
|
7770
7836
|
* @param options The options parameters.
|
|
7771
7837
|
*/
|
|
7772
7838
|
update(resourceGroupName, labName, name, formula, options) {
|
|
7773
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, formula, options }, updateOperationSpec$
|
|
7839
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, formula, options }, updateOperationSpec$c);
|
|
7774
7840
|
}
|
|
7775
7841
|
/**
|
|
7776
7842
|
* ListNext
|
|
@@ -7780,12 +7846,12 @@ class FormulasImpl {
|
|
|
7780
7846
|
* @param options The options parameters.
|
|
7781
7847
|
*/
|
|
7782
7848
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
7783
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
7849
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$d);
|
|
7784
7850
|
}
|
|
7785
7851
|
}
|
|
7786
7852
|
// Operation Specifications
|
|
7787
|
-
const serializer$
|
|
7788
|
-
const listOperationSpec$
|
|
7853
|
+
const serializer$f = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
7854
|
+
const listOperationSpec$d = {
|
|
7789
7855
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/formulas",
|
|
7790
7856
|
httpMethod: "GET",
|
|
7791
7857
|
responses: {
|
|
@@ -7810,9 +7876,9 @@ const listOperationSpec$5 = {
|
|
|
7810
7876
|
labName
|
|
7811
7877
|
],
|
|
7812
7878
|
headerParameters: [accept],
|
|
7813
|
-
serializer: serializer$
|
|
7879
|
+
serializer: serializer$f
|
|
7814
7880
|
};
|
|
7815
|
-
const getOperationSpec$
|
|
7881
|
+
const getOperationSpec$d = {
|
|
7816
7882
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/formulas/{name}",
|
|
7817
7883
|
httpMethod: "GET",
|
|
7818
7884
|
responses: {
|
|
@@ -7832,9 +7898,9 @@ const getOperationSpec$8 = {
|
|
|
7832
7898
|
labName
|
|
7833
7899
|
],
|
|
7834
7900
|
headerParameters: [accept],
|
|
7835
|
-
serializer: serializer$
|
|
7901
|
+
serializer: serializer$f
|
|
7836
7902
|
};
|
|
7837
|
-
const createOrUpdateOperationSpec$
|
|
7903
|
+
const createOrUpdateOperationSpec$d = {
|
|
7838
7904
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/formulas/{name}",
|
|
7839
7905
|
httpMethod: "PUT",
|
|
7840
7906
|
responses: {
|
|
@@ -7865,9 +7931,9 @@ const createOrUpdateOperationSpec$5 = {
|
|
|
7865
7931
|
],
|
|
7866
7932
|
headerParameters: [accept, contentType],
|
|
7867
7933
|
mediaType: "json",
|
|
7868
|
-
serializer: serializer$
|
|
7934
|
+
serializer: serializer$f
|
|
7869
7935
|
};
|
|
7870
|
-
const deleteOperationSpec$
|
|
7936
|
+
const deleteOperationSpec$d = {
|
|
7871
7937
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/formulas/{name}",
|
|
7872
7938
|
httpMethod: "DELETE",
|
|
7873
7939
|
responses: {
|
|
@@ -7886,9 +7952,9 @@ const deleteOperationSpec$4 = {
|
|
|
7886
7952
|
labName
|
|
7887
7953
|
],
|
|
7888
7954
|
headerParameters: [accept],
|
|
7889
|
-
serializer: serializer$
|
|
7955
|
+
serializer: serializer$f
|
|
7890
7956
|
};
|
|
7891
|
-
const updateOperationSpec$
|
|
7957
|
+
const updateOperationSpec$c = {
|
|
7892
7958
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/formulas/{name}",
|
|
7893
7959
|
httpMethod: "PATCH",
|
|
7894
7960
|
responses: {
|
|
@@ -7910,9 +7976,9 @@ const updateOperationSpec$4 = {
|
|
|
7910
7976
|
],
|
|
7911
7977
|
headerParameters: [accept, contentType],
|
|
7912
7978
|
mediaType: "json",
|
|
7913
|
-
serializer: serializer$
|
|
7979
|
+
serializer: serializer$f
|
|
7914
7980
|
};
|
|
7915
|
-
const listNextOperationSpec$
|
|
7981
|
+
const listNextOperationSpec$d = {
|
|
7916
7982
|
path: "{nextLink}",
|
|
7917
7983
|
httpMethod: "GET",
|
|
7918
7984
|
responses: {
|
|
@@ -7938,7 +8004,7 @@ const listNextOperationSpec$5 = {
|
|
|
7938
8004
|
labName
|
|
7939
8005
|
],
|
|
7940
8006
|
headerParameters: [accept],
|
|
7941
|
-
serializer: serializer$
|
|
8007
|
+
serializer: serializer$f
|
|
7942
8008
|
};
|
|
7943
8009
|
|
|
7944
8010
|
/*
|
|
@@ -8015,7 +8081,7 @@ class GalleryImagesImpl {
|
|
|
8015
8081
|
* @param options The options parameters.
|
|
8016
8082
|
*/
|
|
8017
8083
|
_list(resourceGroupName, labName, options) {
|
|
8018
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
8084
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$c);
|
|
8019
8085
|
}
|
|
8020
8086
|
/**
|
|
8021
8087
|
* ListNext
|
|
@@ -8025,12 +8091,12 @@ class GalleryImagesImpl {
|
|
|
8025
8091
|
* @param options The options parameters.
|
|
8026
8092
|
*/
|
|
8027
8093
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
8028
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
8094
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$c);
|
|
8029
8095
|
}
|
|
8030
8096
|
}
|
|
8031
8097
|
// Operation Specifications
|
|
8032
|
-
const serializer$
|
|
8033
|
-
const listOperationSpec$
|
|
8098
|
+
const serializer$e = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8099
|
+
const listOperationSpec$c = {
|
|
8034
8100
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/galleryimages",
|
|
8035
8101
|
httpMethod: "GET",
|
|
8036
8102
|
responses: {
|
|
@@ -8055,9 +8121,9 @@ const listOperationSpec$6 = {
|
|
|
8055
8121
|
labName
|
|
8056
8122
|
],
|
|
8057
8123
|
headerParameters: [accept],
|
|
8058
|
-
serializer: serializer$
|
|
8124
|
+
serializer: serializer$e
|
|
8059
8125
|
};
|
|
8060
|
-
const listNextOperationSpec$
|
|
8126
|
+
const listNextOperationSpec$c = {
|
|
8061
8127
|
path: "{nextLink}",
|
|
8062
8128
|
httpMethod: "GET",
|
|
8063
8129
|
responses: {
|
|
@@ -8083,7 +8149,7 @@ const listNextOperationSpec$6 = {
|
|
|
8083
8149
|
labName
|
|
8084
8150
|
],
|
|
8085
8151
|
headerParameters: [accept],
|
|
8086
|
-
serializer: serializer$
|
|
8152
|
+
serializer: serializer$e
|
|
8087
8153
|
};
|
|
8088
8154
|
|
|
8089
8155
|
/*
|
|
@@ -8160,7 +8226,7 @@ class NotificationChannelsImpl {
|
|
|
8160
8226
|
* @param options The options parameters.
|
|
8161
8227
|
*/
|
|
8162
8228
|
_list(resourceGroupName, labName, options) {
|
|
8163
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
8229
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$b);
|
|
8164
8230
|
}
|
|
8165
8231
|
/**
|
|
8166
8232
|
* Get notification channel.
|
|
@@ -8170,7 +8236,7 @@ class NotificationChannelsImpl {
|
|
|
8170
8236
|
* @param options The options parameters.
|
|
8171
8237
|
*/
|
|
8172
8238
|
get(resourceGroupName, labName, name, options) {
|
|
8173
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
8239
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$c);
|
|
8174
8240
|
}
|
|
8175
8241
|
/**
|
|
8176
8242
|
* Create or replace an existing notification channel.
|
|
@@ -8181,7 +8247,7 @@ class NotificationChannelsImpl {
|
|
|
8181
8247
|
* @param options The options parameters.
|
|
8182
8248
|
*/
|
|
8183
8249
|
createOrUpdate(resourceGroupName, labName, name, notificationChannel, options) {
|
|
8184
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, notificationChannel, options }, createOrUpdateOperationSpec$
|
|
8250
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, notificationChannel, options }, createOrUpdateOperationSpec$c);
|
|
8185
8251
|
}
|
|
8186
8252
|
/**
|
|
8187
8253
|
* Delete notification channel.
|
|
@@ -8191,7 +8257,7 @@ class NotificationChannelsImpl {
|
|
|
8191
8257
|
* @param options The options parameters.
|
|
8192
8258
|
*/
|
|
8193
8259
|
delete(resourceGroupName, labName, name, options) {
|
|
8194
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
8260
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$c);
|
|
8195
8261
|
}
|
|
8196
8262
|
/**
|
|
8197
8263
|
* Allows modifying tags of notification channels. All other properties will be ignored.
|
|
@@ -8202,7 +8268,7 @@ class NotificationChannelsImpl {
|
|
|
8202
8268
|
* @param options The options parameters.
|
|
8203
8269
|
*/
|
|
8204
8270
|
update(resourceGroupName, labName, name, notificationChannel, options) {
|
|
8205
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, notificationChannel, options }, updateOperationSpec$
|
|
8271
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, notificationChannel, options }, updateOperationSpec$b);
|
|
8206
8272
|
}
|
|
8207
8273
|
/**
|
|
8208
8274
|
* Send notification to provided channel.
|
|
@@ -8223,12 +8289,12 @@ class NotificationChannelsImpl {
|
|
|
8223
8289
|
* @param options The options parameters.
|
|
8224
8290
|
*/
|
|
8225
8291
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
8226
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
8292
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$b);
|
|
8227
8293
|
}
|
|
8228
8294
|
}
|
|
8229
8295
|
// Operation Specifications
|
|
8230
|
-
const serializer$
|
|
8231
|
-
const listOperationSpec$
|
|
8296
|
+
const serializer$d = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8297
|
+
const listOperationSpec$b = {
|
|
8232
8298
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels",
|
|
8233
8299
|
httpMethod: "GET",
|
|
8234
8300
|
responses: {
|
|
@@ -8253,9 +8319,9 @@ const listOperationSpec$7 = {
|
|
|
8253
8319
|
labName
|
|
8254
8320
|
],
|
|
8255
8321
|
headerParameters: [accept],
|
|
8256
|
-
serializer: serializer$
|
|
8322
|
+
serializer: serializer$d
|
|
8257
8323
|
};
|
|
8258
|
-
const getOperationSpec$
|
|
8324
|
+
const getOperationSpec$c = {
|
|
8259
8325
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels/{name}",
|
|
8260
8326
|
httpMethod: "GET",
|
|
8261
8327
|
responses: {
|
|
@@ -8275,9 +8341,9 @@ const getOperationSpec$9 = {
|
|
|
8275
8341
|
labName
|
|
8276
8342
|
],
|
|
8277
8343
|
headerParameters: [accept],
|
|
8278
|
-
serializer: serializer$
|
|
8344
|
+
serializer: serializer$d
|
|
8279
8345
|
};
|
|
8280
|
-
const createOrUpdateOperationSpec$
|
|
8346
|
+
const createOrUpdateOperationSpec$c = {
|
|
8281
8347
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels/{name}",
|
|
8282
8348
|
httpMethod: "PUT",
|
|
8283
8349
|
responses: {
|
|
@@ -8302,9 +8368,9 @@ const createOrUpdateOperationSpec$6 = {
|
|
|
8302
8368
|
],
|
|
8303
8369
|
headerParameters: [accept, contentType],
|
|
8304
8370
|
mediaType: "json",
|
|
8305
|
-
serializer: serializer$
|
|
8371
|
+
serializer: serializer$d
|
|
8306
8372
|
};
|
|
8307
|
-
const deleteOperationSpec$
|
|
8373
|
+
const deleteOperationSpec$c = {
|
|
8308
8374
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels/{name}",
|
|
8309
8375
|
httpMethod: "DELETE",
|
|
8310
8376
|
responses: {
|
|
@@ -8323,9 +8389,9 @@ const deleteOperationSpec$5 = {
|
|
|
8323
8389
|
labName
|
|
8324
8390
|
],
|
|
8325
8391
|
headerParameters: [accept],
|
|
8326
|
-
serializer: serializer$
|
|
8392
|
+
serializer: serializer$d
|
|
8327
8393
|
};
|
|
8328
|
-
const updateOperationSpec$
|
|
8394
|
+
const updateOperationSpec$b = {
|
|
8329
8395
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels/{name}",
|
|
8330
8396
|
httpMethod: "PATCH",
|
|
8331
8397
|
responses: {
|
|
@@ -8347,7 +8413,7 @@ const updateOperationSpec$5 = {
|
|
|
8347
8413
|
],
|
|
8348
8414
|
headerParameters: [accept, contentType],
|
|
8349
8415
|
mediaType: "json",
|
|
8350
|
-
serializer: serializer$
|
|
8416
|
+
serializer: serializer$d
|
|
8351
8417
|
};
|
|
8352
8418
|
const notifyOperationSpec = {
|
|
8353
8419
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/notificationchannels/{name}/notify",
|
|
@@ -8369,9 +8435,9 @@ const notifyOperationSpec = {
|
|
|
8369
8435
|
],
|
|
8370
8436
|
headerParameters: [accept, contentType],
|
|
8371
8437
|
mediaType: "json",
|
|
8372
|
-
serializer: serializer$
|
|
8438
|
+
serializer: serializer$d
|
|
8373
8439
|
};
|
|
8374
|
-
const listNextOperationSpec$
|
|
8440
|
+
const listNextOperationSpec$b = {
|
|
8375
8441
|
path: "{nextLink}",
|
|
8376
8442
|
httpMethod: "GET",
|
|
8377
8443
|
responses: {
|
|
@@ -8397,7 +8463,7 @@ const listNextOperationSpec$7 = {
|
|
|
8397
8463
|
labName
|
|
8398
8464
|
],
|
|
8399
8465
|
headerParameters: [accept],
|
|
8400
|
-
serializer: serializer$
|
|
8466
|
+
serializer: serializer$d
|
|
8401
8467
|
};
|
|
8402
8468
|
|
|
8403
8469
|
/*
|
|
@@ -8429,7 +8495,7 @@ class PolicySetsImpl {
|
|
|
8429
8495
|
}
|
|
8430
8496
|
}
|
|
8431
8497
|
// Operation Specifications
|
|
8432
|
-
const serializer$c =
|
|
8498
|
+
const serializer$c = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8433
8499
|
const evaluatePoliciesOperationSpec = {
|
|
8434
8500
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{name}/evaluatePolicies",
|
|
8435
8501
|
httpMethod: "POST",
|
|
@@ -8531,7 +8597,7 @@ class PoliciesImpl {
|
|
|
8531
8597
|
* @param options The options parameters.
|
|
8532
8598
|
*/
|
|
8533
8599
|
_list(resourceGroupName, labName, policySetName, options) {
|
|
8534
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, options }, listOperationSpec$
|
|
8600
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, options }, listOperationSpec$a);
|
|
8535
8601
|
}
|
|
8536
8602
|
/**
|
|
8537
8603
|
* Get policy.
|
|
@@ -8542,7 +8608,7 @@ class PoliciesImpl {
|
|
|
8542
8608
|
* @param options The options parameters.
|
|
8543
8609
|
*/
|
|
8544
8610
|
get(resourceGroupName, labName, policySetName, name, options) {
|
|
8545
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, options }, getOperationSpec$
|
|
8611
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, options }, getOperationSpec$b);
|
|
8546
8612
|
}
|
|
8547
8613
|
/**
|
|
8548
8614
|
* Create or replace an existing policy.
|
|
@@ -8554,7 +8620,7 @@ class PoliciesImpl {
|
|
|
8554
8620
|
* @param options The options parameters.
|
|
8555
8621
|
*/
|
|
8556
8622
|
createOrUpdate(resourceGroupName, labName, policySetName, name, policy, options) {
|
|
8557
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, policy, options }, createOrUpdateOperationSpec$
|
|
8623
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, policy, options }, createOrUpdateOperationSpec$b);
|
|
8558
8624
|
}
|
|
8559
8625
|
/**
|
|
8560
8626
|
* Delete policy.
|
|
@@ -8565,7 +8631,7 @@ class PoliciesImpl {
|
|
|
8565
8631
|
* @param options The options parameters.
|
|
8566
8632
|
*/
|
|
8567
8633
|
delete(resourceGroupName, labName, policySetName, name, options) {
|
|
8568
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, options }, deleteOperationSpec$
|
|
8634
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, options }, deleteOperationSpec$b);
|
|
8569
8635
|
}
|
|
8570
8636
|
/**
|
|
8571
8637
|
* Allows modifying tags of policies. All other properties will be ignored.
|
|
@@ -8577,7 +8643,7 @@ class PoliciesImpl {
|
|
|
8577
8643
|
* @param options The options parameters.
|
|
8578
8644
|
*/
|
|
8579
8645
|
update(resourceGroupName, labName, policySetName, name, policy, options) {
|
|
8580
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, policy, options }, updateOperationSpec$
|
|
8646
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, name, policy, options }, updateOperationSpec$a);
|
|
8581
8647
|
}
|
|
8582
8648
|
/**
|
|
8583
8649
|
* ListNext
|
|
@@ -8588,12 +8654,12 @@ class PoliciesImpl {
|
|
|
8588
8654
|
* @param options The options parameters.
|
|
8589
8655
|
*/
|
|
8590
8656
|
_listNext(resourceGroupName, labName, policySetName, nextLink, options) {
|
|
8591
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, nextLink, options }, listNextOperationSpec$
|
|
8657
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, policySetName, nextLink, options }, listNextOperationSpec$a);
|
|
8592
8658
|
}
|
|
8593
8659
|
}
|
|
8594
8660
|
// Operation Specifications
|
|
8595
|
-
const serializer$
|
|
8596
|
-
const listOperationSpec$
|
|
8661
|
+
const serializer$b = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
8662
|
+
const listOperationSpec$a = {
|
|
8597
8663
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{policySetName}/policies",
|
|
8598
8664
|
httpMethod: "GET",
|
|
8599
8665
|
responses: {
|
|
@@ -8619,9 +8685,9 @@ const listOperationSpec$8 = {
|
|
|
8619
8685
|
policySetName
|
|
8620
8686
|
],
|
|
8621
8687
|
headerParameters: [accept],
|
|
8622
|
-
serializer: serializer$
|
|
8688
|
+
serializer: serializer$b
|
|
8623
8689
|
};
|
|
8624
|
-
const getOperationSpec$
|
|
8690
|
+
const getOperationSpec$b = {
|
|
8625
8691
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{policySetName}/policies/{name}",
|
|
8626
8692
|
httpMethod: "GET",
|
|
8627
8693
|
responses: {
|
|
@@ -8642,9 +8708,9 @@ const getOperationSpec$a = {
|
|
|
8642
8708
|
policySetName
|
|
8643
8709
|
],
|
|
8644
8710
|
headerParameters: [accept],
|
|
8645
|
-
serializer: serializer$
|
|
8711
|
+
serializer: serializer$b
|
|
8646
8712
|
};
|
|
8647
|
-
const createOrUpdateOperationSpec$
|
|
8713
|
+
const createOrUpdateOperationSpec$b = {
|
|
8648
8714
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{policySetName}/policies/{name}",
|
|
8649
8715
|
httpMethod: "PUT",
|
|
8650
8716
|
responses: {
|
|
@@ -8670,9 +8736,9 @@ const createOrUpdateOperationSpec$7 = {
|
|
|
8670
8736
|
],
|
|
8671
8737
|
headerParameters: [accept, contentType],
|
|
8672
8738
|
mediaType: "json",
|
|
8673
|
-
serializer: serializer$
|
|
8739
|
+
serializer: serializer$b
|
|
8674
8740
|
};
|
|
8675
|
-
const deleteOperationSpec$
|
|
8741
|
+
const deleteOperationSpec$b = {
|
|
8676
8742
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{policySetName}/policies/{name}",
|
|
8677
8743
|
httpMethod: "DELETE",
|
|
8678
8744
|
responses: {
|
|
@@ -8692,9 +8758,9 @@ const deleteOperationSpec$6 = {
|
|
|
8692
8758
|
policySetName
|
|
8693
8759
|
],
|
|
8694
8760
|
headerParameters: [accept],
|
|
8695
|
-
serializer: serializer$
|
|
8761
|
+
serializer: serializer$b
|
|
8696
8762
|
};
|
|
8697
|
-
const updateOperationSpec$
|
|
8763
|
+
const updateOperationSpec$a = {
|
|
8698
8764
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/policysets/{policySetName}/policies/{name}",
|
|
8699
8765
|
httpMethod: "PATCH",
|
|
8700
8766
|
responses: {
|
|
@@ -8717,9 +8783,9 @@ const updateOperationSpec$6 = {
|
|
|
8717
8783
|
],
|
|
8718
8784
|
headerParameters: [accept, contentType],
|
|
8719
8785
|
mediaType: "json",
|
|
8720
|
-
serializer: serializer$
|
|
8786
|
+
serializer: serializer$b
|
|
8721
8787
|
};
|
|
8722
|
-
const listNextOperationSpec$
|
|
8788
|
+
const listNextOperationSpec$a = {
|
|
8723
8789
|
path: "{nextLink}",
|
|
8724
8790
|
httpMethod: "GET",
|
|
8725
8791
|
responses: {
|
|
@@ -8746,7 +8812,7 @@ const listNextOperationSpec$8 = {
|
|
|
8746
8812
|
policySetName
|
|
8747
8813
|
],
|
|
8748
8814
|
headerParameters: [accept],
|
|
8749
|
-
serializer: serializer$
|
|
8815
|
+
serializer: serializer$b
|
|
8750
8816
|
};
|
|
8751
8817
|
|
|
8752
8818
|
/*
|
|
@@ -8884,7 +8950,7 @@ class SchedulesImpl {
|
|
|
8884
8950
|
* @param options The options parameters.
|
|
8885
8951
|
*/
|
|
8886
8952
|
get(resourceGroupName, labName, name, options) {
|
|
8887
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
8953
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$a);
|
|
8888
8954
|
}
|
|
8889
8955
|
/**
|
|
8890
8956
|
* Create or replace an existing schedule.
|
|
@@ -8895,7 +8961,7 @@ class SchedulesImpl {
|
|
|
8895
8961
|
* @param options The options parameters.
|
|
8896
8962
|
*/
|
|
8897
8963
|
createOrUpdate(resourceGroupName, labName, name, schedule, options) {
|
|
8898
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, schedule, options }, createOrUpdateOperationSpec$
|
|
8964
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, schedule, options }, createOrUpdateOperationSpec$a);
|
|
8899
8965
|
}
|
|
8900
8966
|
/**
|
|
8901
8967
|
* Delete schedule.
|
|
@@ -8905,7 +8971,7 @@ class SchedulesImpl {
|
|
|
8905
8971
|
* @param options The options parameters.
|
|
8906
8972
|
*/
|
|
8907
8973
|
delete(resourceGroupName, labName, name, options) {
|
|
8908
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
8974
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$a);
|
|
8909
8975
|
}
|
|
8910
8976
|
/**
|
|
8911
8977
|
* Allows modifying tags of schedules. All other properties will be ignored.
|
|
@@ -8916,7 +8982,7 @@ class SchedulesImpl {
|
|
|
8916
8982
|
* @param options The options parameters.
|
|
8917
8983
|
*/
|
|
8918
8984
|
update(resourceGroupName, labName, name, schedule, options) {
|
|
8919
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, schedule, options }, updateOperationSpec$
|
|
8985
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, schedule, options }, updateOperationSpec$9);
|
|
8920
8986
|
}
|
|
8921
8987
|
/**
|
|
8922
8988
|
* Execute a schedule. This operation can take a while to complete.
|
|
@@ -8949,7 +9015,7 @@ class SchedulesImpl {
|
|
|
8949
9015
|
}
|
|
8950
9016
|
};
|
|
8951
9017
|
});
|
|
8952
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, executeOperationSpec$
|
|
9018
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, executeOperationSpec$2);
|
|
8953
9019
|
return new coreLro.LroEngine(lro, {
|
|
8954
9020
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
8955
9021
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -9002,7 +9068,7 @@ class SchedulesImpl {
|
|
|
9002
9068
|
}
|
|
9003
9069
|
}
|
|
9004
9070
|
// Operation Specifications
|
|
9005
|
-
const serializer$
|
|
9071
|
+
const serializer$a = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9006
9072
|
const listOperationSpec$9 = {
|
|
9007
9073
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules",
|
|
9008
9074
|
httpMethod: "GET",
|
|
@@ -9028,9 +9094,9 @@ const listOperationSpec$9 = {
|
|
|
9028
9094
|
labName
|
|
9029
9095
|
],
|
|
9030
9096
|
headerParameters: [accept],
|
|
9031
|
-
serializer: serializer$
|
|
9097
|
+
serializer: serializer$a
|
|
9032
9098
|
};
|
|
9033
|
-
const getOperationSpec$
|
|
9099
|
+
const getOperationSpec$a = {
|
|
9034
9100
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}",
|
|
9035
9101
|
httpMethod: "GET",
|
|
9036
9102
|
responses: {
|
|
@@ -9050,9 +9116,9 @@ const getOperationSpec$b = {
|
|
|
9050
9116
|
labName
|
|
9051
9117
|
],
|
|
9052
9118
|
headerParameters: [accept],
|
|
9053
|
-
serializer: serializer$
|
|
9119
|
+
serializer: serializer$a
|
|
9054
9120
|
};
|
|
9055
|
-
const createOrUpdateOperationSpec$
|
|
9121
|
+
const createOrUpdateOperationSpec$a = {
|
|
9056
9122
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}",
|
|
9057
9123
|
httpMethod: "PUT",
|
|
9058
9124
|
responses: {
|
|
@@ -9077,9 +9143,9 @@ const createOrUpdateOperationSpec$8 = {
|
|
|
9077
9143
|
],
|
|
9078
9144
|
headerParameters: [accept, contentType],
|
|
9079
9145
|
mediaType: "json",
|
|
9080
|
-
serializer: serializer$
|
|
9146
|
+
serializer: serializer$a
|
|
9081
9147
|
};
|
|
9082
|
-
const deleteOperationSpec$
|
|
9148
|
+
const deleteOperationSpec$a = {
|
|
9083
9149
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}",
|
|
9084
9150
|
httpMethod: "DELETE",
|
|
9085
9151
|
responses: {
|
|
@@ -9098,9 +9164,9 @@ const deleteOperationSpec$7 = {
|
|
|
9098
9164
|
labName
|
|
9099
9165
|
],
|
|
9100
9166
|
headerParameters: [accept],
|
|
9101
|
-
serializer: serializer$
|
|
9167
|
+
serializer: serializer$a
|
|
9102
9168
|
};
|
|
9103
|
-
const updateOperationSpec$
|
|
9169
|
+
const updateOperationSpec$9 = {
|
|
9104
9170
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}",
|
|
9105
9171
|
httpMethod: "PATCH",
|
|
9106
9172
|
responses: {
|
|
@@ -9122,9 +9188,9 @@ const updateOperationSpec$7 = {
|
|
|
9122
9188
|
],
|
|
9123
9189
|
headerParameters: [accept, contentType],
|
|
9124
9190
|
mediaType: "json",
|
|
9125
|
-
serializer: serializer$
|
|
9191
|
+
serializer: serializer$a
|
|
9126
9192
|
};
|
|
9127
|
-
const executeOperationSpec$
|
|
9193
|
+
const executeOperationSpec$2 = {
|
|
9128
9194
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}/execute",
|
|
9129
9195
|
httpMethod: "POST",
|
|
9130
9196
|
responses: {
|
|
@@ -9145,7 +9211,7 @@ const executeOperationSpec$1 = {
|
|
|
9145
9211
|
labName
|
|
9146
9212
|
],
|
|
9147
9213
|
headerParameters: [accept],
|
|
9148
|
-
serializer: serializer$
|
|
9214
|
+
serializer: serializer$a
|
|
9149
9215
|
};
|
|
9150
9216
|
const listApplicableOperationSpec = {
|
|
9151
9217
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/schedules/{name}/listApplicable",
|
|
@@ -9167,7 +9233,7 @@ const listApplicableOperationSpec = {
|
|
|
9167
9233
|
labName
|
|
9168
9234
|
],
|
|
9169
9235
|
headerParameters: [accept],
|
|
9170
|
-
serializer: serializer$
|
|
9236
|
+
serializer: serializer$a
|
|
9171
9237
|
};
|
|
9172
9238
|
const listNextOperationSpec$9 = {
|
|
9173
9239
|
path: "{nextLink}",
|
|
@@ -9195,7 +9261,7 @@ const listNextOperationSpec$9 = {
|
|
|
9195
9261
|
labName
|
|
9196
9262
|
],
|
|
9197
9263
|
headerParameters: [accept],
|
|
9198
|
-
serializer: serializer$
|
|
9264
|
+
serializer: serializer$a
|
|
9199
9265
|
};
|
|
9200
9266
|
const listApplicableNextOperationSpec = {
|
|
9201
9267
|
path: "{nextLink}",
|
|
@@ -9218,7 +9284,7 @@ const listApplicableNextOperationSpec = {
|
|
|
9218
9284
|
labName
|
|
9219
9285
|
],
|
|
9220
9286
|
headerParameters: [accept],
|
|
9221
|
-
serializer: serializer$
|
|
9287
|
+
serializer: serializer$a
|
|
9222
9288
|
};
|
|
9223
9289
|
|
|
9224
9290
|
/*
|
|
@@ -9245,7 +9311,7 @@ class ServiceRunnersImpl {
|
|
|
9245
9311
|
* @param options The options parameters.
|
|
9246
9312
|
*/
|
|
9247
9313
|
get(resourceGroupName, labName, name, options) {
|
|
9248
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
9314
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$9);
|
|
9249
9315
|
}
|
|
9250
9316
|
/**
|
|
9251
9317
|
* Create or replace an existing service runner.
|
|
@@ -9266,12 +9332,12 @@ class ServiceRunnersImpl {
|
|
|
9266
9332
|
* @param options The options parameters.
|
|
9267
9333
|
*/
|
|
9268
9334
|
delete(resourceGroupName, labName, name, options) {
|
|
9269
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
9335
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, deleteOperationSpec$9);
|
|
9270
9336
|
}
|
|
9271
9337
|
}
|
|
9272
9338
|
// Operation Specifications
|
|
9273
|
-
const serializer$
|
|
9274
|
-
const getOperationSpec$
|
|
9339
|
+
const serializer$9 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9340
|
+
const getOperationSpec$9 = {
|
|
9275
9341
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/servicerunners/{name}",
|
|
9276
9342
|
httpMethod: "GET",
|
|
9277
9343
|
responses: {
|
|
@@ -9291,7 +9357,7 @@ const getOperationSpec$c = {
|
|
|
9291
9357
|
labName
|
|
9292
9358
|
],
|
|
9293
9359
|
headerParameters: [accept],
|
|
9294
|
-
serializer: serializer$
|
|
9360
|
+
serializer: serializer$9
|
|
9295
9361
|
};
|
|
9296
9362
|
const createOrUpdateOperationSpec$9 = {
|
|
9297
9363
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/servicerunners/{name}",
|
|
@@ -9318,9 +9384,9 @@ const createOrUpdateOperationSpec$9 = {
|
|
|
9318
9384
|
],
|
|
9319
9385
|
headerParameters: [accept, contentType],
|
|
9320
9386
|
mediaType: "json",
|
|
9321
|
-
serializer: serializer$
|
|
9387
|
+
serializer: serializer$9
|
|
9322
9388
|
};
|
|
9323
|
-
const deleteOperationSpec$
|
|
9389
|
+
const deleteOperationSpec$9 = {
|
|
9324
9390
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/servicerunners/{name}",
|
|
9325
9391
|
httpMethod: "DELETE",
|
|
9326
9392
|
responses: {
|
|
@@ -9339,7 +9405,7 @@ const deleteOperationSpec$8 = {
|
|
|
9339
9405
|
labName
|
|
9340
9406
|
],
|
|
9341
9407
|
headerParameters: [accept],
|
|
9342
|
-
serializer: serializer$
|
|
9408
|
+
serializer: serializer$9
|
|
9343
9409
|
};
|
|
9344
9410
|
|
|
9345
9411
|
/*
|
|
@@ -9416,7 +9482,7 @@ class UsersImpl {
|
|
|
9416
9482
|
* @param options The options parameters.
|
|
9417
9483
|
*/
|
|
9418
9484
|
_list(resourceGroupName, labName, options) {
|
|
9419
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
9485
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$8);
|
|
9420
9486
|
}
|
|
9421
9487
|
/**
|
|
9422
9488
|
* Get user profile.
|
|
@@ -9426,7 +9492,7 @@ class UsersImpl {
|
|
|
9426
9492
|
* @param options The options parameters.
|
|
9427
9493
|
*/
|
|
9428
9494
|
get(resourceGroupName, labName, name, options) {
|
|
9429
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
9495
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$8);
|
|
9430
9496
|
}
|
|
9431
9497
|
/**
|
|
9432
9498
|
* Create or replace an existing user profile. This operation can take a while to complete.
|
|
@@ -9460,7 +9526,7 @@ class UsersImpl {
|
|
|
9460
9526
|
}
|
|
9461
9527
|
};
|
|
9462
9528
|
});
|
|
9463
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, user, options }, createOrUpdateOperationSpec$
|
|
9529
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, user, options }, createOrUpdateOperationSpec$8);
|
|
9464
9530
|
return new coreLro.LroEngine(lro, {
|
|
9465
9531
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
9466
9532
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -9512,7 +9578,7 @@ class UsersImpl {
|
|
|
9512
9578
|
}
|
|
9513
9579
|
};
|
|
9514
9580
|
});
|
|
9515
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
9581
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$8);
|
|
9516
9582
|
return new coreLro.LroEngine(lro, {
|
|
9517
9583
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
9518
9584
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -9551,12 +9617,12 @@ class UsersImpl {
|
|
|
9551
9617
|
* @param options The options parameters.
|
|
9552
9618
|
*/
|
|
9553
9619
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
9554
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
9620
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$8);
|
|
9555
9621
|
}
|
|
9556
9622
|
}
|
|
9557
9623
|
// Operation Specifications
|
|
9558
|
-
const serializer$
|
|
9559
|
-
const listOperationSpec$
|
|
9624
|
+
const serializer$8 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
9625
|
+
const listOperationSpec$8 = {
|
|
9560
9626
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users",
|
|
9561
9627
|
httpMethod: "GET",
|
|
9562
9628
|
responses: {
|
|
@@ -9581,9 +9647,9 @@ const listOperationSpec$a = {
|
|
|
9581
9647
|
labName
|
|
9582
9648
|
],
|
|
9583
9649
|
headerParameters: [accept],
|
|
9584
|
-
serializer: serializer$
|
|
9650
|
+
serializer: serializer$8
|
|
9585
9651
|
};
|
|
9586
|
-
const getOperationSpec$
|
|
9652
|
+
const getOperationSpec$8 = {
|
|
9587
9653
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{name}",
|
|
9588
9654
|
httpMethod: "GET",
|
|
9589
9655
|
responses: {
|
|
@@ -9603,9 +9669,9 @@ const getOperationSpec$d = {
|
|
|
9603
9669
|
labName
|
|
9604
9670
|
],
|
|
9605
9671
|
headerParameters: [accept],
|
|
9606
|
-
serializer: serializer$
|
|
9672
|
+
serializer: serializer$8
|
|
9607
9673
|
};
|
|
9608
|
-
const createOrUpdateOperationSpec$
|
|
9674
|
+
const createOrUpdateOperationSpec$8 = {
|
|
9609
9675
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{name}",
|
|
9610
9676
|
httpMethod: "PUT",
|
|
9611
9677
|
responses: {
|
|
@@ -9636,9 +9702,9 @@ const createOrUpdateOperationSpec$a = {
|
|
|
9636
9702
|
],
|
|
9637
9703
|
headerParameters: [accept, contentType],
|
|
9638
9704
|
mediaType: "json",
|
|
9639
|
-
serializer: serializer$
|
|
9705
|
+
serializer: serializer$8
|
|
9640
9706
|
};
|
|
9641
|
-
const deleteOperationSpec$
|
|
9707
|
+
const deleteOperationSpec$8 = {
|
|
9642
9708
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{name}",
|
|
9643
9709
|
httpMethod: "DELETE",
|
|
9644
9710
|
responses: {
|
|
@@ -9659,7 +9725,7 @@ const deleteOperationSpec$9 = {
|
|
|
9659
9725
|
labName
|
|
9660
9726
|
],
|
|
9661
9727
|
headerParameters: [accept],
|
|
9662
|
-
serializer: serializer$
|
|
9728
|
+
serializer: serializer$8
|
|
9663
9729
|
};
|
|
9664
9730
|
const updateOperationSpec$8 = {
|
|
9665
9731
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{name}",
|
|
@@ -9683,9 +9749,9 @@ const updateOperationSpec$8 = {
|
|
|
9683
9749
|
],
|
|
9684
9750
|
headerParameters: [accept, contentType],
|
|
9685
9751
|
mediaType: "json",
|
|
9686
|
-
serializer: serializer$
|
|
9752
|
+
serializer: serializer$8
|
|
9687
9753
|
};
|
|
9688
|
-
const listNextOperationSpec$
|
|
9754
|
+
const listNextOperationSpec$8 = {
|
|
9689
9755
|
path: "{nextLink}",
|
|
9690
9756
|
httpMethod: "GET",
|
|
9691
9757
|
responses: {
|
|
@@ -9711,7 +9777,7 @@ const listNextOperationSpec$a = {
|
|
|
9711
9777
|
labName
|
|
9712
9778
|
],
|
|
9713
9779
|
headerParameters: [accept],
|
|
9714
|
-
serializer: serializer$
|
|
9780
|
+
serializer: serializer$8
|
|
9715
9781
|
};
|
|
9716
9782
|
|
|
9717
9783
|
/*
|
|
@@ -9790,7 +9856,7 @@ class DisksImpl {
|
|
|
9790
9856
|
* @param options The options parameters.
|
|
9791
9857
|
*/
|
|
9792
9858
|
_list(resourceGroupName, labName, userName, options) {
|
|
9793
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$
|
|
9859
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$7);
|
|
9794
9860
|
}
|
|
9795
9861
|
/**
|
|
9796
9862
|
* Get disk.
|
|
@@ -9801,7 +9867,7 @@ class DisksImpl {
|
|
|
9801
9867
|
* @param options The options parameters.
|
|
9802
9868
|
*/
|
|
9803
9869
|
get(resourceGroupName, labName, userName, name, options) {
|
|
9804
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$
|
|
9870
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$7);
|
|
9805
9871
|
}
|
|
9806
9872
|
/**
|
|
9807
9873
|
* Create or replace an existing disk. This operation can take a while to complete.
|
|
@@ -9836,7 +9902,7 @@ class DisksImpl {
|
|
|
9836
9902
|
}
|
|
9837
9903
|
};
|
|
9838
9904
|
});
|
|
9839
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, disk, options }, createOrUpdateOperationSpec$
|
|
9905
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, disk, options }, createOrUpdateOperationSpec$7);
|
|
9840
9906
|
return new coreLro.LroEngine(lro, {
|
|
9841
9907
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
9842
9908
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -9890,7 +9956,7 @@ class DisksImpl {
|
|
|
9890
9956
|
}
|
|
9891
9957
|
};
|
|
9892
9958
|
});
|
|
9893
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$
|
|
9959
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$7);
|
|
9894
9960
|
return new coreLro.LroEngine(lro, {
|
|
9895
9961
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
9896
9962
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -9921,7 +9987,7 @@ class DisksImpl {
|
|
|
9921
9987
|
* @param options The options parameters.
|
|
9922
9988
|
*/
|
|
9923
9989
|
update(resourceGroupName, labName, userName, name, disk, options) {
|
|
9924
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, disk, options }, updateOperationSpec$
|
|
9990
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, disk, options }, updateOperationSpec$7);
|
|
9925
9991
|
}
|
|
9926
9992
|
/**
|
|
9927
9993
|
* Attach and create the lease of the disk to the virtual machine. This operation can take a while to
|
|
@@ -10060,12 +10126,12 @@ class DisksImpl {
|
|
|
10060
10126
|
* @param options The options parameters.
|
|
10061
10127
|
*/
|
|
10062
10128
|
_listNext(resourceGroupName, labName, userName, nextLink, options) {
|
|
10063
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$
|
|
10129
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$7);
|
|
10064
10130
|
}
|
|
10065
10131
|
}
|
|
10066
10132
|
// Operation Specifications
|
|
10067
|
-
const serializer$
|
|
10068
|
-
const listOperationSpec$
|
|
10133
|
+
const serializer$7 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10134
|
+
const listOperationSpec$7 = {
|
|
10069
10135
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks",
|
|
10070
10136
|
httpMethod: "GET",
|
|
10071
10137
|
responses: {
|
|
@@ -10091,9 +10157,9 @@ const listOperationSpec$b = {
|
|
|
10091
10157
|
userName
|
|
10092
10158
|
],
|
|
10093
10159
|
headerParameters: [accept],
|
|
10094
|
-
serializer: serializer$
|
|
10160
|
+
serializer: serializer$7
|
|
10095
10161
|
};
|
|
10096
|
-
const getOperationSpec$
|
|
10162
|
+
const getOperationSpec$7 = {
|
|
10097
10163
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}",
|
|
10098
10164
|
httpMethod: "GET",
|
|
10099
10165
|
responses: {
|
|
@@ -10114,9 +10180,9 @@ const getOperationSpec$e = {
|
|
|
10114
10180
|
userName
|
|
10115
10181
|
],
|
|
10116
10182
|
headerParameters: [accept],
|
|
10117
|
-
serializer: serializer$
|
|
10183
|
+
serializer: serializer$7
|
|
10118
10184
|
};
|
|
10119
|
-
const createOrUpdateOperationSpec$
|
|
10185
|
+
const createOrUpdateOperationSpec$7 = {
|
|
10120
10186
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}",
|
|
10121
10187
|
httpMethod: "PUT",
|
|
10122
10188
|
responses: {
|
|
@@ -10148,9 +10214,9 @@ const createOrUpdateOperationSpec$b = {
|
|
|
10148
10214
|
],
|
|
10149
10215
|
headerParameters: [accept, contentType],
|
|
10150
10216
|
mediaType: "json",
|
|
10151
|
-
serializer: serializer$
|
|
10217
|
+
serializer: serializer$7
|
|
10152
10218
|
};
|
|
10153
|
-
const deleteOperationSpec$
|
|
10219
|
+
const deleteOperationSpec$7 = {
|
|
10154
10220
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}",
|
|
10155
10221
|
httpMethod: "DELETE",
|
|
10156
10222
|
responses: {
|
|
@@ -10172,9 +10238,9 @@ const deleteOperationSpec$a = {
|
|
|
10172
10238
|
userName
|
|
10173
10239
|
],
|
|
10174
10240
|
headerParameters: [accept],
|
|
10175
|
-
serializer: serializer$
|
|
10241
|
+
serializer: serializer$7
|
|
10176
10242
|
};
|
|
10177
|
-
const updateOperationSpec$
|
|
10243
|
+
const updateOperationSpec$7 = {
|
|
10178
10244
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}",
|
|
10179
10245
|
httpMethod: "PATCH",
|
|
10180
10246
|
responses: {
|
|
@@ -10197,7 +10263,7 @@ const updateOperationSpec$9 = {
|
|
|
10197
10263
|
],
|
|
10198
10264
|
headerParameters: [accept, contentType],
|
|
10199
10265
|
mediaType: "json",
|
|
10200
|
-
serializer: serializer$
|
|
10266
|
+
serializer: serializer$7
|
|
10201
10267
|
};
|
|
10202
10268
|
const attachOperationSpec = {
|
|
10203
10269
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}/attach",
|
|
@@ -10223,7 +10289,7 @@ const attachOperationSpec = {
|
|
|
10223
10289
|
],
|
|
10224
10290
|
headerParameters: [accept, contentType],
|
|
10225
10291
|
mediaType: "json",
|
|
10226
|
-
serializer: serializer$
|
|
10292
|
+
serializer: serializer$7
|
|
10227
10293
|
};
|
|
10228
10294
|
const detachOperationSpec = {
|
|
10229
10295
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/disks/{name}/detach",
|
|
@@ -10249,9 +10315,9 @@ const detachOperationSpec = {
|
|
|
10249
10315
|
],
|
|
10250
10316
|
headerParameters: [accept, contentType],
|
|
10251
10317
|
mediaType: "json",
|
|
10252
|
-
serializer: serializer$
|
|
10318
|
+
serializer: serializer$7
|
|
10253
10319
|
};
|
|
10254
|
-
const listNextOperationSpec$
|
|
10320
|
+
const listNextOperationSpec$7 = {
|
|
10255
10321
|
path: "{nextLink}",
|
|
10256
10322
|
httpMethod: "GET",
|
|
10257
10323
|
responses: {
|
|
@@ -10278,7 +10344,7 @@ const listNextOperationSpec$b = {
|
|
|
10278
10344
|
userName
|
|
10279
10345
|
],
|
|
10280
10346
|
headerParameters: [accept],
|
|
10281
|
-
serializer: serializer$
|
|
10347
|
+
serializer: serializer$7
|
|
10282
10348
|
};
|
|
10283
10349
|
|
|
10284
10350
|
/*
|
|
@@ -10357,7 +10423,7 @@ class EnvironmentsImpl {
|
|
|
10357
10423
|
* @param options The options parameters.
|
|
10358
10424
|
*/
|
|
10359
10425
|
_list(resourceGroupName, labName, userName, options) {
|
|
10360
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$
|
|
10426
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$6);
|
|
10361
10427
|
}
|
|
10362
10428
|
/**
|
|
10363
10429
|
* Get environment.
|
|
@@ -10368,7 +10434,7 @@ class EnvironmentsImpl {
|
|
|
10368
10434
|
* @param options The options parameters.
|
|
10369
10435
|
*/
|
|
10370
10436
|
get(resourceGroupName, labName, userName, name, options) {
|
|
10371
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$
|
|
10437
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$6);
|
|
10372
10438
|
}
|
|
10373
10439
|
/**
|
|
10374
10440
|
* Create or replace an existing environment. This operation can take a while to complete.
|
|
@@ -10403,7 +10469,7 @@ class EnvironmentsImpl {
|
|
|
10403
10469
|
}
|
|
10404
10470
|
};
|
|
10405
10471
|
});
|
|
10406
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, dtlEnvironment, options }, createOrUpdateOperationSpec$
|
|
10472
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, dtlEnvironment, options }, createOrUpdateOperationSpec$6);
|
|
10407
10473
|
return new coreLro.LroEngine(lro, {
|
|
10408
10474
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
10409
10475
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -10457,7 +10523,7 @@ class EnvironmentsImpl {
|
|
|
10457
10523
|
}
|
|
10458
10524
|
};
|
|
10459
10525
|
});
|
|
10460
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$
|
|
10526
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$6);
|
|
10461
10527
|
return new coreLro.LroEngine(lro, {
|
|
10462
10528
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
10463
10529
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -10488,7 +10554,7 @@ class EnvironmentsImpl {
|
|
|
10488
10554
|
* @param options The options parameters.
|
|
10489
10555
|
*/
|
|
10490
10556
|
update(resourceGroupName, labName, userName, name, dtlEnvironment, options) {
|
|
10491
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, dtlEnvironment, options }, updateOperationSpec$
|
|
10557
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, dtlEnvironment, options }, updateOperationSpec$6);
|
|
10492
10558
|
}
|
|
10493
10559
|
/**
|
|
10494
10560
|
* ListNext
|
|
@@ -10499,12 +10565,12 @@ class EnvironmentsImpl {
|
|
|
10499
10565
|
* @param options The options parameters.
|
|
10500
10566
|
*/
|
|
10501
10567
|
_listNext(resourceGroupName, labName, userName, nextLink, options) {
|
|
10502
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$
|
|
10568
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$6);
|
|
10503
10569
|
}
|
|
10504
10570
|
}
|
|
10505
10571
|
// Operation Specifications
|
|
10506
|
-
const serializer$
|
|
10507
|
-
const listOperationSpec$
|
|
10572
|
+
const serializer$6 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10573
|
+
const listOperationSpec$6 = {
|
|
10508
10574
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/environments",
|
|
10509
10575
|
httpMethod: "GET",
|
|
10510
10576
|
responses: {
|
|
@@ -10530,9 +10596,9 @@ const listOperationSpec$c = {
|
|
|
10530
10596
|
userName
|
|
10531
10597
|
],
|
|
10532
10598
|
headerParameters: [accept],
|
|
10533
|
-
serializer: serializer$
|
|
10599
|
+
serializer: serializer$6
|
|
10534
10600
|
};
|
|
10535
|
-
const getOperationSpec$
|
|
10601
|
+
const getOperationSpec$6 = {
|
|
10536
10602
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/environments/{name}",
|
|
10537
10603
|
httpMethod: "GET",
|
|
10538
10604
|
responses: {
|
|
@@ -10553,9 +10619,9 @@ const getOperationSpec$f = {
|
|
|
10553
10619
|
userName
|
|
10554
10620
|
],
|
|
10555
10621
|
headerParameters: [accept],
|
|
10556
|
-
serializer: serializer$
|
|
10622
|
+
serializer: serializer$6
|
|
10557
10623
|
};
|
|
10558
|
-
const createOrUpdateOperationSpec$
|
|
10624
|
+
const createOrUpdateOperationSpec$6 = {
|
|
10559
10625
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/environments/{name}",
|
|
10560
10626
|
httpMethod: "PUT",
|
|
10561
10627
|
responses: {
|
|
@@ -10587,9 +10653,9 @@ const createOrUpdateOperationSpec$c = {
|
|
|
10587
10653
|
],
|
|
10588
10654
|
headerParameters: [accept, contentType],
|
|
10589
10655
|
mediaType: "json",
|
|
10590
|
-
serializer: serializer$
|
|
10656
|
+
serializer: serializer$6
|
|
10591
10657
|
};
|
|
10592
|
-
const deleteOperationSpec$
|
|
10658
|
+
const deleteOperationSpec$6 = {
|
|
10593
10659
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/environments/{name}",
|
|
10594
10660
|
httpMethod: "DELETE",
|
|
10595
10661
|
responses: {
|
|
@@ -10611,9 +10677,9 @@ const deleteOperationSpec$b = {
|
|
|
10611
10677
|
userName
|
|
10612
10678
|
],
|
|
10613
10679
|
headerParameters: [accept],
|
|
10614
|
-
serializer: serializer$
|
|
10680
|
+
serializer: serializer$6
|
|
10615
10681
|
};
|
|
10616
|
-
const updateOperationSpec$
|
|
10682
|
+
const updateOperationSpec$6 = {
|
|
10617
10683
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/environments/{name}",
|
|
10618
10684
|
httpMethod: "PATCH",
|
|
10619
10685
|
responses: {
|
|
@@ -10636,9 +10702,9 @@ const updateOperationSpec$a = {
|
|
|
10636
10702
|
],
|
|
10637
10703
|
headerParameters: [accept, contentType],
|
|
10638
10704
|
mediaType: "json",
|
|
10639
|
-
serializer: serializer$
|
|
10705
|
+
serializer: serializer$6
|
|
10640
10706
|
};
|
|
10641
|
-
const listNextOperationSpec$
|
|
10707
|
+
const listNextOperationSpec$6 = {
|
|
10642
10708
|
path: "{nextLink}",
|
|
10643
10709
|
httpMethod: "GET",
|
|
10644
10710
|
responses: {
|
|
@@ -10665,7 +10731,7 @@ const listNextOperationSpec$c = {
|
|
|
10665
10731
|
userName
|
|
10666
10732
|
],
|
|
10667
10733
|
headerParameters: [accept],
|
|
10668
|
-
serializer: serializer$
|
|
10734
|
+
serializer: serializer$6
|
|
10669
10735
|
};
|
|
10670
10736
|
|
|
10671
10737
|
/*
|
|
@@ -10744,7 +10810,7 @@ class SecretsImpl {
|
|
|
10744
10810
|
* @param options The options parameters.
|
|
10745
10811
|
*/
|
|
10746
10812
|
_list(resourceGroupName, labName, userName, options) {
|
|
10747
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$
|
|
10813
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$5);
|
|
10748
10814
|
}
|
|
10749
10815
|
/**
|
|
10750
10816
|
* Get secret.
|
|
@@ -10755,7 +10821,7 @@ class SecretsImpl {
|
|
|
10755
10821
|
* @param options The options parameters.
|
|
10756
10822
|
*/
|
|
10757
10823
|
get(resourceGroupName, labName, userName, name, options) {
|
|
10758
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$
|
|
10824
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$5);
|
|
10759
10825
|
}
|
|
10760
10826
|
/**
|
|
10761
10827
|
* Create or replace an existing secret. This operation can take a while to complete.
|
|
@@ -10790,7 +10856,7 @@ class SecretsImpl {
|
|
|
10790
10856
|
}
|
|
10791
10857
|
};
|
|
10792
10858
|
});
|
|
10793
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, secret, options }, createOrUpdateOperationSpec$
|
|
10859
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, secret, options }, createOrUpdateOperationSpec$5);
|
|
10794
10860
|
return new coreLro.LroEngine(lro, {
|
|
10795
10861
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
10796
10862
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -10821,7 +10887,7 @@ class SecretsImpl {
|
|
|
10821
10887
|
* @param options The options parameters.
|
|
10822
10888
|
*/
|
|
10823
10889
|
delete(resourceGroupName, labName, userName, name, options) {
|
|
10824
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, deleteOperationSpec$
|
|
10890
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, deleteOperationSpec$5);
|
|
10825
10891
|
}
|
|
10826
10892
|
/**
|
|
10827
10893
|
* Allows modifying tags of secrets. All other properties will be ignored.
|
|
@@ -10833,7 +10899,7 @@ class SecretsImpl {
|
|
|
10833
10899
|
* @param options The options parameters.
|
|
10834
10900
|
*/
|
|
10835
10901
|
update(resourceGroupName, labName, userName, name, secret, options) {
|
|
10836
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, secret, options }, updateOperationSpec$
|
|
10902
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, secret, options }, updateOperationSpec$5);
|
|
10837
10903
|
}
|
|
10838
10904
|
/**
|
|
10839
10905
|
* ListNext
|
|
@@ -10844,12 +10910,12 @@ class SecretsImpl {
|
|
|
10844
10910
|
* @param options The options parameters.
|
|
10845
10911
|
*/
|
|
10846
10912
|
_listNext(resourceGroupName, labName, userName, nextLink, options) {
|
|
10847
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$
|
|
10913
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$5);
|
|
10848
10914
|
}
|
|
10849
10915
|
}
|
|
10850
10916
|
// Operation Specifications
|
|
10851
|
-
const serializer$
|
|
10852
|
-
const listOperationSpec$
|
|
10917
|
+
const serializer$5 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
10918
|
+
const listOperationSpec$5 = {
|
|
10853
10919
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/secrets",
|
|
10854
10920
|
httpMethod: "GET",
|
|
10855
10921
|
responses: {
|
|
@@ -10875,9 +10941,9 @@ const listOperationSpec$d = {
|
|
|
10875
10941
|
userName
|
|
10876
10942
|
],
|
|
10877
10943
|
headerParameters: [accept],
|
|
10878
|
-
serializer: serializer$
|
|
10944
|
+
serializer: serializer$5
|
|
10879
10945
|
};
|
|
10880
|
-
const getOperationSpec$
|
|
10946
|
+
const getOperationSpec$5 = {
|
|
10881
10947
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/secrets/{name}",
|
|
10882
10948
|
httpMethod: "GET",
|
|
10883
10949
|
responses: {
|
|
@@ -10898,9 +10964,9 @@ const getOperationSpec$g = {
|
|
|
10898
10964
|
userName
|
|
10899
10965
|
],
|
|
10900
10966
|
headerParameters: [accept],
|
|
10901
|
-
serializer: serializer$
|
|
10967
|
+
serializer: serializer$5
|
|
10902
10968
|
};
|
|
10903
|
-
const createOrUpdateOperationSpec$
|
|
10969
|
+
const createOrUpdateOperationSpec$5 = {
|
|
10904
10970
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/secrets/{name}",
|
|
10905
10971
|
httpMethod: "PUT",
|
|
10906
10972
|
responses: {
|
|
@@ -10932,9 +10998,9 @@ const createOrUpdateOperationSpec$d = {
|
|
|
10932
10998
|
],
|
|
10933
10999
|
headerParameters: [accept, contentType],
|
|
10934
11000
|
mediaType: "json",
|
|
10935
|
-
serializer: serializer$
|
|
11001
|
+
serializer: serializer$5
|
|
10936
11002
|
};
|
|
10937
|
-
const deleteOperationSpec$
|
|
11003
|
+
const deleteOperationSpec$5 = {
|
|
10938
11004
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/secrets/{name}",
|
|
10939
11005
|
httpMethod: "DELETE",
|
|
10940
11006
|
responses: {
|
|
@@ -10954,9 +11020,9 @@ const deleteOperationSpec$c = {
|
|
|
10954
11020
|
userName
|
|
10955
11021
|
],
|
|
10956
11022
|
headerParameters: [accept],
|
|
10957
|
-
serializer: serializer$
|
|
11023
|
+
serializer: serializer$5
|
|
10958
11024
|
};
|
|
10959
|
-
const updateOperationSpec$
|
|
11025
|
+
const updateOperationSpec$5 = {
|
|
10960
11026
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/secrets/{name}",
|
|
10961
11027
|
httpMethod: "PATCH",
|
|
10962
11028
|
responses: {
|
|
@@ -10979,9 +11045,9 @@ const updateOperationSpec$b = {
|
|
|
10979
11045
|
],
|
|
10980
11046
|
headerParameters: [accept, contentType],
|
|
10981
11047
|
mediaType: "json",
|
|
10982
|
-
serializer: serializer$
|
|
11048
|
+
serializer: serializer$5
|
|
10983
11049
|
};
|
|
10984
|
-
const listNextOperationSpec$
|
|
11050
|
+
const listNextOperationSpec$5 = {
|
|
10985
11051
|
path: "{nextLink}",
|
|
10986
11052
|
httpMethod: "GET",
|
|
10987
11053
|
responses: {
|
|
@@ -11008,7 +11074,7 @@ const listNextOperationSpec$d = {
|
|
|
11008
11074
|
userName
|
|
11009
11075
|
],
|
|
11010
11076
|
headerParameters: [accept],
|
|
11011
|
-
serializer: serializer$
|
|
11077
|
+
serializer: serializer$5
|
|
11012
11078
|
};
|
|
11013
11079
|
|
|
11014
11080
|
/*
|
|
@@ -11087,7 +11153,7 @@ class ServiceFabricsImpl {
|
|
|
11087
11153
|
* @param options The options parameters.
|
|
11088
11154
|
*/
|
|
11089
11155
|
_list(resourceGroupName, labName, userName, options) {
|
|
11090
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$
|
|
11156
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, options }, listOperationSpec$4);
|
|
11091
11157
|
}
|
|
11092
11158
|
/**
|
|
11093
11159
|
* Get service fabric.
|
|
@@ -11098,7 +11164,7 @@ class ServiceFabricsImpl {
|
|
|
11098
11164
|
* @param options The options parameters.
|
|
11099
11165
|
*/
|
|
11100
11166
|
get(resourceGroupName, labName, userName, name, options) {
|
|
11101
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$
|
|
11167
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, getOperationSpec$4);
|
|
11102
11168
|
}
|
|
11103
11169
|
/**
|
|
11104
11170
|
* Create or replace an existing service fabric. This operation can take a while to complete.
|
|
@@ -11133,7 +11199,7 @@ class ServiceFabricsImpl {
|
|
|
11133
11199
|
}
|
|
11134
11200
|
};
|
|
11135
11201
|
});
|
|
11136
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, serviceFabric, options }, createOrUpdateOperationSpec$
|
|
11202
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, serviceFabric, options }, createOrUpdateOperationSpec$4);
|
|
11137
11203
|
return new coreLro.LroEngine(lro, {
|
|
11138
11204
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
11139
11205
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -11187,7 +11253,7 @@ class ServiceFabricsImpl {
|
|
|
11187
11253
|
}
|
|
11188
11254
|
};
|
|
11189
11255
|
});
|
|
11190
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$
|
|
11256
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, deleteOperationSpec$4);
|
|
11191
11257
|
return new coreLro.LroEngine(lro, {
|
|
11192
11258
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
11193
11259
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -11218,7 +11284,7 @@ class ServiceFabricsImpl {
|
|
|
11218
11284
|
* @param options The options parameters.
|
|
11219
11285
|
*/
|
|
11220
11286
|
update(resourceGroupName, labName, userName, name, serviceFabric, options) {
|
|
11221
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, serviceFabric, options }, updateOperationSpec$
|
|
11287
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, serviceFabric, options }, updateOperationSpec$4);
|
|
11222
11288
|
}
|
|
11223
11289
|
/**
|
|
11224
11290
|
* Lists the applicable start/stop schedules, if any.
|
|
@@ -11229,7 +11295,7 @@ class ServiceFabricsImpl {
|
|
|
11229
11295
|
* @param options The options parameters.
|
|
11230
11296
|
*/
|
|
11231
11297
|
listApplicableSchedules(resourceGroupName, labName, userName, name, options) {
|
|
11232
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, listApplicableSchedulesOperationSpec);
|
|
11298
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, name, options }, listApplicableSchedulesOperationSpec$1);
|
|
11233
11299
|
}
|
|
11234
11300
|
/**
|
|
11235
11301
|
* Start a service fabric. This operation can take a while to complete.
|
|
@@ -11263,7 +11329,7 @@ class ServiceFabricsImpl {
|
|
|
11263
11329
|
}
|
|
11264
11330
|
};
|
|
11265
11331
|
});
|
|
11266
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, startOperationSpec);
|
|
11332
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, startOperationSpec$1);
|
|
11267
11333
|
return new coreLro.LroEngine(lro, {
|
|
11268
11334
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
11269
11335
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -11316,7 +11382,7 @@ class ServiceFabricsImpl {
|
|
|
11316
11382
|
}
|
|
11317
11383
|
};
|
|
11318
11384
|
});
|
|
11319
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, stopOperationSpec);
|
|
11385
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, userName, name, options }, stopOperationSpec$1);
|
|
11320
11386
|
return new coreLro.LroEngine(lro, {
|
|
11321
11387
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
11322
11388
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -11346,12 +11412,12 @@ class ServiceFabricsImpl {
|
|
|
11346
11412
|
* @param options The options parameters.
|
|
11347
11413
|
*/
|
|
11348
11414
|
_listNext(resourceGroupName, labName, userName, nextLink, options) {
|
|
11349
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$
|
|
11415
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, nextLink, options }, listNextOperationSpec$4);
|
|
11350
11416
|
}
|
|
11351
11417
|
}
|
|
11352
11418
|
// Operation Specifications
|
|
11353
|
-
const serializer$
|
|
11354
|
-
const listOperationSpec$
|
|
11419
|
+
const serializer$4 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
11420
|
+
const listOperationSpec$4 = {
|
|
11355
11421
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics",
|
|
11356
11422
|
httpMethod: "GET",
|
|
11357
11423
|
responses: {
|
|
@@ -11377,9 +11443,9 @@ const listOperationSpec$e = {
|
|
|
11377
11443
|
userName
|
|
11378
11444
|
],
|
|
11379
11445
|
headerParameters: [accept],
|
|
11380
|
-
serializer: serializer$
|
|
11446
|
+
serializer: serializer$4
|
|
11381
11447
|
};
|
|
11382
|
-
const getOperationSpec$
|
|
11448
|
+
const getOperationSpec$4 = {
|
|
11383
11449
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}",
|
|
11384
11450
|
httpMethod: "GET",
|
|
11385
11451
|
responses: {
|
|
@@ -11400,9 +11466,9 @@ const getOperationSpec$h = {
|
|
|
11400
11466
|
userName
|
|
11401
11467
|
],
|
|
11402
11468
|
headerParameters: [accept],
|
|
11403
|
-
serializer: serializer$
|
|
11469
|
+
serializer: serializer$4
|
|
11404
11470
|
};
|
|
11405
|
-
const createOrUpdateOperationSpec$
|
|
11471
|
+
const createOrUpdateOperationSpec$4 = {
|
|
11406
11472
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}",
|
|
11407
11473
|
httpMethod: "PUT",
|
|
11408
11474
|
responses: {
|
|
@@ -11434,9 +11500,9 @@ const createOrUpdateOperationSpec$e = {
|
|
|
11434
11500
|
],
|
|
11435
11501
|
headerParameters: [accept, contentType],
|
|
11436
11502
|
mediaType: "json",
|
|
11437
|
-
serializer: serializer$
|
|
11503
|
+
serializer: serializer$4
|
|
11438
11504
|
};
|
|
11439
|
-
const deleteOperationSpec$
|
|
11505
|
+
const deleteOperationSpec$4 = {
|
|
11440
11506
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}",
|
|
11441
11507
|
httpMethod: "DELETE",
|
|
11442
11508
|
responses: {
|
|
@@ -11458,9 +11524,9 @@ const deleteOperationSpec$d = {
|
|
|
11458
11524
|
userName
|
|
11459
11525
|
],
|
|
11460
11526
|
headerParameters: [accept],
|
|
11461
|
-
serializer: serializer$
|
|
11527
|
+
serializer: serializer$4
|
|
11462
11528
|
};
|
|
11463
|
-
const updateOperationSpec$
|
|
11529
|
+
const updateOperationSpec$4 = {
|
|
11464
11530
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}",
|
|
11465
11531
|
httpMethod: "PATCH",
|
|
11466
11532
|
responses: {
|
|
@@ -11483,9 +11549,9 @@ const updateOperationSpec$c = {
|
|
|
11483
11549
|
],
|
|
11484
11550
|
headerParameters: [accept, contentType],
|
|
11485
11551
|
mediaType: "json",
|
|
11486
|
-
serializer: serializer$
|
|
11552
|
+
serializer: serializer$4
|
|
11487
11553
|
};
|
|
11488
|
-
const listApplicableSchedulesOperationSpec = {
|
|
11554
|
+
const listApplicableSchedulesOperationSpec$1 = {
|
|
11489
11555
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}/listApplicableSchedules",
|
|
11490
11556
|
httpMethod: "POST",
|
|
11491
11557
|
responses: {
|
|
@@ -11506,9 +11572,9 @@ const listApplicableSchedulesOperationSpec = {
|
|
|
11506
11572
|
userName
|
|
11507
11573
|
],
|
|
11508
11574
|
headerParameters: [accept],
|
|
11509
|
-
serializer: serializer$
|
|
11575
|
+
serializer: serializer$4
|
|
11510
11576
|
};
|
|
11511
|
-
const startOperationSpec = {
|
|
11577
|
+
const startOperationSpec$1 = {
|
|
11512
11578
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}/start",
|
|
11513
11579
|
httpMethod: "POST",
|
|
11514
11580
|
responses: {
|
|
@@ -11530,9 +11596,9 @@ const startOperationSpec = {
|
|
|
11530
11596
|
userName
|
|
11531
11597
|
],
|
|
11532
11598
|
headerParameters: [accept],
|
|
11533
|
-
serializer: serializer$
|
|
11599
|
+
serializer: serializer$4
|
|
11534
11600
|
};
|
|
11535
|
-
const stopOperationSpec = {
|
|
11601
|
+
const stopOperationSpec$1 = {
|
|
11536
11602
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{name}/stop",
|
|
11537
11603
|
httpMethod: "POST",
|
|
11538
11604
|
responses: {
|
|
@@ -11554,9 +11620,9 @@ const stopOperationSpec = {
|
|
|
11554
11620
|
userName
|
|
11555
11621
|
],
|
|
11556
11622
|
headerParameters: [accept],
|
|
11557
|
-
serializer: serializer$
|
|
11623
|
+
serializer: serializer$4
|
|
11558
11624
|
};
|
|
11559
|
-
const listNextOperationSpec$
|
|
11625
|
+
const listNextOperationSpec$4 = {
|
|
11560
11626
|
path: "{nextLink}",
|
|
11561
11627
|
httpMethod: "GET",
|
|
11562
11628
|
responses: {
|
|
@@ -11583,7 +11649,7 @@ const listNextOperationSpec$e = {
|
|
|
11583
11649
|
userName
|
|
11584
11650
|
],
|
|
11585
11651
|
headerParameters: [accept],
|
|
11586
|
-
serializer: serializer$
|
|
11652
|
+
serializer: serializer$4
|
|
11587
11653
|
};
|
|
11588
11654
|
|
|
11589
11655
|
/*
|
|
@@ -11664,7 +11730,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11664
11730
|
* @param options The options parameters.
|
|
11665
11731
|
*/
|
|
11666
11732
|
_list(resourceGroupName, labName, userName, serviceFabricName, options) {
|
|
11667
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, serviceFabricName, options }, listOperationSpec$
|
|
11733
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, userName, serviceFabricName, options }, listOperationSpec$3);
|
|
11668
11734
|
}
|
|
11669
11735
|
/**
|
|
11670
11736
|
* Get schedule.
|
|
@@ -11683,7 +11749,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11683
11749
|
serviceFabricName,
|
|
11684
11750
|
name,
|
|
11685
11751
|
options
|
|
11686
|
-
}, getOperationSpec$
|
|
11752
|
+
}, getOperationSpec$3);
|
|
11687
11753
|
}
|
|
11688
11754
|
/**
|
|
11689
11755
|
* Create or replace an existing schedule.
|
|
@@ -11704,7 +11770,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11704
11770
|
name,
|
|
11705
11771
|
schedule,
|
|
11706
11772
|
options
|
|
11707
|
-
}, createOrUpdateOperationSpec$
|
|
11773
|
+
}, createOrUpdateOperationSpec$3);
|
|
11708
11774
|
}
|
|
11709
11775
|
/**
|
|
11710
11776
|
* Delete schedule.
|
|
@@ -11723,7 +11789,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11723
11789
|
serviceFabricName,
|
|
11724
11790
|
name,
|
|
11725
11791
|
options
|
|
11726
|
-
}, deleteOperationSpec$
|
|
11792
|
+
}, deleteOperationSpec$3);
|
|
11727
11793
|
}
|
|
11728
11794
|
/**
|
|
11729
11795
|
* Allows modifying tags of schedules. All other properties will be ignored.
|
|
@@ -11744,7 +11810,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11744
11810
|
name,
|
|
11745
11811
|
schedule,
|
|
11746
11812
|
options
|
|
11747
|
-
}, updateOperationSpec$
|
|
11813
|
+
}, updateOperationSpec$3);
|
|
11748
11814
|
}
|
|
11749
11815
|
/**
|
|
11750
11816
|
* Execute a schedule. This operation can take a while to complete.
|
|
@@ -11786,7 +11852,7 @@ class ServiceFabricSchedulesImpl {
|
|
|
11786
11852
|
serviceFabricName,
|
|
11787
11853
|
name,
|
|
11788
11854
|
options
|
|
11789
|
-
}, executeOperationSpec$
|
|
11855
|
+
}, executeOperationSpec$1);
|
|
11790
11856
|
return new coreLro.LroEngine(lro, {
|
|
11791
11857
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
11792
11858
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -11825,12 +11891,12 @@ class ServiceFabricSchedulesImpl {
|
|
|
11825
11891
|
serviceFabricName,
|
|
11826
11892
|
nextLink,
|
|
11827
11893
|
options
|
|
11828
|
-
}, listNextOperationSpec$
|
|
11894
|
+
}, listNextOperationSpec$3);
|
|
11829
11895
|
}
|
|
11830
11896
|
}
|
|
11831
11897
|
// Operation Specifications
|
|
11832
|
-
const serializer$
|
|
11833
|
-
const listOperationSpec$
|
|
11898
|
+
const serializer$3 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
11899
|
+
const listOperationSpec$3 = {
|
|
11834
11900
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules",
|
|
11835
11901
|
httpMethod: "GET",
|
|
11836
11902
|
responses: {
|
|
@@ -11857,9 +11923,9 @@ const listOperationSpec$f = {
|
|
|
11857
11923
|
serviceFabricName
|
|
11858
11924
|
],
|
|
11859
11925
|
headerParameters: [accept],
|
|
11860
|
-
serializer: serializer$
|
|
11926
|
+
serializer: serializer$3
|
|
11861
11927
|
};
|
|
11862
|
-
const getOperationSpec$
|
|
11928
|
+
const getOperationSpec$3 = {
|
|
11863
11929
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name}",
|
|
11864
11930
|
httpMethod: "GET",
|
|
11865
11931
|
responses: {
|
|
@@ -11881,9 +11947,9 @@ const getOperationSpec$i = {
|
|
|
11881
11947
|
serviceFabricName
|
|
11882
11948
|
],
|
|
11883
11949
|
headerParameters: [accept],
|
|
11884
|
-
serializer: serializer$
|
|
11950
|
+
serializer: serializer$3
|
|
11885
11951
|
};
|
|
11886
|
-
const createOrUpdateOperationSpec$
|
|
11952
|
+
const createOrUpdateOperationSpec$3 = {
|
|
11887
11953
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name}",
|
|
11888
11954
|
httpMethod: "PUT",
|
|
11889
11955
|
responses: {
|
|
@@ -11910,9 +11976,9 @@ const createOrUpdateOperationSpec$f = {
|
|
|
11910
11976
|
],
|
|
11911
11977
|
headerParameters: [accept, contentType],
|
|
11912
11978
|
mediaType: "json",
|
|
11913
|
-
serializer: serializer$
|
|
11979
|
+
serializer: serializer$3
|
|
11914
11980
|
};
|
|
11915
|
-
const deleteOperationSpec$
|
|
11981
|
+
const deleteOperationSpec$3 = {
|
|
11916
11982
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name}",
|
|
11917
11983
|
httpMethod: "DELETE",
|
|
11918
11984
|
responses: {
|
|
@@ -11933,9 +11999,9 @@ const deleteOperationSpec$e = {
|
|
|
11933
11999
|
serviceFabricName
|
|
11934
12000
|
],
|
|
11935
12001
|
headerParameters: [accept],
|
|
11936
|
-
serializer: serializer$
|
|
12002
|
+
serializer: serializer$3
|
|
11937
12003
|
};
|
|
11938
|
-
const updateOperationSpec$
|
|
12004
|
+
const updateOperationSpec$3 = {
|
|
11939
12005
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name}",
|
|
11940
12006
|
httpMethod: "PATCH",
|
|
11941
12007
|
responses: {
|
|
@@ -11959,9 +12025,9 @@ const updateOperationSpec$d = {
|
|
|
11959
12025
|
],
|
|
11960
12026
|
headerParameters: [accept, contentType],
|
|
11961
12027
|
mediaType: "json",
|
|
11962
|
-
serializer: serializer$
|
|
12028
|
+
serializer: serializer$3
|
|
11963
12029
|
};
|
|
11964
|
-
const executeOperationSpec$
|
|
12030
|
+
const executeOperationSpec$1 = {
|
|
11965
12031
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/users/{userName}/servicefabrics/{serviceFabricName}/schedules/{name}/execute",
|
|
11966
12032
|
httpMethod: "POST",
|
|
11967
12033
|
responses: {
|
|
@@ -11984,9 +12050,9 @@ const executeOperationSpec$2 = {
|
|
|
11984
12050
|
serviceFabricName
|
|
11985
12051
|
],
|
|
11986
12052
|
headerParameters: [accept],
|
|
11987
|
-
serializer: serializer$
|
|
12053
|
+
serializer: serializer$3
|
|
11988
12054
|
};
|
|
11989
|
-
const listNextOperationSpec$
|
|
12055
|
+
const listNextOperationSpec$3 = {
|
|
11990
12056
|
path: "{nextLink}",
|
|
11991
12057
|
httpMethod: "GET",
|
|
11992
12058
|
responses: {
|
|
@@ -12014,7 +12080,7 @@ const listNextOperationSpec$f = {
|
|
|
12014
12080
|
serviceFabricName
|
|
12015
12081
|
],
|
|
12016
12082
|
headerParameters: [accept],
|
|
12017
|
-
serializer: serializer$
|
|
12083
|
+
serializer: serializer$3
|
|
12018
12084
|
};
|
|
12019
12085
|
|
|
12020
12086
|
/*
|
|
@@ -12091,7 +12157,7 @@ class VirtualMachinesImpl {
|
|
|
12091
12157
|
* @param options The options parameters.
|
|
12092
12158
|
*/
|
|
12093
12159
|
_list(resourceGroupName, labName, options) {
|
|
12094
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$
|
|
12160
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec$2);
|
|
12095
12161
|
}
|
|
12096
12162
|
/**
|
|
12097
12163
|
* Get virtual machine.
|
|
@@ -12101,7 +12167,7 @@ class VirtualMachinesImpl {
|
|
|
12101
12167
|
* @param options The options parameters.
|
|
12102
12168
|
*/
|
|
12103
12169
|
get(resourceGroupName, labName, name, options) {
|
|
12104
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$
|
|
12170
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec$2);
|
|
12105
12171
|
}
|
|
12106
12172
|
/**
|
|
12107
12173
|
* Create or replace an existing virtual machine. This operation can take a while to complete.
|
|
@@ -12135,7 +12201,7 @@ class VirtualMachinesImpl {
|
|
|
12135
12201
|
}
|
|
12136
12202
|
};
|
|
12137
12203
|
});
|
|
12138
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, labVirtualMachine, options }, createOrUpdateOperationSpec$
|
|
12204
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, labVirtualMachine, options }, createOrUpdateOperationSpec$2);
|
|
12139
12205
|
return new coreLro.LroEngine(lro, {
|
|
12140
12206
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
12141
12207
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -12187,7 +12253,7 @@ class VirtualMachinesImpl {
|
|
|
12187
12253
|
}
|
|
12188
12254
|
};
|
|
12189
12255
|
});
|
|
12190
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$
|
|
12256
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec$2);
|
|
12191
12257
|
return new coreLro.LroEngine(lro, {
|
|
12192
12258
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
12193
12259
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -12216,7 +12282,7 @@ class VirtualMachinesImpl {
|
|
|
12216
12282
|
* @param options The options parameters.
|
|
12217
12283
|
*/
|
|
12218
12284
|
update(resourceGroupName, labName, name, labVirtualMachine, options) {
|
|
12219
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, labVirtualMachine, options }, updateOperationSpec$
|
|
12285
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, labVirtualMachine, options }, updateOperationSpec$2);
|
|
12220
12286
|
}
|
|
12221
12287
|
/**
|
|
12222
12288
|
* Attach a new or existing data disk to virtual machine. This operation can take a while to complete.
|
|
@@ -12446,7 +12512,7 @@ class VirtualMachinesImpl {
|
|
|
12446
12512
|
* @param options The options parameters.
|
|
12447
12513
|
*/
|
|
12448
12514
|
listApplicableSchedules(resourceGroupName, labName, name, options) {
|
|
12449
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, listApplicableSchedulesOperationSpec
|
|
12515
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, listApplicableSchedulesOperationSpec);
|
|
12450
12516
|
}
|
|
12451
12517
|
/**
|
|
12452
12518
|
* Redeploy a virtual machine This operation can take a while to complete.
|
|
@@ -12640,7 +12706,7 @@ class VirtualMachinesImpl {
|
|
|
12640
12706
|
}
|
|
12641
12707
|
};
|
|
12642
12708
|
});
|
|
12643
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, startOperationSpec
|
|
12709
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, startOperationSpec);
|
|
12644
12710
|
return new coreLro.LroEngine(lro, {
|
|
12645
12711
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
12646
12712
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -12691,7 +12757,7 @@ class VirtualMachinesImpl {
|
|
|
12691
12757
|
}
|
|
12692
12758
|
};
|
|
12693
12759
|
});
|
|
12694
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, stopOperationSpec
|
|
12760
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, stopOperationSpec);
|
|
12695
12761
|
return new coreLro.LroEngine(lro, {
|
|
12696
12762
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
12697
12763
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -12823,12 +12889,12 @@ class VirtualMachinesImpl {
|
|
|
12823
12889
|
* @param options The options parameters.
|
|
12824
12890
|
*/
|
|
12825
12891
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
12826
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$
|
|
12892
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec$2);
|
|
12827
12893
|
}
|
|
12828
12894
|
}
|
|
12829
12895
|
// Operation Specifications
|
|
12830
|
-
const serializer$
|
|
12831
|
-
const listOperationSpec$
|
|
12896
|
+
const serializer$2 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
12897
|
+
const listOperationSpec$2 = {
|
|
12832
12898
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines",
|
|
12833
12899
|
httpMethod: "GET",
|
|
12834
12900
|
responses: {
|
|
@@ -12853,9 +12919,9 @@ const listOperationSpec$g = {
|
|
|
12853
12919
|
labName
|
|
12854
12920
|
],
|
|
12855
12921
|
headerParameters: [accept],
|
|
12856
|
-
serializer: serializer$
|
|
12922
|
+
serializer: serializer$2
|
|
12857
12923
|
};
|
|
12858
|
-
const getOperationSpec$
|
|
12924
|
+
const getOperationSpec$2 = {
|
|
12859
12925
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}",
|
|
12860
12926
|
httpMethod: "GET",
|
|
12861
12927
|
responses: {
|
|
@@ -12875,9 +12941,9 @@ const getOperationSpec$j = {
|
|
|
12875
12941
|
labName
|
|
12876
12942
|
],
|
|
12877
12943
|
headerParameters: [accept],
|
|
12878
|
-
serializer: serializer$
|
|
12944
|
+
serializer: serializer$2
|
|
12879
12945
|
};
|
|
12880
|
-
const createOrUpdateOperationSpec$
|
|
12946
|
+
const createOrUpdateOperationSpec$2 = {
|
|
12881
12947
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}",
|
|
12882
12948
|
httpMethod: "PUT",
|
|
12883
12949
|
responses: {
|
|
@@ -12908,9 +12974,9 @@ const createOrUpdateOperationSpec$g = {
|
|
|
12908
12974
|
],
|
|
12909
12975
|
headerParameters: [accept, contentType],
|
|
12910
12976
|
mediaType: "json",
|
|
12911
|
-
serializer: serializer$
|
|
12977
|
+
serializer: serializer$2
|
|
12912
12978
|
};
|
|
12913
|
-
const deleteOperationSpec$
|
|
12979
|
+
const deleteOperationSpec$2 = {
|
|
12914
12980
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}",
|
|
12915
12981
|
httpMethod: "DELETE",
|
|
12916
12982
|
responses: {
|
|
@@ -12931,9 +12997,9 @@ const deleteOperationSpec$f = {
|
|
|
12931
12997
|
labName
|
|
12932
12998
|
],
|
|
12933
12999
|
headerParameters: [accept],
|
|
12934
|
-
serializer: serializer$
|
|
13000
|
+
serializer: serializer$2
|
|
12935
13001
|
};
|
|
12936
|
-
const updateOperationSpec$
|
|
13002
|
+
const updateOperationSpec$2 = {
|
|
12937
13003
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}",
|
|
12938
13004
|
httpMethod: "PATCH",
|
|
12939
13005
|
responses: {
|
|
@@ -12955,7 +13021,7 @@ const updateOperationSpec$e = {
|
|
|
12955
13021
|
],
|
|
12956
13022
|
headerParameters: [accept, contentType],
|
|
12957
13023
|
mediaType: "json",
|
|
12958
|
-
serializer: serializer$
|
|
13024
|
+
serializer: serializer$2
|
|
12959
13025
|
};
|
|
12960
13026
|
const addDataDiskOperationSpec = {
|
|
12961
13027
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/addDataDisk",
|
|
@@ -12980,7 +13046,7 @@ const addDataDiskOperationSpec = {
|
|
|
12980
13046
|
],
|
|
12981
13047
|
headerParameters: [accept, contentType],
|
|
12982
13048
|
mediaType: "json",
|
|
12983
|
-
serializer: serializer$
|
|
13049
|
+
serializer: serializer$2
|
|
12984
13050
|
};
|
|
12985
13051
|
const applyArtifactsOperationSpec = {
|
|
12986
13052
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/applyArtifacts",
|
|
@@ -13005,7 +13071,7 @@ const applyArtifactsOperationSpec = {
|
|
|
13005
13071
|
],
|
|
13006
13072
|
headerParameters: [accept, contentType],
|
|
13007
13073
|
mediaType: "json",
|
|
13008
|
-
serializer: serializer$
|
|
13074
|
+
serializer: serializer$2
|
|
13009
13075
|
};
|
|
13010
13076
|
const claimOperationSpec = {
|
|
13011
13077
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/claim",
|
|
@@ -13028,7 +13094,7 @@ const claimOperationSpec = {
|
|
|
13028
13094
|
labName
|
|
13029
13095
|
],
|
|
13030
13096
|
headerParameters: [accept],
|
|
13031
|
-
serializer: serializer$
|
|
13097
|
+
serializer: serializer$2
|
|
13032
13098
|
};
|
|
13033
13099
|
const detachDataDiskOperationSpec = {
|
|
13034
13100
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/detachDataDisk",
|
|
@@ -13053,7 +13119,7 @@ const detachDataDiskOperationSpec = {
|
|
|
13053
13119
|
],
|
|
13054
13120
|
headerParameters: [accept, contentType],
|
|
13055
13121
|
mediaType: "json",
|
|
13056
|
-
serializer: serializer$
|
|
13122
|
+
serializer: serializer$2
|
|
13057
13123
|
};
|
|
13058
13124
|
const getRdpFileContentsOperationSpec = {
|
|
13059
13125
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/getRdpFileContents",
|
|
@@ -13075,9 +13141,9 @@ const getRdpFileContentsOperationSpec = {
|
|
|
13075
13141
|
labName
|
|
13076
13142
|
],
|
|
13077
13143
|
headerParameters: [accept],
|
|
13078
|
-
serializer: serializer$
|
|
13144
|
+
serializer: serializer$2
|
|
13079
13145
|
};
|
|
13080
|
-
const listApplicableSchedulesOperationSpec
|
|
13146
|
+
const listApplicableSchedulesOperationSpec = {
|
|
13081
13147
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/listApplicableSchedules",
|
|
13082
13148
|
httpMethod: "POST",
|
|
13083
13149
|
responses: {
|
|
@@ -13097,7 +13163,7 @@ const listApplicableSchedulesOperationSpec$1 = {
|
|
|
13097
13163
|
labName
|
|
13098
13164
|
],
|
|
13099
13165
|
headerParameters: [accept],
|
|
13100
|
-
serializer: serializer$
|
|
13166
|
+
serializer: serializer$2
|
|
13101
13167
|
};
|
|
13102
13168
|
const redeployOperationSpec = {
|
|
13103
13169
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/redeploy",
|
|
@@ -13120,7 +13186,7 @@ const redeployOperationSpec = {
|
|
|
13120
13186
|
labName
|
|
13121
13187
|
],
|
|
13122
13188
|
headerParameters: [accept],
|
|
13123
|
-
serializer: serializer$
|
|
13189
|
+
serializer: serializer$2
|
|
13124
13190
|
};
|
|
13125
13191
|
const resizeOperationSpec = {
|
|
13126
13192
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/resize",
|
|
@@ -13145,7 +13211,7 @@ const resizeOperationSpec = {
|
|
|
13145
13211
|
],
|
|
13146
13212
|
headerParameters: [accept, contentType],
|
|
13147
13213
|
mediaType: "json",
|
|
13148
|
-
serializer: serializer$
|
|
13214
|
+
serializer: serializer$2
|
|
13149
13215
|
};
|
|
13150
13216
|
const restartOperationSpec = {
|
|
13151
13217
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/restart",
|
|
@@ -13168,9 +13234,9 @@ const restartOperationSpec = {
|
|
|
13168
13234
|
labName
|
|
13169
13235
|
],
|
|
13170
13236
|
headerParameters: [accept],
|
|
13171
|
-
serializer: serializer$
|
|
13237
|
+
serializer: serializer$2
|
|
13172
13238
|
};
|
|
13173
|
-
const startOperationSpec
|
|
13239
|
+
const startOperationSpec = {
|
|
13174
13240
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/start",
|
|
13175
13241
|
httpMethod: "POST",
|
|
13176
13242
|
responses: {
|
|
@@ -13191,9 +13257,9 @@ const startOperationSpec$1 = {
|
|
|
13191
13257
|
labName
|
|
13192
13258
|
],
|
|
13193
13259
|
headerParameters: [accept],
|
|
13194
|
-
serializer: serializer$
|
|
13260
|
+
serializer: serializer$2
|
|
13195
13261
|
};
|
|
13196
|
-
const stopOperationSpec
|
|
13262
|
+
const stopOperationSpec = {
|
|
13197
13263
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/stop",
|
|
13198
13264
|
httpMethod: "POST",
|
|
13199
13265
|
responses: {
|
|
@@ -13214,7 +13280,7 @@ const stopOperationSpec$1 = {
|
|
|
13214
13280
|
labName
|
|
13215
13281
|
],
|
|
13216
13282
|
headerParameters: [accept],
|
|
13217
|
-
serializer: serializer$
|
|
13283
|
+
serializer: serializer$2
|
|
13218
13284
|
};
|
|
13219
13285
|
const transferDisksOperationSpec = {
|
|
13220
13286
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/transferDisks",
|
|
@@ -13237,7 +13303,7 @@ const transferDisksOperationSpec = {
|
|
|
13237
13303
|
labName
|
|
13238
13304
|
],
|
|
13239
13305
|
headerParameters: [accept],
|
|
13240
|
-
serializer: serializer$
|
|
13306
|
+
serializer: serializer$2
|
|
13241
13307
|
};
|
|
13242
13308
|
const unClaimOperationSpec = {
|
|
13243
13309
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{name}/unClaim",
|
|
@@ -13260,9 +13326,9 @@ const unClaimOperationSpec = {
|
|
|
13260
13326
|
labName
|
|
13261
13327
|
],
|
|
13262
13328
|
headerParameters: [accept],
|
|
13263
|
-
serializer: serializer$
|
|
13329
|
+
serializer: serializer$2
|
|
13264
13330
|
};
|
|
13265
|
-
const listNextOperationSpec$
|
|
13331
|
+
const listNextOperationSpec$2 = {
|
|
13266
13332
|
path: "{nextLink}",
|
|
13267
13333
|
httpMethod: "GET",
|
|
13268
13334
|
responses: {
|
|
@@ -13288,7 +13354,7 @@ const listNextOperationSpec$g = {
|
|
|
13288
13354
|
labName
|
|
13289
13355
|
],
|
|
13290
13356
|
headerParameters: [accept],
|
|
13291
|
-
serializer: serializer$
|
|
13357
|
+
serializer: serializer$2
|
|
13292
13358
|
};
|
|
13293
13359
|
|
|
13294
13360
|
/*
|
|
@@ -13367,7 +13433,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13367
13433
|
* @param options The options parameters.
|
|
13368
13434
|
*/
|
|
13369
13435
|
_list(resourceGroupName, labName, virtualMachineName, options) {
|
|
13370
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, options }, listOperationSpec$
|
|
13436
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, options }, listOperationSpec$1);
|
|
13371
13437
|
}
|
|
13372
13438
|
/**
|
|
13373
13439
|
* Get schedule.
|
|
@@ -13378,7 +13444,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13378
13444
|
* @param options The options parameters.
|
|
13379
13445
|
*/
|
|
13380
13446
|
get(resourceGroupName, labName, virtualMachineName, name, options) {
|
|
13381
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, name, options }, getOperationSpec$
|
|
13447
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, name, options }, getOperationSpec$1);
|
|
13382
13448
|
}
|
|
13383
13449
|
/**
|
|
13384
13450
|
* Create or replace an existing schedule.
|
|
@@ -13397,7 +13463,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13397
13463
|
name,
|
|
13398
13464
|
schedule,
|
|
13399
13465
|
options
|
|
13400
|
-
}, createOrUpdateOperationSpec$
|
|
13466
|
+
}, createOrUpdateOperationSpec$1);
|
|
13401
13467
|
}
|
|
13402
13468
|
/**
|
|
13403
13469
|
* Delete schedule.
|
|
@@ -13408,7 +13474,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13408
13474
|
* @param options The options parameters.
|
|
13409
13475
|
*/
|
|
13410
13476
|
delete(resourceGroupName, labName, virtualMachineName, name, options) {
|
|
13411
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, name, options }, deleteOperationSpec$
|
|
13477
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, name, options }, deleteOperationSpec$1);
|
|
13412
13478
|
}
|
|
13413
13479
|
/**
|
|
13414
13480
|
* Allows modifying tags of schedules. All other properties will be ignored.
|
|
@@ -13427,7 +13493,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13427
13493
|
name,
|
|
13428
13494
|
schedule,
|
|
13429
13495
|
options
|
|
13430
|
-
}, updateOperationSpec$
|
|
13496
|
+
}, updateOperationSpec$1);
|
|
13431
13497
|
}
|
|
13432
13498
|
/**
|
|
13433
13499
|
* Execute a schedule. This operation can take a while to complete.
|
|
@@ -13461,7 +13527,7 @@ class VirtualMachineSchedulesImpl {
|
|
|
13461
13527
|
}
|
|
13462
13528
|
};
|
|
13463
13529
|
});
|
|
13464
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, virtualMachineName, name, options }, executeOperationSpec
|
|
13530
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, virtualMachineName, name, options }, executeOperationSpec);
|
|
13465
13531
|
return new coreLro.LroEngine(lro, {
|
|
13466
13532
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
13467
13533
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -13491,12 +13557,12 @@ class VirtualMachineSchedulesImpl {
|
|
|
13491
13557
|
* @param options The options parameters.
|
|
13492
13558
|
*/
|
|
13493
13559
|
_listNext(resourceGroupName, labName, virtualMachineName, nextLink, options) {
|
|
13494
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, nextLink, options }, listNextOperationSpec$
|
|
13560
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, virtualMachineName, nextLink, options }, listNextOperationSpec$1);
|
|
13495
13561
|
}
|
|
13496
13562
|
}
|
|
13497
13563
|
// Operation Specifications
|
|
13498
|
-
const serializer$
|
|
13499
|
-
const listOperationSpec$
|
|
13564
|
+
const serializer$1 = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
13565
|
+
const listOperationSpec$1 = {
|
|
13500
13566
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules",
|
|
13501
13567
|
httpMethod: "GET",
|
|
13502
13568
|
responses: {
|
|
@@ -13522,9 +13588,9 @@ const listOperationSpec$h = {
|
|
|
13522
13588
|
virtualMachineName
|
|
13523
13589
|
],
|
|
13524
13590
|
headerParameters: [accept],
|
|
13525
|
-
serializer: serializer$
|
|
13591
|
+
serializer: serializer$1
|
|
13526
13592
|
};
|
|
13527
|
-
const getOperationSpec$
|
|
13593
|
+
const getOperationSpec$1 = {
|
|
13528
13594
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}",
|
|
13529
13595
|
httpMethod: "GET",
|
|
13530
13596
|
responses: {
|
|
@@ -13545,9 +13611,9 @@ const getOperationSpec$k = {
|
|
|
13545
13611
|
virtualMachineName
|
|
13546
13612
|
],
|
|
13547
13613
|
headerParameters: [accept],
|
|
13548
|
-
serializer: serializer$
|
|
13614
|
+
serializer: serializer$1
|
|
13549
13615
|
};
|
|
13550
|
-
const createOrUpdateOperationSpec$
|
|
13616
|
+
const createOrUpdateOperationSpec$1 = {
|
|
13551
13617
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}",
|
|
13552
13618
|
httpMethod: "PUT",
|
|
13553
13619
|
responses: {
|
|
@@ -13573,9 +13639,9 @@ const createOrUpdateOperationSpec$h = {
|
|
|
13573
13639
|
],
|
|
13574
13640
|
headerParameters: [accept, contentType],
|
|
13575
13641
|
mediaType: "json",
|
|
13576
|
-
serializer: serializer$
|
|
13642
|
+
serializer: serializer$1
|
|
13577
13643
|
};
|
|
13578
|
-
const deleteOperationSpec$
|
|
13644
|
+
const deleteOperationSpec$1 = {
|
|
13579
13645
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}",
|
|
13580
13646
|
httpMethod: "DELETE",
|
|
13581
13647
|
responses: {
|
|
@@ -13595,9 +13661,9 @@ const deleteOperationSpec$g = {
|
|
|
13595
13661
|
virtualMachineName
|
|
13596
13662
|
],
|
|
13597
13663
|
headerParameters: [accept],
|
|
13598
|
-
serializer: serializer$
|
|
13664
|
+
serializer: serializer$1
|
|
13599
13665
|
};
|
|
13600
|
-
const updateOperationSpec$
|
|
13666
|
+
const updateOperationSpec$1 = {
|
|
13601
13667
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}",
|
|
13602
13668
|
httpMethod: "PATCH",
|
|
13603
13669
|
responses: {
|
|
@@ -13620,9 +13686,9 @@ const updateOperationSpec$f = {
|
|
|
13620
13686
|
],
|
|
13621
13687
|
headerParameters: [accept, contentType],
|
|
13622
13688
|
mediaType: "json",
|
|
13623
|
-
serializer: serializer$
|
|
13689
|
+
serializer: serializer$1
|
|
13624
13690
|
};
|
|
13625
|
-
const executeOperationSpec
|
|
13691
|
+
const executeOperationSpec = {
|
|
13626
13692
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualmachines/{virtualMachineName}/schedules/{name}/execute",
|
|
13627
13693
|
httpMethod: "POST",
|
|
13628
13694
|
responses: {
|
|
@@ -13644,9 +13710,9 @@ const executeOperationSpec$3 = {
|
|
|
13644
13710
|
virtualMachineName
|
|
13645
13711
|
],
|
|
13646
13712
|
headerParameters: [accept],
|
|
13647
|
-
serializer: serializer$
|
|
13713
|
+
serializer: serializer$1
|
|
13648
13714
|
};
|
|
13649
|
-
const listNextOperationSpec$
|
|
13715
|
+
const listNextOperationSpec$1 = {
|
|
13650
13716
|
path: "{nextLink}",
|
|
13651
13717
|
httpMethod: "GET",
|
|
13652
13718
|
responses: {
|
|
@@ -13673,7 +13739,7 @@ const listNextOperationSpec$h = {
|
|
|
13673
13739
|
virtualMachineName
|
|
13674
13740
|
],
|
|
13675
13741
|
headerParameters: [accept],
|
|
13676
|
-
serializer: serializer$
|
|
13742
|
+
serializer: serializer$1
|
|
13677
13743
|
};
|
|
13678
13744
|
|
|
13679
13745
|
/*
|
|
@@ -13750,7 +13816,7 @@ class VirtualNetworksImpl {
|
|
|
13750
13816
|
* @param options The options parameters.
|
|
13751
13817
|
*/
|
|
13752
13818
|
_list(resourceGroupName, labName, options) {
|
|
13753
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec
|
|
13819
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, options }, listOperationSpec);
|
|
13754
13820
|
}
|
|
13755
13821
|
/**
|
|
13756
13822
|
* Get virtual network.
|
|
@@ -13760,7 +13826,7 @@ class VirtualNetworksImpl {
|
|
|
13760
13826
|
* @param options The options parameters.
|
|
13761
13827
|
*/
|
|
13762
13828
|
get(resourceGroupName, labName, name, options) {
|
|
13763
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec
|
|
13829
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, options }, getOperationSpec);
|
|
13764
13830
|
}
|
|
13765
13831
|
/**
|
|
13766
13832
|
* Create or replace an existing virtual network. This operation can take a while to complete.
|
|
@@ -13794,7 +13860,7 @@ class VirtualNetworksImpl {
|
|
|
13794
13860
|
}
|
|
13795
13861
|
};
|
|
13796
13862
|
});
|
|
13797
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, virtualNetwork, options }, createOrUpdateOperationSpec
|
|
13863
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, virtualNetwork, options }, createOrUpdateOperationSpec);
|
|
13798
13864
|
return new coreLro.LroEngine(lro, {
|
|
13799
13865
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
13800
13866
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -13846,7 +13912,7 @@ class VirtualNetworksImpl {
|
|
|
13846
13912
|
}
|
|
13847
13913
|
};
|
|
13848
13914
|
});
|
|
13849
|
-
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec
|
|
13915
|
+
const lro = new LroImpl(sendOperation, { resourceGroupName, labName, name, options }, deleteOperationSpec);
|
|
13850
13916
|
return new coreLro.LroEngine(lro, {
|
|
13851
13917
|
resumeFrom: options === null || options === void 0 ? void 0 : options.resumeFrom,
|
|
13852
13918
|
intervalInMs: options === null || options === void 0 ? void 0 : options.updateIntervalInMs
|
|
@@ -13875,7 +13941,7 @@ class VirtualNetworksImpl {
|
|
|
13875
13941
|
* @param options The options parameters.
|
|
13876
13942
|
*/
|
|
13877
13943
|
update(resourceGroupName, labName, name, virtualNetwork, options) {
|
|
13878
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, name, virtualNetwork, options }, updateOperationSpec
|
|
13944
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, name, virtualNetwork, options }, updateOperationSpec);
|
|
13879
13945
|
}
|
|
13880
13946
|
/**
|
|
13881
13947
|
* ListNext
|
|
@@ -13885,12 +13951,12 @@ class VirtualNetworksImpl {
|
|
|
13885
13951
|
* @param options The options parameters.
|
|
13886
13952
|
*/
|
|
13887
13953
|
_listNext(resourceGroupName, labName, nextLink, options) {
|
|
13888
|
-
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec
|
|
13954
|
+
return this.client.sendOperationRequest({ resourceGroupName, labName, nextLink, options }, listNextOperationSpec);
|
|
13889
13955
|
}
|
|
13890
13956
|
}
|
|
13891
13957
|
// Operation Specifications
|
|
13892
|
-
const serializer
|
|
13893
|
-
const listOperationSpec
|
|
13958
|
+
const serializer = coreClient__namespace.createSerializer(Mappers, /* isXml */ false);
|
|
13959
|
+
const listOperationSpec = {
|
|
13894
13960
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualnetworks",
|
|
13895
13961
|
httpMethod: "GET",
|
|
13896
13962
|
responses: {
|
|
@@ -13915,9 +13981,9 @@ const listOperationSpec$i = {
|
|
|
13915
13981
|
labName
|
|
13916
13982
|
],
|
|
13917
13983
|
headerParameters: [accept],
|
|
13918
|
-
serializer
|
|
13984
|
+
serializer
|
|
13919
13985
|
};
|
|
13920
|
-
const getOperationSpec
|
|
13986
|
+
const getOperationSpec = {
|
|
13921
13987
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualnetworks/{name}",
|
|
13922
13988
|
httpMethod: "GET",
|
|
13923
13989
|
responses: {
|
|
@@ -13937,9 +14003,9 @@ const getOperationSpec$l = {
|
|
|
13937
14003
|
labName
|
|
13938
14004
|
],
|
|
13939
14005
|
headerParameters: [accept],
|
|
13940
|
-
serializer
|
|
14006
|
+
serializer
|
|
13941
14007
|
};
|
|
13942
|
-
const createOrUpdateOperationSpec
|
|
14008
|
+
const createOrUpdateOperationSpec = {
|
|
13943
14009
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualnetworks/{name}",
|
|
13944
14010
|
httpMethod: "PUT",
|
|
13945
14011
|
responses: {
|
|
@@ -13970,9 +14036,9 @@ const createOrUpdateOperationSpec$i = {
|
|
|
13970
14036
|
],
|
|
13971
14037
|
headerParameters: [accept, contentType],
|
|
13972
14038
|
mediaType: "json",
|
|
13973
|
-
serializer
|
|
14039
|
+
serializer
|
|
13974
14040
|
};
|
|
13975
|
-
const deleteOperationSpec
|
|
14041
|
+
const deleteOperationSpec = {
|
|
13976
14042
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualnetworks/{name}",
|
|
13977
14043
|
httpMethod: "DELETE",
|
|
13978
14044
|
responses: {
|
|
@@ -13993,9 +14059,9 @@ const deleteOperationSpec$h = {
|
|
|
13993
14059
|
labName
|
|
13994
14060
|
],
|
|
13995
14061
|
headerParameters: [accept],
|
|
13996
|
-
serializer
|
|
14062
|
+
serializer
|
|
13997
14063
|
};
|
|
13998
|
-
const updateOperationSpec
|
|
14064
|
+
const updateOperationSpec = {
|
|
13999
14065
|
path: "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.DevTestLab/labs/{labName}/virtualnetworks/{name}",
|
|
14000
14066
|
httpMethod: "PATCH",
|
|
14001
14067
|
responses: {
|
|
@@ -14017,9 +14083,9 @@ const updateOperationSpec$g = {
|
|
|
14017
14083
|
],
|
|
14018
14084
|
headerParameters: [accept, contentType],
|
|
14019
14085
|
mediaType: "json",
|
|
14020
|
-
serializer
|
|
14086
|
+
serializer
|
|
14021
14087
|
};
|
|
14022
|
-
const listNextOperationSpec
|
|
14088
|
+
const listNextOperationSpec = {
|
|
14023
14089
|
path: "{nextLink}",
|
|
14024
14090
|
httpMethod: "GET",
|
|
14025
14091
|
responses: {
|
|
@@ -14045,7 +14111,7 @@ const listNextOperationSpec$i = {
|
|
|
14045
14111
|
labName
|
|
14046
14112
|
],
|
|
14047
14113
|
headerParameters: [accept],
|
|
14048
|
-
serializer
|
|
14114
|
+
serializer
|
|
14049
14115
|
};
|
|
14050
14116
|
|
|
14051
14117
|
/*
|
|
@@ -14055,7 +14121,7 @@ const listNextOperationSpec$i = {
|
|
|
14055
14121
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
14056
14122
|
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
14057
14123
|
*/
|
|
14058
|
-
class DevTestLabsClient extends
|
|
14124
|
+
class DevTestLabsClient extends coreClient__namespace.ServiceClient {
|
|
14059
14125
|
/**
|
|
14060
14126
|
* Initializes a new instance of the DevTestLabsClient class.
|
|
14061
14127
|
* @param credentials Subscription credentials which uniquely identify client subscription.
|