@azure/arm-azurestackhci 1.1.0 → 2.0.1-alpha.20220114.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -80
- package/dist/index.js +2369 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/azureStackHCIClient.d.ts +21 -0
- package/dist-esm/src/azureStackHCIClient.d.ts.map +1 -0
- package/dist-esm/src/azureStackHCIClient.js +54 -0
- package/dist-esm/src/azureStackHCIClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +864 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +135 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +881 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +16 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +137 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/arcSettings.d.ts +72 -0
- package/dist-esm/src/operations/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operations/arcSettings.js +281 -0
- package/dist-esm/src/operations/arcSettings.js.map +1 -0
- package/dist-esm/src/operations/clusters.d.ts +83 -0
- package/dist-esm/src/operations/clusters.d.ts.map +1 -0
- package/dist-esm/src/operations/clusters.js +356 -0
- package/dist-esm/src/operations/clusters.js.map +1 -0
- package/dist-esm/src/operations/extensions.d.ts +109 -0
- package/dist-esm/src/operations/extensions.d.ts.map +1 -0
- package/dist-esm/src/operations/extensions.js +462 -0
- package/dist-esm/src/operations/extensions.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +18 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +46 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js +9 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.js +9 -0
- package/dist-esm/src/operationsInterfaces/clusters.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts +82 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.js +9 -0
- package/dist-esm/src/operationsInterfaces/extensions.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +10 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -22
- package/review/arm-azurestackhci.api.md +650 -0
- package/rollup.config.js +181 -30
- package/src/azureStackHCIClient.ts +78 -37
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +775 -366
- package/src/models/mappers.ts +635 -239
- package/src/models/parameters.ts +112 -35
- package/src/operations/arcSettings.ts +394 -0
- package/src/operations/clusters.ts +279 -309
- package/src/operations/extensions.ts +672 -0
- package/src/operations/index.ts +6 -6
- package/src/operations/operations.ts +30 -45
- package/src/operationsInterfaces/arcSettings.ts +89 -0
- package/src/operationsInterfaces/clusters.ts +91 -0
- package/src/operationsInterfaces/extensions.ts +162 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/operations.ts +21 -0
- package/tsconfig.json +3 -3
- package/types/arm-azurestackhci.d.ts +1146 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-azurestackhci.js +0 -1151
- package/dist/arm-azurestackhci.js.map +0 -1
- package/dist/arm-azurestackhci.min.js +0 -1
- package/dist/arm-azurestackhci.min.js.map +0 -1
- package/esm/azureStackHCIClient.d.ts +0 -25
- package/esm/azureStackHCIClient.d.ts.map +0 -1
- package/esm/azureStackHCIClient.js +0 -39
- package/esm/azureStackHCIClient.js.map +0 -1
- package/esm/azureStackHCIClientContext.d.ts +0 -22
- package/esm/azureStackHCIClientContext.d.ts.map +0 -1
- package/esm/azureStackHCIClientContext.js +0 -61
- package/esm/azureStackHCIClientContext.js.map +0 -1
- package/esm/models/clustersMappers.d.ts +0 -2
- package/esm/models/clustersMappers.d.ts.map +0 -1
- package/esm/models/clustersMappers.js +0 -9
- package/esm/models/clustersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -509
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -19
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -527
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -9
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -82
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/clusters.d.ts +0 -169
- package/esm/operations/clusters.d.ts.map +0 -1
- package/esm/operations/clusters.js +0 -273
- package/esm/operations/clusters.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/src/azureStackHCIClientContext.ts +0 -68
- package/src/models/clustersMappers.ts +0 -23
- package/src/models/operationsMappers.ts +0 -16
package/esm/models/index.d.ts
DELETED
|
@@ -1,509 +0,0 @@
|
|
|
1
|
-
import { BaseResource, CloudError, AzureServiceClientOptions } from "@azure/ms-rest-azure-js";
|
|
2
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
3
|
-
export { BaseResource, CloudError };
|
|
4
|
-
/**
|
|
5
|
-
* Cluster node details.
|
|
6
|
-
*/
|
|
7
|
-
export interface ClusterNode {
|
|
8
|
-
/**
|
|
9
|
-
* Name of the cluster node.
|
|
10
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
11
|
-
*/
|
|
12
|
-
readonly name?: string;
|
|
13
|
-
/**
|
|
14
|
-
* Id of the node in the cluster.
|
|
15
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
16
|
-
*/
|
|
17
|
-
readonly id?: number;
|
|
18
|
-
/**
|
|
19
|
-
* Manufacturer of the cluster node hardware.
|
|
20
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
21
|
-
*/
|
|
22
|
-
readonly manufacturer?: string;
|
|
23
|
-
/**
|
|
24
|
-
* Model name of the cluster node hardware.
|
|
25
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
26
|
-
*/
|
|
27
|
-
readonly model?: string;
|
|
28
|
-
/**
|
|
29
|
-
* Operating system running on the cluster node.
|
|
30
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
31
|
-
*/
|
|
32
|
-
readonly osName?: string;
|
|
33
|
-
/**
|
|
34
|
-
* Version of the operating system running on the cluster node.
|
|
35
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
36
|
-
*/
|
|
37
|
-
readonly osVersion?: string;
|
|
38
|
-
/**
|
|
39
|
-
* Immutable id of the cluster node.
|
|
40
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
41
|
-
*/
|
|
42
|
-
readonly serialNumber?: string;
|
|
43
|
-
/**
|
|
44
|
-
* Number of physical cores on the cluster node.
|
|
45
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
46
|
-
*/
|
|
47
|
-
readonly coreCount?: number;
|
|
48
|
-
/**
|
|
49
|
-
* Total available memory on the cluster node (in GiB).
|
|
50
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
51
|
-
*/
|
|
52
|
-
readonly memoryInGiB?: number;
|
|
53
|
-
}
|
|
54
|
-
/**
|
|
55
|
-
* Properties reported by cluster agent.
|
|
56
|
-
*/
|
|
57
|
-
export interface ClusterReportedProperties {
|
|
58
|
-
/**
|
|
59
|
-
* Name of the on-prem cluster connected to this resource.
|
|
60
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
61
|
-
*/
|
|
62
|
-
readonly clusterName?: string;
|
|
63
|
-
/**
|
|
64
|
-
* Unique id generated by the on-prem cluster.
|
|
65
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
66
|
-
*/
|
|
67
|
-
readonly clusterId?: string;
|
|
68
|
-
/**
|
|
69
|
-
* Version of the cluster software.
|
|
70
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
71
|
-
*/
|
|
72
|
-
readonly clusterVersion?: string;
|
|
73
|
-
/**
|
|
74
|
-
* List of nodes reported by the cluster.
|
|
75
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
76
|
-
*/
|
|
77
|
-
readonly nodes?: ClusterNode[];
|
|
78
|
-
/**
|
|
79
|
-
* Last time the cluster reported the data.
|
|
80
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
81
|
-
*/
|
|
82
|
-
readonly lastUpdated?: Date;
|
|
83
|
-
}
|
|
84
|
-
/**
|
|
85
|
-
* An interface representing Resource.
|
|
86
|
-
*/
|
|
87
|
-
export interface Resource extends BaseResource {
|
|
88
|
-
/**
|
|
89
|
-
* Fully qualified resource Id for the resource. Ex -
|
|
90
|
-
* /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
91
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
92
|
-
*/
|
|
93
|
-
readonly id?: string;
|
|
94
|
-
/**
|
|
95
|
-
* The name of the resource
|
|
96
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
97
|
-
*/
|
|
98
|
-
readonly name?: string;
|
|
99
|
-
/**
|
|
100
|
-
* The type of the resource. Ex- Microsoft.Compute/virtualMachines or
|
|
101
|
-
* Microsoft.Storage/storageAccounts.
|
|
102
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
103
|
-
*/
|
|
104
|
-
readonly type?: string;
|
|
105
|
-
}
|
|
106
|
-
/**
|
|
107
|
-
* The resource model definition for a ARM tracked top level resource
|
|
108
|
-
*/
|
|
109
|
-
export interface TrackedResource extends Resource {
|
|
110
|
-
/**
|
|
111
|
-
* Resource tags.
|
|
112
|
-
*/
|
|
113
|
-
tags?: {
|
|
114
|
-
[propertyName: string]: string;
|
|
115
|
-
};
|
|
116
|
-
/**
|
|
117
|
-
* The geo-location where the resource lives
|
|
118
|
-
*/
|
|
119
|
-
location: string;
|
|
120
|
-
}
|
|
121
|
-
/**
|
|
122
|
-
* Cluster details.
|
|
123
|
-
*/
|
|
124
|
-
export interface Cluster extends TrackedResource {
|
|
125
|
-
/**
|
|
126
|
-
* Provisioning state. Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Accepted',
|
|
127
|
-
* 'Provisioning'
|
|
128
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
129
|
-
*/
|
|
130
|
-
readonly provisioningState?: ProvisioningState;
|
|
131
|
-
/**
|
|
132
|
-
* Status of the cluster agent. Possible values include: 'NotYetRegistered', 'ConnectedRecently',
|
|
133
|
-
* 'NotConnectedRecently', 'Disconnected', 'Error'
|
|
134
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
135
|
-
*/
|
|
136
|
-
readonly status?: Status;
|
|
137
|
-
/**
|
|
138
|
-
* Unique, immutable resource id.
|
|
139
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
140
|
-
*/
|
|
141
|
-
readonly cloudId?: string;
|
|
142
|
-
/**
|
|
143
|
-
* App id of cluster AAD identity.
|
|
144
|
-
*/
|
|
145
|
-
aadClientId: string;
|
|
146
|
-
/**
|
|
147
|
-
* Tenant id of cluster AAD identity.
|
|
148
|
-
*/
|
|
149
|
-
aadTenantId: string;
|
|
150
|
-
/**
|
|
151
|
-
* Properties reported by cluster agent.
|
|
152
|
-
*/
|
|
153
|
-
reportedProperties?: ClusterReportedProperties;
|
|
154
|
-
/**
|
|
155
|
-
* Number of days remaining in the trial period.
|
|
156
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
157
|
-
*/
|
|
158
|
-
readonly trialDaysRemaining?: number;
|
|
159
|
-
/**
|
|
160
|
-
* Type of billing applied to the resource.
|
|
161
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
162
|
-
*/
|
|
163
|
-
readonly billingModel?: string;
|
|
164
|
-
/**
|
|
165
|
-
* First cluster sync timestamp.
|
|
166
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
167
|
-
*/
|
|
168
|
-
readonly registrationTimestamp?: Date;
|
|
169
|
-
/**
|
|
170
|
-
* Most recent cluster sync timestamp.
|
|
171
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
172
|
-
*/
|
|
173
|
-
readonly lastSyncTimestamp?: Date;
|
|
174
|
-
/**
|
|
175
|
-
* Most recent billing meter timestamp.
|
|
176
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
177
|
-
*/
|
|
178
|
-
readonly lastBillingTimestamp?: Date;
|
|
179
|
-
}
|
|
180
|
-
/**
|
|
181
|
-
* Cluster details to update.
|
|
182
|
-
*/
|
|
183
|
-
export interface ClusterUpdate {
|
|
184
|
-
/**
|
|
185
|
-
* Resource tags.
|
|
186
|
-
*/
|
|
187
|
-
tags?: {
|
|
188
|
-
[propertyName: string]: string;
|
|
189
|
-
};
|
|
190
|
-
}
|
|
191
|
-
/**
|
|
192
|
-
* Operation display payload
|
|
193
|
-
*/
|
|
194
|
-
export interface OperationDisplay {
|
|
195
|
-
/**
|
|
196
|
-
* Resource provider of the operation
|
|
197
|
-
*/
|
|
198
|
-
provider?: string;
|
|
199
|
-
/**
|
|
200
|
-
* Resource of the operation
|
|
201
|
-
*/
|
|
202
|
-
resource?: string;
|
|
203
|
-
/**
|
|
204
|
-
* Localized friendly name for the operation
|
|
205
|
-
*/
|
|
206
|
-
operation?: string;
|
|
207
|
-
/**
|
|
208
|
-
* Localized friendly description for the operation
|
|
209
|
-
*/
|
|
210
|
-
description?: string;
|
|
211
|
-
}
|
|
212
|
-
/**
|
|
213
|
-
* Operation detail payload
|
|
214
|
-
*/
|
|
215
|
-
export interface OperationDetail {
|
|
216
|
-
/**
|
|
217
|
-
* Name of the operation
|
|
218
|
-
*/
|
|
219
|
-
name?: string;
|
|
220
|
-
/**
|
|
221
|
-
* Indicates whether the operation is a data action
|
|
222
|
-
*/
|
|
223
|
-
isDataAction?: boolean;
|
|
224
|
-
/**
|
|
225
|
-
* Display of the operation
|
|
226
|
-
*/
|
|
227
|
-
display?: OperationDisplay;
|
|
228
|
-
/**
|
|
229
|
-
* Origin of the operation
|
|
230
|
-
*/
|
|
231
|
-
origin?: string;
|
|
232
|
-
/**
|
|
233
|
-
* Properties of the operation
|
|
234
|
-
*/
|
|
235
|
-
properties?: any;
|
|
236
|
-
}
|
|
237
|
-
/**
|
|
238
|
-
* Available operations of the service
|
|
239
|
-
*/
|
|
240
|
-
export interface AvailableOperations {
|
|
241
|
-
/**
|
|
242
|
-
* Collection of available operation details
|
|
243
|
-
*/
|
|
244
|
-
value?: OperationDetail[];
|
|
245
|
-
/**
|
|
246
|
-
* URL client should use to fetch the next page (per server side paging).
|
|
247
|
-
* It's null for now, added for future use.
|
|
248
|
-
*/
|
|
249
|
-
nextLink?: string;
|
|
250
|
-
}
|
|
251
|
-
/**
|
|
252
|
-
* The resource model definition for a ARM proxy resource. It will have everything other than
|
|
253
|
-
* required location and tags
|
|
254
|
-
*/
|
|
255
|
-
export interface ProxyResource extends Resource {
|
|
256
|
-
}
|
|
257
|
-
/**
|
|
258
|
-
* The resource model definition for a Azure Resource Manager resource with an etag.
|
|
259
|
-
*/
|
|
260
|
-
export interface AzureEntityResource extends Resource {
|
|
261
|
-
/**
|
|
262
|
-
* Resource Etag.
|
|
263
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
264
|
-
*/
|
|
265
|
-
readonly etag?: string;
|
|
266
|
-
}
|
|
267
|
-
/**
|
|
268
|
-
* The resource management error additional info.
|
|
269
|
-
*/
|
|
270
|
-
export interface ErrorAdditionalInfo {
|
|
271
|
-
/**
|
|
272
|
-
* The additional info type.
|
|
273
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
274
|
-
*/
|
|
275
|
-
readonly type?: string;
|
|
276
|
-
/**
|
|
277
|
-
* The additional info.
|
|
278
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
279
|
-
*/
|
|
280
|
-
readonly info?: any;
|
|
281
|
-
}
|
|
282
|
-
/**
|
|
283
|
-
* The error object.
|
|
284
|
-
*/
|
|
285
|
-
export interface ErrorResponseError {
|
|
286
|
-
/**
|
|
287
|
-
* The error code.
|
|
288
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
289
|
-
*/
|
|
290
|
-
readonly code?: string;
|
|
291
|
-
/**
|
|
292
|
-
* The error message.
|
|
293
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
294
|
-
*/
|
|
295
|
-
readonly message?: string;
|
|
296
|
-
/**
|
|
297
|
-
* The error target.
|
|
298
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
299
|
-
*/
|
|
300
|
-
readonly target?: string;
|
|
301
|
-
/**
|
|
302
|
-
* The error details.
|
|
303
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
304
|
-
*/
|
|
305
|
-
readonly details?: ErrorResponse[];
|
|
306
|
-
/**
|
|
307
|
-
* The error additional info.
|
|
308
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
309
|
-
*/
|
|
310
|
-
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
311
|
-
}
|
|
312
|
-
/**
|
|
313
|
-
* The resource management error response.
|
|
314
|
-
*/
|
|
315
|
-
export interface ErrorResponse {
|
|
316
|
-
/**
|
|
317
|
-
* The error object.
|
|
318
|
-
*/
|
|
319
|
-
error?: ErrorResponseError;
|
|
320
|
-
}
|
|
321
|
-
/**
|
|
322
|
-
* Optional Parameters.
|
|
323
|
-
*/
|
|
324
|
-
export interface ClustersUpdateOptionalParams extends msRest.RequestOptionsBase {
|
|
325
|
-
/**
|
|
326
|
-
* Resource tags.
|
|
327
|
-
*/
|
|
328
|
-
tags?: {
|
|
329
|
-
[propertyName: string]: string;
|
|
330
|
-
};
|
|
331
|
-
}
|
|
332
|
-
/**
|
|
333
|
-
* An interface representing AzureStackHCIClientOptions.
|
|
334
|
-
*/
|
|
335
|
-
export interface AzureStackHCIClientOptions extends AzureServiceClientOptions {
|
|
336
|
-
baseUri?: string;
|
|
337
|
-
}
|
|
338
|
-
/**
|
|
339
|
-
* @interface
|
|
340
|
-
* List of clusters.
|
|
341
|
-
* @extends Array<Cluster>
|
|
342
|
-
*/
|
|
343
|
-
export interface ClusterList extends Array<Cluster> {
|
|
344
|
-
/**
|
|
345
|
-
* Link to the next set of results.
|
|
346
|
-
* **NOTE: This property will not be serialized. It can only be populated by the server.**
|
|
347
|
-
*/
|
|
348
|
-
readonly nextLink?: string;
|
|
349
|
-
}
|
|
350
|
-
/**
|
|
351
|
-
* Defines values for ProvisioningState.
|
|
352
|
-
* Possible values include: 'Succeeded', 'Failed', 'Canceled', 'Accepted', 'Provisioning'
|
|
353
|
-
* @readonly
|
|
354
|
-
* @enum {string}
|
|
355
|
-
*/
|
|
356
|
-
export declare type ProvisioningState = 'Succeeded' | 'Failed' | 'Canceled' | 'Accepted' | 'Provisioning';
|
|
357
|
-
/**
|
|
358
|
-
* Defines values for Status.
|
|
359
|
-
* Possible values include: 'NotYetRegistered', 'ConnectedRecently', 'NotConnectedRecently',
|
|
360
|
-
* 'Disconnected', 'Error'
|
|
361
|
-
* @readonly
|
|
362
|
-
* @enum {string}
|
|
363
|
-
*/
|
|
364
|
-
export declare type Status = 'NotYetRegistered' | 'ConnectedRecently' | 'NotConnectedRecently' | 'Disconnected' | 'Error';
|
|
365
|
-
/**
|
|
366
|
-
* Contains response data for the list operation.
|
|
367
|
-
*/
|
|
368
|
-
export declare type OperationsListResponse = AvailableOperations & {
|
|
369
|
-
/**
|
|
370
|
-
* The underlying HTTP response.
|
|
371
|
-
*/
|
|
372
|
-
_response: msRest.HttpResponse & {
|
|
373
|
-
/**
|
|
374
|
-
* The response body as text (string format)
|
|
375
|
-
*/
|
|
376
|
-
bodyAsText: string;
|
|
377
|
-
/**
|
|
378
|
-
* The response body as parsed JSON or XML
|
|
379
|
-
*/
|
|
380
|
-
parsedBody: AvailableOperations;
|
|
381
|
-
};
|
|
382
|
-
};
|
|
383
|
-
/**
|
|
384
|
-
* Contains response data for the list operation.
|
|
385
|
-
*/
|
|
386
|
-
export declare type ClustersListResponse = ClusterList & {
|
|
387
|
-
/**
|
|
388
|
-
* The underlying HTTP response.
|
|
389
|
-
*/
|
|
390
|
-
_response: msRest.HttpResponse & {
|
|
391
|
-
/**
|
|
392
|
-
* The response body as text (string format)
|
|
393
|
-
*/
|
|
394
|
-
bodyAsText: string;
|
|
395
|
-
/**
|
|
396
|
-
* The response body as parsed JSON or XML
|
|
397
|
-
*/
|
|
398
|
-
parsedBody: ClusterList;
|
|
399
|
-
};
|
|
400
|
-
};
|
|
401
|
-
/**
|
|
402
|
-
* Contains response data for the listByResourceGroup operation.
|
|
403
|
-
*/
|
|
404
|
-
export declare type ClustersListByResourceGroupResponse = ClusterList & {
|
|
405
|
-
/**
|
|
406
|
-
* The underlying HTTP response.
|
|
407
|
-
*/
|
|
408
|
-
_response: msRest.HttpResponse & {
|
|
409
|
-
/**
|
|
410
|
-
* The response body as text (string format)
|
|
411
|
-
*/
|
|
412
|
-
bodyAsText: string;
|
|
413
|
-
/**
|
|
414
|
-
* The response body as parsed JSON or XML
|
|
415
|
-
*/
|
|
416
|
-
parsedBody: ClusterList;
|
|
417
|
-
};
|
|
418
|
-
};
|
|
419
|
-
/**
|
|
420
|
-
* Contains response data for the get operation.
|
|
421
|
-
*/
|
|
422
|
-
export declare type ClustersGetResponse = Cluster & {
|
|
423
|
-
/**
|
|
424
|
-
* The underlying HTTP response.
|
|
425
|
-
*/
|
|
426
|
-
_response: msRest.HttpResponse & {
|
|
427
|
-
/**
|
|
428
|
-
* The response body as text (string format)
|
|
429
|
-
*/
|
|
430
|
-
bodyAsText: string;
|
|
431
|
-
/**
|
|
432
|
-
* The response body as parsed JSON or XML
|
|
433
|
-
*/
|
|
434
|
-
parsedBody: Cluster;
|
|
435
|
-
};
|
|
436
|
-
};
|
|
437
|
-
/**
|
|
438
|
-
* Contains response data for the create operation.
|
|
439
|
-
*/
|
|
440
|
-
export declare type ClustersCreateResponse = Cluster & {
|
|
441
|
-
/**
|
|
442
|
-
* The underlying HTTP response.
|
|
443
|
-
*/
|
|
444
|
-
_response: msRest.HttpResponse & {
|
|
445
|
-
/**
|
|
446
|
-
* The response body as text (string format)
|
|
447
|
-
*/
|
|
448
|
-
bodyAsText: string;
|
|
449
|
-
/**
|
|
450
|
-
* The response body as parsed JSON or XML
|
|
451
|
-
*/
|
|
452
|
-
parsedBody: Cluster;
|
|
453
|
-
};
|
|
454
|
-
};
|
|
455
|
-
/**
|
|
456
|
-
* Contains response data for the update operation.
|
|
457
|
-
*/
|
|
458
|
-
export declare type ClustersUpdateResponse = Cluster & {
|
|
459
|
-
/**
|
|
460
|
-
* The underlying HTTP response.
|
|
461
|
-
*/
|
|
462
|
-
_response: msRest.HttpResponse & {
|
|
463
|
-
/**
|
|
464
|
-
* The response body as text (string format)
|
|
465
|
-
*/
|
|
466
|
-
bodyAsText: string;
|
|
467
|
-
/**
|
|
468
|
-
* The response body as parsed JSON or XML
|
|
469
|
-
*/
|
|
470
|
-
parsedBody: Cluster;
|
|
471
|
-
};
|
|
472
|
-
};
|
|
473
|
-
/**
|
|
474
|
-
* Contains response data for the listNext operation.
|
|
475
|
-
*/
|
|
476
|
-
export declare type ClustersListNextResponse = ClusterList & {
|
|
477
|
-
/**
|
|
478
|
-
* The underlying HTTP response.
|
|
479
|
-
*/
|
|
480
|
-
_response: msRest.HttpResponse & {
|
|
481
|
-
/**
|
|
482
|
-
* The response body as text (string format)
|
|
483
|
-
*/
|
|
484
|
-
bodyAsText: string;
|
|
485
|
-
/**
|
|
486
|
-
* The response body as parsed JSON or XML
|
|
487
|
-
*/
|
|
488
|
-
parsedBody: ClusterList;
|
|
489
|
-
};
|
|
490
|
-
};
|
|
491
|
-
/**
|
|
492
|
-
* Contains response data for the listByResourceGroupNext operation.
|
|
493
|
-
*/
|
|
494
|
-
export declare type ClustersListByResourceGroupNextResponse = ClusterList & {
|
|
495
|
-
/**
|
|
496
|
-
* The underlying HTTP response.
|
|
497
|
-
*/
|
|
498
|
-
_response: msRest.HttpResponse & {
|
|
499
|
-
/**
|
|
500
|
-
* The response body as text (string format)
|
|
501
|
-
*/
|
|
502
|
-
bodyAsText: string;
|
|
503
|
-
/**
|
|
504
|
-
* The response body as parsed JSON or XML
|
|
505
|
-
*/
|
|
506
|
-
parsedBody: ClusterList;
|
|
507
|
-
};
|
|
508
|
-
};
|
|
509
|
-
//# sourceMappingURL=index.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"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"}
|
package/esm/models/index.js
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
3
|
-
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
4
|
-
*
|
|
5
|
-
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
6
|
-
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
7
|
-
*/
|
|
8
|
-
//# sourceMappingURL=index.js.map
|
package/esm/models/index.js.map
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/models/index.ts"],"names":[],"mappings":"AAAA;;;;;;GAMG"}
|
package/esm/models/mappers.d.ts
DELETED
|
@@ -1,19 +0,0 @@
|
|
|
1
|
-
import * as msRest from "@azure/ms-rest-js";
|
|
2
|
-
export declare const CloudError: msRest.CompositeMapper;
|
|
3
|
-
export declare const BaseResource: msRest.CompositeMapper;
|
|
4
|
-
export declare const ClusterNode: msRest.CompositeMapper;
|
|
5
|
-
export declare const ClusterReportedProperties: msRest.CompositeMapper;
|
|
6
|
-
export declare const Resource: msRest.CompositeMapper;
|
|
7
|
-
export declare const TrackedResource: msRest.CompositeMapper;
|
|
8
|
-
export declare const Cluster: msRest.CompositeMapper;
|
|
9
|
-
export declare const ClusterUpdate: msRest.CompositeMapper;
|
|
10
|
-
export declare const OperationDisplay: msRest.CompositeMapper;
|
|
11
|
-
export declare const OperationDetail: msRest.CompositeMapper;
|
|
12
|
-
export declare const AvailableOperations: msRest.CompositeMapper;
|
|
13
|
-
export declare const ProxyResource: msRest.CompositeMapper;
|
|
14
|
-
export declare const AzureEntityResource: msRest.CompositeMapper;
|
|
15
|
-
export declare const ErrorAdditionalInfo: msRest.CompositeMapper;
|
|
16
|
-
export declare const ErrorResponseError: msRest.CompositeMapper;
|
|
17
|
-
export declare const ErrorResponse: msRest.CompositeMapper;
|
|
18
|
-
export declare const ClusterList: msRest.CompositeMapper;
|
|
19
|
-
//# sourceMappingURL=mappers.d.ts.map
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
{"version":3,"file":"mappers.d.ts","sourceRoot":"","sources":["../../src/models/mappers.ts"],"names":[],"mappings":"AASA,OAAO,KAAK,MAAM,MAAM,mBAAmB,CAAC;AAE5C,eAAO,MAAM,UAAU,wBAAmB,CAAC;AAC3C,eAAO,MAAM,YAAY,wBAAqB,CAAC;AAE/C,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,eAuEhC,CAAC;AAEF,eAAO,MAAM,yBAAyB,EAAE,MAAM,CAAC,eAiD9C,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,MAAM,CAAC,eA6B7B,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eA2BpC,CAAC;AAEF,eAAO,MAAM,OAAO,EAAE,MAAM,CAAC,eAsF5B,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eAmBlC,CAAC;AAEF,eAAO,MAAM,gBAAgB,EAAE,MAAM,CAAC,eAgCrC,CAAC;AAEF,eAAO,MAAM,eAAe,EAAE,MAAM,CAAC,eAuCpC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eA0BxC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eASlC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAgBxC,CAAC;AAEF,eAAO,MAAM,mBAAmB,EAAE,MAAM,CAAC,eAsBxC,CAAC;AAEF,eAAO,MAAM,kBAAkB,EAAE,MAAM,CAAC,eAuDvC,CAAC;AAEF,eAAO,MAAM,aAAa,EAAE,MAAM,CAAC,eAelC,CAAC;AAEF,eAAO,MAAM,WAAW,EAAE,MAAM,CAAC,eA2BhC,CAAC"}
|