@azure/arm-azurestackhci 1.1.0 → 2.0.1-alpha.20220114.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +21 -0
- package/LICENSE +21 -0
- package/README.md +69 -80
- package/dist/index.js +2369 -0
- package/dist/index.js.map +1 -0
- package/dist/index.min.js +1 -0
- package/dist/index.min.js.map +1 -0
- package/dist-esm/src/azureStackHCIClient.d.ts +21 -0
- package/dist-esm/src/azureStackHCIClient.d.ts.map +1 -0
- package/dist-esm/src/azureStackHCIClient.js +54 -0
- package/dist-esm/src/azureStackHCIClient.js.map +1 -0
- package/dist-esm/src/index.d.ts +5 -0
- package/dist-esm/src/index.d.ts.map +1 -0
- package/dist-esm/src/index.js +12 -0
- package/dist-esm/src/index.js.map +1 -0
- package/dist-esm/src/lroImpl.d.ts +16 -0
- package/dist-esm/src/lroImpl.d.ts.map +1 -0
- package/dist-esm/src/lroImpl.js +29 -0
- package/dist-esm/src/lroImpl.js.map +1 -0
- package/dist-esm/src/models/index.d.ts +864 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +135 -0
- package/dist-esm/src/models/index.js.map +1 -0
- package/dist-esm/src/models/mappers.d.ts +23 -0
- package/dist-esm/src/models/mappers.d.ts.map +1 -0
- package/dist-esm/src/models/mappers.js +881 -0
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +16 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +137 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/arcSettings.d.ts +72 -0
- package/dist-esm/src/operations/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operations/arcSettings.js +281 -0
- package/dist-esm/src/operations/arcSettings.js.map +1 -0
- package/dist-esm/src/operations/clusters.d.ts +83 -0
- package/dist-esm/src/operations/clusters.d.ts.map +1 -0
- package/dist-esm/src/operations/clusters.js +356 -0
- package/dist-esm/src/operations/clusters.js.map +1 -0
- package/dist-esm/src/operations/extensions.d.ts +109 -0
- package/dist-esm/src/operations/extensions.d.ts.map +1 -0
- package/dist-esm/src/operations/extensions.js +462 -0
- package/dist-esm/src/operations/extensions.js.map +1 -0
- package/dist-esm/src/operations/index.d.ts +5 -0
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/dist-esm/src/operations/index.js +12 -0
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +18 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +46 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js +9 -0
- package/dist-esm/src/operationsInterfaces/arcSettings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts +47 -0
- package/dist-esm/src/operationsInterfaces/clusters.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/clusters.js +9 -0
- package/dist-esm/src/operationsInterfaces/clusters.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts +82 -0
- package/dist-esm/src/operationsInterfaces/extensions.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/extensions.js +9 -0
- package/dist-esm/src/operationsInterfaces/extensions.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +5 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +12 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +10 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.js +9 -0
- package/dist-esm/src/operationsInterfaces/operations.js.map +1 -0
- package/dist-esm/test/sampleTest.d.ts +2 -0
- package/dist-esm/test/sampleTest.d.ts.map +1 -0
- package/dist-esm/test/sampleTest.js +40 -0
- package/dist-esm/test/sampleTest.js.map +1 -0
- package/package.json +65 -22
- package/review/arm-azurestackhci.api.md +650 -0
- package/rollup.config.js +181 -30
- package/src/azureStackHCIClient.ts +78 -37
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +775 -366
- package/src/models/mappers.ts +635 -239
- package/src/models/parameters.ts +112 -35
- package/src/operations/arcSettings.ts +394 -0
- package/src/operations/clusters.ts +279 -309
- package/src/operations/extensions.ts +672 -0
- package/src/operations/index.ts +6 -6
- package/src/operations/operations.ts +30 -45
- package/src/operationsInterfaces/arcSettings.ts +89 -0
- package/src/operationsInterfaces/clusters.ts +91 -0
- package/src/operationsInterfaces/extensions.ts +162 -0
- package/src/operationsInterfaces/index.ts +12 -0
- package/src/operationsInterfaces/operations.ts +21 -0
- package/tsconfig.json +3 -3
- package/types/arm-azurestackhci.d.ts +1146 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-azurestackhci.js +0 -1151
- package/dist/arm-azurestackhci.js.map +0 -1
- package/dist/arm-azurestackhci.min.js +0 -1
- package/dist/arm-azurestackhci.min.js.map +0 -1
- package/esm/azureStackHCIClient.d.ts +0 -25
- package/esm/azureStackHCIClient.d.ts.map +0 -1
- package/esm/azureStackHCIClient.js +0 -39
- package/esm/azureStackHCIClient.js.map +0 -1
- package/esm/azureStackHCIClientContext.d.ts +0 -22
- package/esm/azureStackHCIClientContext.d.ts.map +0 -1
- package/esm/azureStackHCIClientContext.js +0 -61
- package/esm/azureStackHCIClientContext.js.map +0 -1
- package/esm/models/clustersMappers.d.ts +0 -2
- package/esm/models/clustersMappers.d.ts.map +0 -1
- package/esm/models/clustersMappers.js +0 -9
- package/esm/models/clustersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -509
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -8
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -19
- package/esm/models/mappers.d.ts.map +0 -1
- package/esm/models/mappers.js +0 -527
- package/esm/models/mappers.js.map +0 -1
- package/esm/models/operationsMappers.d.ts +0 -2
- package/esm/models/operationsMappers.d.ts.map +0 -1
- package/esm/models/operationsMappers.js +0 -9
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -8
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -82
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/clusters.d.ts +0 -169
- package/esm/operations/clusters.d.ts.map +0 -1
- package/esm/operations/clusters.js +0 -273
- package/esm/operations/clusters.js.map +0 -1
- package/esm/operations/index.d.ts +0 -3
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js +0 -12
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -28
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -51
- package/esm/operations/operations.js.map +0 -1
- package/src/azureStackHCIClientContext.ts +0 -68
- package/src/models/clustersMappers.ts +0 -23
- package/src/models/operationsMappers.ts +0 -16
|
@@ -0,0 +1,864 @@
|
|
|
1
|
+
import * as coreClient from "@azure/core-client";
|
|
2
|
+
/** List of ArcSetting proxy resources for the HCI cluster. */
|
|
3
|
+
export interface ArcSettingList {
|
|
4
|
+
/**
|
|
5
|
+
* List of ArcSetting proxy resources.
|
|
6
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
7
|
+
*/
|
|
8
|
+
readonly value?: ArcSetting[];
|
|
9
|
+
/**
|
|
10
|
+
* Link to the next set of results.
|
|
11
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
12
|
+
*/
|
|
13
|
+
readonly nextLink?: string;
|
|
14
|
+
}
|
|
15
|
+
/** Status of Arc agent for a particular node in HCI Cluster. */
|
|
16
|
+
export interface PerNodeState {
|
|
17
|
+
/**
|
|
18
|
+
* Name of the Node in HCI Cluster
|
|
19
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
20
|
+
*/
|
|
21
|
+
readonly name?: string;
|
|
22
|
+
/**
|
|
23
|
+
* Fully qualified resource ID for the Arc agent of this node.
|
|
24
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
25
|
+
*/
|
|
26
|
+
readonly arcInstance?: string;
|
|
27
|
+
/**
|
|
28
|
+
* State of Arc agent in this node.
|
|
29
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
30
|
+
*/
|
|
31
|
+
readonly state?: NodeArcState;
|
|
32
|
+
}
|
|
33
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
34
|
+
export interface Resource {
|
|
35
|
+
/**
|
|
36
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
37
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
38
|
+
*/
|
|
39
|
+
readonly id?: string;
|
|
40
|
+
/**
|
|
41
|
+
* The name of the resource
|
|
42
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
43
|
+
*/
|
|
44
|
+
readonly name?: string;
|
|
45
|
+
/**
|
|
46
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
47
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
48
|
+
*/
|
|
49
|
+
readonly type?: string;
|
|
50
|
+
}
|
|
51
|
+
/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */
|
|
52
|
+
export interface ErrorResponse {
|
|
53
|
+
/** The error object. */
|
|
54
|
+
error?: ErrorDetail;
|
|
55
|
+
}
|
|
56
|
+
/** The error detail. */
|
|
57
|
+
export interface ErrorDetail {
|
|
58
|
+
/**
|
|
59
|
+
* The error code.
|
|
60
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
61
|
+
*/
|
|
62
|
+
readonly code?: string;
|
|
63
|
+
/**
|
|
64
|
+
* The error message.
|
|
65
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
66
|
+
*/
|
|
67
|
+
readonly message?: string;
|
|
68
|
+
/**
|
|
69
|
+
* The error target.
|
|
70
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
71
|
+
*/
|
|
72
|
+
readonly target?: string;
|
|
73
|
+
/**
|
|
74
|
+
* The error details.
|
|
75
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
76
|
+
*/
|
|
77
|
+
readonly details?: ErrorDetail[];
|
|
78
|
+
/**
|
|
79
|
+
* The error additional info.
|
|
80
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
81
|
+
*/
|
|
82
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
83
|
+
}
|
|
84
|
+
/** The resource management error additional info. */
|
|
85
|
+
export interface ErrorAdditionalInfo {
|
|
86
|
+
/**
|
|
87
|
+
* The additional info type.
|
|
88
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
89
|
+
*/
|
|
90
|
+
readonly type?: string;
|
|
91
|
+
/**
|
|
92
|
+
* The additional info.
|
|
93
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
94
|
+
*/
|
|
95
|
+
readonly info?: Record<string, unknown>;
|
|
96
|
+
}
|
|
97
|
+
/** List of clusters. */
|
|
98
|
+
export interface ClusterList {
|
|
99
|
+
/** List of clusters. */
|
|
100
|
+
value?: Cluster[];
|
|
101
|
+
/**
|
|
102
|
+
* Link to the next set of results.
|
|
103
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
104
|
+
*/
|
|
105
|
+
readonly nextLink?: string;
|
|
106
|
+
}
|
|
107
|
+
/** Desired properties of the cluster. */
|
|
108
|
+
export interface ClusterDesiredProperties {
|
|
109
|
+
/** Desired state of Windows Server Subscription. */
|
|
110
|
+
windowsServerSubscription?: WindowsServerSubscription;
|
|
111
|
+
/** Desired level of diagnostic data emitted by the cluster. */
|
|
112
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
113
|
+
}
|
|
114
|
+
/** Properties reported by cluster agent. */
|
|
115
|
+
export interface ClusterReportedProperties {
|
|
116
|
+
/**
|
|
117
|
+
* Name of the on-prem cluster connected to this resource.
|
|
118
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
119
|
+
*/
|
|
120
|
+
readonly clusterName?: string;
|
|
121
|
+
/**
|
|
122
|
+
* Unique id generated by the on-prem cluster.
|
|
123
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
124
|
+
*/
|
|
125
|
+
readonly clusterId?: string;
|
|
126
|
+
/**
|
|
127
|
+
* Version of the cluster software.
|
|
128
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
129
|
+
*/
|
|
130
|
+
readonly clusterVersion?: string;
|
|
131
|
+
/**
|
|
132
|
+
* List of nodes reported by the cluster.
|
|
133
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
134
|
+
*/
|
|
135
|
+
readonly nodes?: ClusterNode[];
|
|
136
|
+
/**
|
|
137
|
+
* Last time the cluster reported the data.
|
|
138
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
139
|
+
*/
|
|
140
|
+
readonly lastUpdated?: Date;
|
|
141
|
+
/**
|
|
142
|
+
* IMDS attestation status of the cluster.
|
|
143
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
144
|
+
*/
|
|
145
|
+
readonly imdsAttestation?: ImdsAttestation;
|
|
146
|
+
/** Level of diagnostic data emitted by the cluster. */
|
|
147
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
148
|
+
}
|
|
149
|
+
/** Cluster node details. */
|
|
150
|
+
export interface ClusterNode {
|
|
151
|
+
/**
|
|
152
|
+
* Name of the cluster node.
|
|
153
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
154
|
+
*/
|
|
155
|
+
readonly name?: string;
|
|
156
|
+
/**
|
|
157
|
+
* Id of the node in the cluster.
|
|
158
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
159
|
+
*/
|
|
160
|
+
readonly id?: number;
|
|
161
|
+
/**
|
|
162
|
+
* State of Windows Server Subscription.
|
|
163
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
164
|
+
*/
|
|
165
|
+
readonly windowsServerSubscription?: WindowsServerSubscription;
|
|
166
|
+
/**
|
|
167
|
+
* Manufacturer of the cluster node hardware.
|
|
168
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
169
|
+
*/
|
|
170
|
+
readonly manufacturer?: string;
|
|
171
|
+
/**
|
|
172
|
+
* Model name of the cluster node hardware.
|
|
173
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
174
|
+
*/
|
|
175
|
+
readonly model?: string;
|
|
176
|
+
/**
|
|
177
|
+
* Operating system running on the cluster node.
|
|
178
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
179
|
+
*/
|
|
180
|
+
readonly osName?: string;
|
|
181
|
+
/**
|
|
182
|
+
* Version of the operating system running on the cluster node.
|
|
183
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
184
|
+
*/
|
|
185
|
+
readonly osVersion?: string;
|
|
186
|
+
/**
|
|
187
|
+
* Immutable id of the cluster node.
|
|
188
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
189
|
+
*/
|
|
190
|
+
readonly serialNumber?: string;
|
|
191
|
+
/**
|
|
192
|
+
* Number of physical cores on the cluster node.
|
|
193
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
194
|
+
*/
|
|
195
|
+
readonly coreCount?: number;
|
|
196
|
+
/**
|
|
197
|
+
* Total available memory on the cluster node (in GiB).
|
|
198
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
199
|
+
*/
|
|
200
|
+
readonly memoryInGiB?: number;
|
|
201
|
+
}
|
|
202
|
+
/** Cluster details to update. */
|
|
203
|
+
export interface ClusterPatch {
|
|
204
|
+
/** Resource tags. */
|
|
205
|
+
tags?: {
|
|
206
|
+
[propertyName: string]: string;
|
|
207
|
+
};
|
|
208
|
+
/** Endpoint configured for management from the Azure portal */
|
|
209
|
+
cloudManagementEndpoint?: string;
|
|
210
|
+
/** App id of cluster AAD identity. */
|
|
211
|
+
aadClientId?: string;
|
|
212
|
+
/** Tenant id of cluster AAD identity. */
|
|
213
|
+
aadTenantId?: string;
|
|
214
|
+
/** Desired properties of the cluster. */
|
|
215
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
216
|
+
}
|
|
217
|
+
/** List of Extensions in HCI cluster. */
|
|
218
|
+
export interface ExtensionList {
|
|
219
|
+
/**
|
|
220
|
+
* List of Extensions in HCI cluster.
|
|
221
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
222
|
+
*/
|
|
223
|
+
readonly value?: Extension[];
|
|
224
|
+
/**
|
|
225
|
+
* Link to the next set of results.
|
|
226
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
227
|
+
*/
|
|
228
|
+
readonly nextLink?: string;
|
|
229
|
+
}
|
|
230
|
+
/** Status of Arc Extension for a particular node in HCI Cluster. */
|
|
231
|
+
export interface PerNodeExtensionState {
|
|
232
|
+
/**
|
|
233
|
+
* Name of the node in HCI Cluster.
|
|
234
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
235
|
+
*/
|
|
236
|
+
readonly name?: string;
|
|
237
|
+
/**
|
|
238
|
+
* Fully qualified resource ID for the particular Arc Extension on this node.
|
|
239
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
240
|
+
*/
|
|
241
|
+
readonly extension?: string;
|
|
242
|
+
/**
|
|
243
|
+
* State of Arc Extension in this node.
|
|
244
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
245
|
+
*/
|
|
246
|
+
readonly state?: NodeExtensionState;
|
|
247
|
+
}
|
|
248
|
+
/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */
|
|
249
|
+
export interface OperationListResult {
|
|
250
|
+
/**
|
|
251
|
+
* List of operations supported by the resource provider
|
|
252
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
253
|
+
*/
|
|
254
|
+
readonly value?: Operation[];
|
|
255
|
+
/**
|
|
256
|
+
* URL to get the next set of operation list results (if there are any).
|
|
257
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
258
|
+
*/
|
|
259
|
+
readonly nextLink?: string;
|
|
260
|
+
}
|
|
261
|
+
/** Details of a REST API operation, returned from the Resource Provider Operations API */
|
|
262
|
+
export interface Operation {
|
|
263
|
+
/**
|
|
264
|
+
* The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"
|
|
265
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
266
|
+
*/
|
|
267
|
+
readonly name?: string;
|
|
268
|
+
/**
|
|
269
|
+
* Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
|
|
270
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
271
|
+
*/
|
|
272
|
+
readonly isDataAction?: boolean;
|
|
273
|
+
/** Localized display information for this particular operation. */
|
|
274
|
+
display?: OperationDisplay;
|
|
275
|
+
/**
|
|
276
|
+
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
|
|
277
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
278
|
+
*/
|
|
279
|
+
readonly origin?: Origin;
|
|
280
|
+
/**
|
|
281
|
+
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
|
|
282
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
283
|
+
*/
|
|
284
|
+
readonly actionType?: ActionType;
|
|
285
|
+
}
|
|
286
|
+
/** Localized display information for this particular operation. */
|
|
287
|
+
export interface OperationDisplay {
|
|
288
|
+
/**
|
|
289
|
+
* The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
|
|
290
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
291
|
+
*/
|
|
292
|
+
readonly provider?: string;
|
|
293
|
+
/**
|
|
294
|
+
* The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
|
|
295
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
296
|
+
*/
|
|
297
|
+
readonly resource?: string;
|
|
298
|
+
/**
|
|
299
|
+
* The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
|
|
300
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
301
|
+
*/
|
|
302
|
+
readonly operation?: string;
|
|
303
|
+
/**
|
|
304
|
+
* The short, localized friendly description of the operation; suitable for tool tips and detailed views.
|
|
305
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
306
|
+
*/
|
|
307
|
+
readonly description?: string;
|
|
308
|
+
}
|
|
309
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
310
|
+
export declare type ProxyResource = Resource & {};
|
|
311
|
+
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
312
|
+
export declare type TrackedResource = Resource & {
|
|
313
|
+
/** Resource tags. */
|
|
314
|
+
tags?: {
|
|
315
|
+
[propertyName: string]: string;
|
|
316
|
+
};
|
|
317
|
+
/** The geo-location where the resource lives */
|
|
318
|
+
location: string;
|
|
319
|
+
};
|
|
320
|
+
/** ArcSetting details. */
|
|
321
|
+
export declare type ArcSetting = ProxyResource & {
|
|
322
|
+
/**
|
|
323
|
+
* Provisioning state of the ArcSetting proxy resource.
|
|
324
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
325
|
+
*/
|
|
326
|
+
readonly provisioningState?: ProvisioningState;
|
|
327
|
+
/**
|
|
328
|
+
* The resource group that hosts the Arc agents, ie. Hybrid Compute Machine resources.
|
|
329
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
330
|
+
*/
|
|
331
|
+
readonly arcInstanceResourceGroup?: string;
|
|
332
|
+
/**
|
|
333
|
+
* Aggregate state of Arc agent across the nodes in this HCI cluster.
|
|
334
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
335
|
+
*/
|
|
336
|
+
readonly aggregateState?: ArcSettingAggregateState;
|
|
337
|
+
/**
|
|
338
|
+
* State of Arc agent in each of the nodes.
|
|
339
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
340
|
+
*/
|
|
341
|
+
readonly perNodeDetails?: PerNodeState[];
|
|
342
|
+
/** The identity that created the resource. */
|
|
343
|
+
createdBy?: string;
|
|
344
|
+
/** The type of identity that created the resource. */
|
|
345
|
+
createdByType?: CreatedByType;
|
|
346
|
+
/** The timestamp of resource creation (UTC). */
|
|
347
|
+
createdAt?: Date;
|
|
348
|
+
/** The identity that last modified the resource. */
|
|
349
|
+
lastModifiedBy?: string;
|
|
350
|
+
/** The type of identity that last modified the resource. */
|
|
351
|
+
lastModifiedByType?: CreatedByType;
|
|
352
|
+
/** The timestamp of resource last modification (UTC) */
|
|
353
|
+
lastModifiedAt?: Date;
|
|
354
|
+
};
|
|
355
|
+
/** Details of a particular extension in HCI Cluster. */
|
|
356
|
+
export declare type Extension = ProxyResource & {
|
|
357
|
+
/**
|
|
358
|
+
* Provisioning state of the Extension proxy resource.
|
|
359
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
360
|
+
*/
|
|
361
|
+
readonly provisioningState?: ProvisioningState;
|
|
362
|
+
/**
|
|
363
|
+
* Aggregate state of Arc Extensions across the nodes in this HCI cluster.
|
|
364
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
365
|
+
*/
|
|
366
|
+
readonly aggregateState?: ExtensionAggregateState;
|
|
367
|
+
/**
|
|
368
|
+
* State of Arc Extension in each of the nodes.
|
|
369
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
370
|
+
*/
|
|
371
|
+
readonly perNodeExtensionDetails?: PerNodeExtensionState[];
|
|
372
|
+
/** How the extension handler should be forced to update even if the extension configuration has not changed. */
|
|
373
|
+
forceUpdateTag?: string;
|
|
374
|
+
/** The name of the extension handler publisher. */
|
|
375
|
+
publisher?: string;
|
|
376
|
+
/** Specifies the type of the extension; an example is "CustomScriptExtension". */
|
|
377
|
+
typePropertiesExtensionParametersType?: string;
|
|
378
|
+
/** Specifies the version of the script handler. */
|
|
379
|
+
typeHandlerVersion?: string;
|
|
380
|
+
/** Indicates whether the extension should use a newer minor version if one is available at deployment time. Once deployed, however, the extension will not upgrade minor versions unless redeployed, even with this property set to true. */
|
|
381
|
+
autoUpgradeMinorVersion?: boolean;
|
|
382
|
+
/** Json formatted public settings for the extension. */
|
|
383
|
+
settings?: Record<string, unknown>;
|
|
384
|
+
/** Protected settings (may contain secrets). */
|
|
385
|
+
protectedSettings?: Record<string, unknown>;
|
|
386
|
+
/** The identity that created the resource. */
|
|
387
|
+
createdBy?: string;
|
|
388
|
+
/** The type of identity that created the resource. */
|
|
389
|
+
createdByType?: CreatedByType;
|
|
390
|
+
/** The timestamp of resource creation (UTC). */
|
|
391
|
+
createdAt?: Date;
|
|
392
|
+
/** The identity that last modified the resource. */
|
|
393
|
+
lastModifiedBy?: string;
|
|
394
|
+
/** The type of identity that last modified the resource. */
|
|
395
|
+
lastModifiedByType?: CreatedByType;
|
|
396
|
+
/** The timestamp of resource last modification (UTC) */
|
|
397
|
+
lastModifiedAt?: Date;
|
|
398
|
+
};
|
|
399
|
+
/** Cluster details. */
|
|
400
|
+
export declare type Cluster = TrackedResource & {
|
|
401
|
+
/**
|
|
402
|
+
* Provisioning state.
|
|
403
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
404
|
+
*/
|
|
405
|
+
readonly provisioningState?: ProvisioningState;
|
|
406
|
+
/**
|
|
407
|
+
* Status of the cluster agent.
|
|
408
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
409
|
+
*/
|
|
410
|
+
readonly status?: Status;
|
|
411
|
+
/**
|
|
412
|
+
* Unique, immutable resource id.
|
|
413
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
414
|
+
*/
|
|
415
|
+
readonly cloudId?: string;
|
|
416
|
+
/** Endpoint configured for management from the Azure portal. */
|
|
417
|
+
cloudManagementEndpoint?: string;
|
|
418
|
+
/** App id of cluster AAD identity. */
|
|
419
|
+
aadClientId?: string;
|
|
420
|
+
/** Tenant id of cluster AAD identity. */
|
|
421
|
+
aadTenantId?: string;
|
|
422
|
+
/** Desired properties of the cluster. */
|
|
423
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
424
|
+
/**
|
|
425
|
+
* Properties reported by cluster agent.
|
|
426
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
427
|
+
*/
|
|
428
|
+
readonly reportedProperties?: ClusterReportedProperties;
|
|
429
|
+
/**
|
|
430
|
+
* Number of days remaining in the trial period.
|
|
431
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
432
|
+
*/
|
|
433
|
+
readonly trialDaysRemaining?: number;
|
|
434
|
+
/**
|
|
435
|
+
* Type of billing applied to the resource.
|
|
436
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
437
|
+
*/
|
|
438
|
+
readonly billingModel?: string;
|
|
439
|
+
/**
|
|
440
|
+
* First cluster sync timestamp.
|
|
441
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
442
|
+
*/
|
|
443
|
+
readonly registrationTimestamp?: Date;
|
|
444
|
+
/**
|
|
445
|
+
* Most recent cluster sync timestamp.
|
|
446
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
447
|
+
*/
|
|
448
|
+
readonly lastSyncTimestamp?: Date;
|
|
449
|
+
/**
|
|
450
|
+
* Most recent billing meter timestamp.
|
|
451
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
452
|
+
*/
|
|
453
|
+
readonly lastBillingTimestamp?: Date;
|
|
454
|
+
/** The identity that created the resource. */
|
|
455
|
+
createdBy?: string;
|
|
456
|
+
/** The type of identity that created the resource. */
|
|
457
|
+
createdByType?: CreatedByType;
|
|
458
|
+
/** The timestamp of resource creation (UTC). */
|
|
459
|
+
createdAt?: Date;
|
|
460
|
+
/** The identity that last modified the resource. */
|
|
461
|
+
lastModifiedBy?: string;
|
|
462
|
+
/** The type of identity that last modified the resource. */
|
|
463
|
+
lastModifiedByType?: CreatedByType;
|
|
464
|
+
/** The timestamp of resource last modification (UTC) */
|
|
465
|
+
lastModifiedAt?: Date;
|
|
466
|
+
};
|
|
467
|
+
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
468
|
+
export declare enum KnownCreatedByType {
|
|
469
|
+
User = "User",
|
|
470
|
+
Application = "Application",
|
|
471
|
+
ManagedIdentity = "ManagedIdentity",
|
|
472
|
+
Key = "Key"
|
|
473
|
+
}
|
|
474
|
+
/**
|
|
475
|
+
* Defines values for CreatedByType. \
|
|
476
|
+
* {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
|
|
477
|
+
* this enum contains the known values that the service supports.
|
|
478
|
+
* ### Known values supported by the service
|
|
479
|
+
* **User** \
|
|
480
|
+
* **Application** \
|
|
481
|
+
* **ManagedIdentity** \
|
|
482
|
+
* **Key**
|
|
483
|
+
*/
|
|
484
|
+
export declare type CreatedByType = string;
|
|
485
|
+
/** Known values of {@link ProvisioningState} that the service accepts. */
|
|
486
|
+
export declare enum KnownProvisioningState {
|
|
487
|
+
Succeeded = "Succeeded",
|
|
488
|
+
Failed = "Failed",
|
|
489
|
+
Canceled = "Canceled",
|
|
490
|
+
Accepted = "Accepted",
|
|
491
|
+
Provisioning = "Provisioning"
|
|
492
|
+
}
|
|
493
|
+
/**
|
|
494
|
+
* Defines values for ProvisioningState. \
|
|
495
|
+
* {@link KnownProvisioningState} can be used interchangeably with ProvisioningState,
|
|
496
|
+
* this enum contains the known values that the service supports.
|
|
497
|
+
* ### Known values supported by the service
|
|
498
|
+
* **Succeeded** \
|
|
499
|
+
* **Failed** \
|
|
500
|
+
* **Canceled** \
|
|
501
|
+
* **Accepted** \
|
|
502
|
+
* **Provisioning**
|
|
503
|
+
*/
|
|
504
|
+
export declare type ProvisioningState = string;
|
|
505
|
+
/** Known values of {@link ArcSettingAggregateState} that the service accepts. */
|
|
506
|
+
export declare enum KnownArcSettingAggregateState {
|
|
507
|
+
NotSpecified = "NotSpecified",
|
|
508
|
+
Error = "Error",
|
|
509
|
+
Succeeded = "Succeeded",
|
|
510
|
+
Canceled = "Canceled",
|
|
511
|
+
Failed = "Failed",
|
|
512
|
+
Connected = "Connected",
|
|
513
|
+
Disconnected = "Disconnected",
|
|
514
|
+
Deleted = "Deleted",
|
|
515
|
+
Creating = "Creating",
|
|
516
|
+
Updating = "Updating",
|
|
517
|
+
Deleting = "Deleting",
|
|
518
|
+
Moving = "Moving",
|
|
519
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
520
|
+
PartiallyConnected = "PartiallyConnected",
|
|
521
|
+
InProgress = "InProgress"
|
|
522
|
+
}
|
|
523
|
+
/**
|
|
524
|
+
* Defines values for ArcSettingAggregateState. \
|
|
525
|
+
* {@link KnownArcSettingAggregateState} can be used interchangeably with ArcSettingAggregateState,
|
|
526
|
+
* this enum contains the known values that the service supports.
|
|
527
|
+
* ### Known values supported by the service
|
|
528
|
+
* **NotSpecified** \
|
|
529
|
+
* **Error** \
|
|
530
|
+
* **Succeeded** \
|
|
531
|
+
* **Canceled** \
|
|
532
|
+
* **Failed** \
|
|
533
|
+
* **Connected** \
|
|
534
|
+
* **Disconnected** \
|
|
535
|
+
* **Deleted** \
|
|
536
|
+
* **Creating** \
|
|
537
|
+
* **Updating** \
|
|
538
|
+
* **Deleting** \
|
|
539
|
+
* **Moving** \
|
|
540
|
+
* **PartiallySucceeded** \
|
|
541
|
+
* **PartiallyConnected** \
|
|
542
|
+
* **InProgress**
|
|
543
|
+
*/
|
|
544
|
+
export declare type ArcSettingAggregateState = string;
|
|
545
|
+
/** Known values of {@link NodeArcState} that the service accepts. */
|
|
546
|
+
export declare enum KnownNodeArcState {
|
|
547
|
+
NotSpecified = "NotSpecified",
|
|
548
|
+
Error = "Error",
|
|
549
|
+
Succeeded = "Succeeded",
|
|
550
|
+
Canceled = "Canceled",
|
|
551
|
+
Failed = "Failed",
|
|
552
|
+
Connected = "Connected",
|
|
553
|
+
Disconnected = "Disconnected",
|
|
554
|
+
Deleted = "Deleted",
|
|
555
|
+
Creating = "Creating",
|
|
556
|
+
Updating = "Updating",
|
|
557
|
+
Deleting = "Deleting",
|
|
558
|
+
Moving = "Moving"
|
|
559
|
+
}
|
|
560
|
+
/**
|
|
561
|
+
* Defines values for NodeArcState. \
|
|
562
|
+
* {@link KnownNodeArcState} can be used interchangeably with NodeArcState,
|
|
563
|
+
* this enum contains the known values that the service supports.
|
|
564
|
+
* ### Known values supported by the service
|
|
565
|
+
* **NotSpecified** \
|
|
566
|
+
* **Error** \
|
|
567
|
+
* **Succeeded** \
|
|
568
|
+
* **Canceled** \
|
|
569
|
+
* **Failed** \
|
|
570
|
+
* **Connected** \
|
|
571
|
+
* **Disconnected** \
|
|
572
|
+
* **Deleted** \
|
|
573
|
+
* **Creating** \
|
|
574
|
+
* **Updating** \
|
|
575
|
+
* **Deleting** \
|
|
576
|
+
* **Moving**
|
|
577
|
+
*/
|
|
578
|
+
export declare type NodeArcState = string;
|
|
579
|
+
/** Known values of {@link Status} that the service accepts. */
|
|
580
|
+
export declare enum KnownStatus {
|
|
581
|
+
NotYetRegistered = "NotYetRegistered",
|
|
582
|
+
ConnectedRecently = "ConnectedRecently",
|
|
583
|
+
NotConnectedRecently = "NotConnectedRecently",
|
|
584
|
+
Disconnected = "Disconnected",
|
|
585
|
+
Error = "Error"
|
|
586
|
+
}
|
|
587
|
+
/**
|
|
588
|
+
* Defines values for Status. \
|
|
589
|
+
* {@link KnownStatus} can be used interchangeably with Status,
|
|
590
|
+
* this enum contains the known values that the service supports.
|
|
591
|
+
* ### Known values supported by the service
|
|
592
|
+
* **NotYetRegistered** \
|
|
593
|
+
* **ConnectedRecently** \
|
|
594
|
+
* **NotConnectedRecently** \
|
|
595
|
+
* **Disconnected** \
|
|
596
|
+
* **Error**
|
|
597
|
+
*/
|
|
598
|
+
export declare type Status = string;
|
|
599
|
+
/** Known values of {@link WindowsServerSubscription} that the service accepts. */
|
|
600
|
+
export declare enum KnownWindowsServerSubscription {
|
|
601
|
+
Disabled = "Disabled",
|
|
602
|
+
Enabled = "Enabled"
|
|
603
|
+
}
|
|
604
|
+
/**
|
|
605
|
+
* Defines values for WindowsServerSubscription. \
|
|
606
|
+
* {@link KnownWindowsServerSubscription} can be used interchangeably with WindowsServerSubscription,
|
|
607
|
+
* this enum contains the known values that the service supports.
|
|
608
|
+
* ### Known values supported by the service
|
|
609
|
+
* **Disabled** \
|
|
610
|
+
* **Enabled**
|
|
611
|
+
*/
|
|
612
|
+
export declare type WindowsServerSubscription = string;
|
|
613
|
+
/** Known values of {@link DiagnosticLevel} that the service accepts. */
|
|
614
|
+
export declare enum KnownDiagnosticLevel {
|
|
615
|
+
Off = "Off",
|
|
616
|
+
Basic = "Basic",
|
|
617
|
+
Enhanced = "Enhanced"
|
|
618
|
+
}
|
|
619
|
+
/**
|
|
620
|
+
* Defines values for DiagnosticLevel. \
|
|
621
|
+
* {@link KnownDiagnosticLevel} can be used interchangeably with DiagnosticLevel,
|
|
622
|
+
* this enum contains the known values that the service supports.
|
|
623
|
+
* ### Known values supported by the service
|
|
624
|
+
* **Off** \
|
|
625
|
+
* **Basic** \
|
|
626
|
+
* **Enhanced**
|
|
627
|
+
*/
|
|
628
|
+
export declare type DiagnosticLevel = string;
|
|
629
|
+
/** Known values of {@link ImdsAttestation} that the service accepts. */
|
|
630
|
+
export declare enum KnownImdsAttestation {
|
|
631
|
+
Disabled = "Disabled",
|
|
632
|
+
Enabled = "Enabled"
|
|
633
|
+
}
|
|
634
|
+
/**
|
|
635
|
+
* Defines values for ImdsAttestation. \
|
|
636
|
+
* {@link KnownImdsAttestation} can be used interchangeably with ImdsAttestation,
|
|
637
|
+
* this enum contains the known values that the service supports.
|
|
638
|
+
* ### Known values supported by the service
|
|
639
|
+
* **Disabled** \
|
|
640
|
+
* **Enabled**
|
|
641
|
+
*/
|
|
642
|
+
export declare type ImdsAttestation = string;
|
|
643
|
+
/** Known values of {@link ExtensionAggregateState} that the service accepts. */
|
|
644
|
+
export declare enum KnownExtensionAggregateState {
|
|
645
|
+
NotSpecified = "NotSpecified",
|
|
646
|
+
Error = "Error",
|
|
647
|
+
Succeeded = "Succeeded",
|
|
648
|
+
Canceled = "Canceled",
|
|
649
|
+
Failed = "Failed",
|
|
650
|
+
Connected = "Connected",
|
|
651
|
+
Disconnected = "Disconnected",
|
|
652
|
+
Deleted = "Deleted",
|
|
653
|
+
Creating = "Creating",
|
|
654
|
+
Updating = "Updating",
|
|
655
|
+
Deleting = "Deleting",
|
|
656
|
+
Moving = "Moving",
|
|
657
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
658
|
+
PartiallyConnected = "PartiallyConnected",
|
|
659
|
+
InProgress = "InProgress"
|
|
660
|
+
}
|
|
661
|
+
/**
|
|
662
|
+
* Defines values for ExtensionAggregateState. \
|
|
663
|
+
* {@link KnownExtensionAggregateState} can be used interchangeably with ExtensionAggregateState,
|
|
664
|
+
* this enum contains the known values that the service supports.
|
|
665
|
+
* ### Known values supported by the service
|
|
666
|
+
* **NotSpecified** \
|
|
667
|
+
* **Error** \
|
|
668
|
+
* **Succeeded** \
|
|
669
|
+
* **Canceled** \
|
|
670
|
+
* **Failed** \
|
|
671
|
+
* **Connected** \
|
|
672
|
+
* **Disconnected** \
|
|
673
|
+
* **Deleted** \
|
|
674
|
+
* **Creating** \
|
|
675
|
+
* **Updating** \
|
|
676
|
+
* **Deleting** \
|
|
677
|
+
* **Moving** \
|
|
678
|
+
* **PartiallySucceeded** \
|
|
679
|
+
* **PartiallyConnected** \
|
|
680
|
+
* **InProgress**
|
|
681
|
+
*/
|
|
682
|
+
export declare type ExtensionAggregateState = string;
|
|
683
|
+
/** Known values of {@link NodeExtensionState} that the service accepts. */
|
|
684
|
+
export declare enum KnownNodeExtensionState {
|
|
685
|
+
NotSpecified = "NotSpecified",
|
|
686
|
+
Error = "Error",
|
|
687
|
+
Succeeded = "Succeeded",
|
|
688
|
+
Canceled = "Canceled",
|
|
689
|
+
Failed = "Failed",
|
|
690
|
+
Connected = "Connected",
|
|
691
|
+
Disconnected = "Disconnected",
|
|
692
|
+
Deleted = "Deleted",
|
|
693
|
+
Creating = "Creating",
|
|
694
|
+
Updating = "Updating",
|
|
695
|
+
Deleting = "Deleting",
|
|
696
|
+
Moving = "Moving"
|
|
697
|
+
}
|
|
698
|
+
/**
|
|
699
|
+
* Defines values for NodeExtensionState. \
|
|
700
|
+
* {@link KnownNodeExtensionState} can be used interchangeably with NodeExtensionState,
|
|
701
|
+
* this enum contains the known values that the service supports.
|
|
702
|
+
* ### Known values supported by the service
|
|
703
|
+
* **NotSpecified** \
|
|
704
|
+
* **Error** \
|
|
705
|
+
* **Succeeded** \
|
|
706
|
+
* **Canceled** \
|
|
707
|
+
* **Failed** \
|
|
708
|
+
* **Connected** \
|
|
709
|
+
* **Disconnected** \
|
|
710
|
+
* **Deleted** \
|
|
711
|
+
* **Creating** \
|
|
712
|
+
* **Updating** \
|
|
713
|
+
* **Deleting** \
|
|
714
|
+
* **Moving**
|
|
715
|
+
*/
|
|
716
|
+
export declare type NodeExtensionState = string;
|
|
717
|
+
/** Known values of {@link Origin} that the service accepts. */
|
|
718
|
+
export declare enum KnownOrigin {
|
|
719
|
+
User = "user",
|
|
720
|
+
System = "system",
|
|
721
|
+
UserSystem = "user,system"
|
|
722
|
+
}
|
|
723
|
+
/**
|
|
724
|
+
* Defines values for Origin. \
|
|
725
|
+
* {@link KnownOrigin} can be used interchangeably with Origin,
|
|
726
|
+
* this enum contains the known values that the service supports.
|
|
727
|
+
* ### Known values supported by the service
|
|
728
|
+
* **user** \
|
|
729
|
+
* **system** \
|
|
730
|
+
* **user,system**
|
|
731
|
+
*/
|
|
732
|
+
export declare type Origin = string;
|
|
733
|
+
/** Known values of {@link ActionType} that the service accepts. */
|
|
734
|
+
export declare enum KnownActionType {
|
|
735
|
+
Internal = "Internal"
|
|
736
|
+
}
|
|
737
|
+
/**
|
|
738
|
+
* Defines values for ActionType. \
|
|
739
|
+
* {@link KnownActionType} can be used interchangeably with ActionType,
|
|
740
|
+
* this enum contains the known values that the service supports.
|
|
741
|
+
* ### Known values supported by the service
|
|
742
|
+
* **Internal**
|
|
743
|
+
*/
|
|
744
|
+
export declare type ActionType = string;
|
|
745
|
+
/** Optional parameters. */
|
|
746
|
+
export interface ArcSettingsListByClusterOptionalParams extends coreClient.OperationOptions {
|
|
747
|
+
}
|
|
748
|
+
/** Contains response data for the listByCluster operation. */
|
|
749
|
+
export declare type ArcSettingsListByClusterResponse = ArcSettingList;
|
|
750
|
+
/** Optional parameters. */
|
|
751
|
+
export interface ArcSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
752
|
+
}
|
|
753
|
+
/** Contains response data for the get operation. */
|
|
754
|
+
export declare type ArcSettingsGetResponse = ArcSetting;
|
|
755
|
+
/** Optional parameters. */
|
|
756
|
+
export interface ArcSettingsCreateOptionalParams extends coreClient.OperationOptions {
|
|
757
|
+
}
|
|
758
|
+
/** Contains response data for the create operation. */
|
|
759
|
+
export declare type ArcSettingsCreateResponse = ArcSetting;
|
|
760
|
+
/** Optional parameters. */
|
|
761
|
+
export interface ArcSettingsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
762
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
763
|
+
updateIntervalInMs?: number;
|
|
764
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
765
|
+
resumeFrom?: string;
|
|
766
|
+
}
|
|
767
|
+
/** Optional parameters. */
|
|
768
|
+
export interface ArcSettingsListByClusterNextOptionalParams extends coreClient.OperationOptions {
|
|
769
|
+
}
|
|
770
|
+
/** Contains response data for the listByClusterNext operation. */
|
|
771
|
+
export declare type ArcSettingsListByClusterNextResponse = ArcSettingList;
|
|
772
|
+
/** Optional parameters. */
|
|
773
|
+
export interface ClustersListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
774
|
+
}
|
|
775
|
+
/** Contains response data for the listBySubscription operation. */
|
|
776
|
+
export declare type ClustersListBySubscriptionResponse = ClusterList;
|
|
777
|
+
/** Optional parameters. */
|
|
778
|
+
export interface ClustersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
779
|
+
}
|
|
780
|
+
/** Contains response data for the listByResourceGroup operation. */
|
|
781
|
+
export declare type ClustersListByResourceGroupResponse = ClusterList;
|
|
782
|
+
/** Optional parameters. */
|
|
783
|
+
export interface ClustersGetOptionalParams extends coreClient.OperationOptions {
|
|
784
|
+
}
|
|
785
|
+
/** Contains response data for the get operation. */
|
|
786
|
+
export declare type ClustersGetResponse = Cluster;
|
|
787
|
+
/** Optional parameters. */
|
|
788
|
+
export interface ClustersCreateOptionalParams extends coreClient.OperationOptions {
|
|
789
|
+
}
|
|
790
|
+
/** Contains response data for the create operation. */
|
|
791
|
+
export declare type ClustersCreateResponse = Cluster;
|
|
792
|
+
/** Optional parameters. */
|
|
793
|
+
export interface ClustersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
794
|
+
}
|
|
795
|
+
/** Contains response data for the update operation. */
|
|
796
|
+
export declare type ClustersUpdateResponse = Cluster;
|
|
797
|
+
/** Optional parameters. */
|
|
798
|
+
export interface ClustersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
799
|
+
}
|
|
800
|
+
/** Optional parameters. */
|
|
801
|
+
export interface ClustersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
802
|
+
}
|
|
803
|
+
/** Contains response data for the listBySubscriptionNext operation. */
|
|
804
|
+
export declare type ClustersListBySubscriptionNextResponse = ClusterList;
|
|
805
|
+
/** Optional parameters. */
|
|
806
|
+
export interface ClustersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
807
|
+
}
|
|
808
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
|
809
|
+
export declare type ClustersListByResourceGroupNextResponse = ClusterList;
|
|
810
|
+
/** Optional parameters. */
|
|
811
|
+
export interface ExtensionsListByArcSettingOptionalParams extends coreClient.OperationOptions {
|
|
812
|
+
}
|
|
813
|
+
/** Contains response data for the listByArcSetting operation. */
|
|
814
|
+
export declare type ExtensionsListByArcSettingResponse = ExtensionList;
|
|
815
|
+
/** Optional parameters. */
|
|
816
|
+
export interface ExtensionsGetOptionalParams extends coreClient.OperationOptions {
|
|
817
|
+
}
|
|
818
|
+
/** Contains response data for the get operation. */
|
|
819
|
+
export declare type ExtensionsGetResponse = Extension;
|
|
820
|
+
/** Optional parameters. */
|
|
821
|
+
export interface ExtensionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
822
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
823
|
+
updateIntervalInMs?: number;
|
|
824
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
825
|
+
resumeFrom?: string;
|
|
826
|
+
}
|
|
827
|
+
/** Contains response data for the create operation. */
|
|
828
|
+
export declare type ExtensionsCreateResponse = Extension;
|
|
829
|
+
/** Optional parameters. */
|
|
830
|
+
export interface ExtensionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
831
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
832
|
+
updateIntervalInMs?: number;
|
|
833
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
834
|
+
resumeFrom?: string;
|
|
835
|
+
}
|
|
836
|
+
/** Contains response data for the update operation. */
|
|
837
|
+
export declare type ExtensionsUpdateResponse = Extension;
|
|
838
|
+
/** Optional parameters. */
|
|
839
|
+
export interface ExtensionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
840
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
841
|
+
updateIntervalInMs?: number;
|
|
842
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
843
|
+
resumeFrom?: string;
|
|
844
|
+
}
|
|
845
|
+
/** Optional parameters. */
|
|
846
|
+
export interface ExtensionsListByArcSettingNextOptionalParams extends coreClient.OperationOptions {
|
|
847
|
+
}
|
|
848
|
+
/** Contains response data for the listByArcSettingNext operation. */
|
|
849
|
+
export declare type ExtensionsListByArcSettingNextResponse = ExtensionList;
|
|
850
|
+
/** Optional parameters. */
|
|
851
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
852
|
+
}
|
|
853
|
+
/** Contains response data for the list operation. */
|
|
854
|
+
export declare type OperationsListResponse = OperationListResult;
|
|
855
|
+
/** Optional parameters. */
|
|
856
|
+
export interface AzureStackHCIClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
857
|
+
/** server parameter */
|
|
858
|
+
$host?: string;
|
|
859
|
+
/** Api Version */
|
|
860
|
+
apiVersion?: string;
|
|
861
|
+
/** Overrides client endpoint. */
|
|
862
|
+
endpoint?: string;
|
|
863
|
+
}
|
|
864
|
+
//# sourceMappingURL=index.d.ts.map
|