@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,650 @@
|
|
|
1
|
+
## API Report File for "@azure/arm-azurestackhci"
|
|
2
|
+
|
|
3
|
+
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
|
4
|
+
|
|
5
|
+
```ts
|
|
6
|
+
|
|
7
|
+
import * as coreAuth from '@azure/core-auth';
|
|
8
|
+
import * as coreClient from '@azure/core-client';
|
|
9
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
10
|
+
import { PollerLike } from '@azure/core-lro';
|
|
11
|
+
import { PollOperationState } from '@azure/core-lro';
|
|
12
|
+
|
|
13
|
+
// @public
|
|
14
|
+
export type ActionType = string;
|
|
15
|
+
|
|
16
|
+
// @public
|
|
17
|
+
export type ArcSetting = ProxyResource & {
|
|
18
|
+
readonly provisioningState?: ProvisioningState;
|
|
19
|
+
readonly arcInstanceResourceGroup?: string;
|
|
20
|
+
readonly aggregateState?: ArcSettingAggregateState;
|
|
21
|
+
readonly perNodeDetails?: PerNodeState[];
|
|
22
|
+
createdBy?: string;
|
|
23
|
+
createdByType?: CreatedByType;
|
|
24
|
+
createdAt?: Date;
|
|
25
|
+
lastModifiedBy?: string;
|
|
26
|
+
lastModifiedByType?: CreatedByType;
|
|
27
|
+
lastModifiedAt?: Date;
|
|
28
|
+
};
|
|
29
|
+
|
|
30
|
+
// @public
|
|
31
|
+
export type ArcSettingAggregateState = string;
|
|
32
|
+
|
|
33
|
+
// @public
|
|
34
|
+
export interface ArcSettingList {
|
|
35
|
+
readonly nextLink?: string;
|
|
36
|
+
readonly value?: ArcSetting[];
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// @public
|
|
40
|
+
export interface ArcSettings {
|
|
41
|
+
beginDelete(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
42
|
+
beginDeleteAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<void>;
|
|
43
|
+
create(resourceGroupName: string, clusterName: string, arcSettingName: string, arcSetting: ArcSetting, options?: ArcSettingsCreateOptionalParams): Promise<ArcSettingsCreateResponse>;
|
|
44
|
+
get(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsGetOptionalParams): Promise<ArcSettingsGetResponse>;
|
|
45
|
+
listByCluster(resourceGroupName: string, clusterName: string, options?: ArcSettingsListByClusterOptionalParams): PagedAsyncIterableIterator<ArcSetting>;
|
|
46
|
+
}
|
|
47
|
+
|
|
48
|
+
// @public
|
|
49
|
+
export interface ArcSettingsCreateOptionalParams extends coreClient.OperationOptions {
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// @public
|
|
53
|
+
export type ArcSettingsCreateResponse = ArcSetting;
|
|
54
|
+
|
|
55
|
+
// @public
|
|
56
|
+
export interface ArcSettingsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
57
|
+
resumeFrom?: string;
|
|
58
|
+
updateIntervalInMs?: number;
|
|
59
|
+
}
|
|
60
|
+
|
|
61
|
+
// @public
|
|
62
|
+
export interface ArcSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
// @public
|
|
66
|
+
export type ArcSettingsGetResponse = ArcSetting;
|
|
67
|
+
|
|
68
|
+
// @public
|
|
69
|
+
export interface ArcSettingsListByClusterNextOptionalParams extends coreClient.OperationOptions {
|
|
70
|
+
}
|
|
71
|
+
|
|
72
|
+
// @public
|
|
73
|
+
export type ArcSettingsListByClusterNextResponse = ArcSettingList;
|
|
74
|
+
|
|
75
|
+
// @public
|
|
76
|
+
export interface ArcSettingsListByClusterOptionalParams extends coreClient.OperationOptions {
|
|
77
|
+
}
|
|
78
|
+
|
|
79
|
+
// @public
|
|
80
|
+
export type ArcSettingsListByClusterResponse = ArcSettingList;
|
|
81
|
+
|
|
82
|
+
// @public (undocumented)
|
|
83
|
+
export class AzureStackHCIClient extends coreClient.ServiceClient {
|
|
84
|
+
// (undocumented)
|
|
85
|
+
$host: string;
|
|
86
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureStackHCIClientOptionalParams);
|
|
87
|
+
// (undocumented)
|
|
88
|
+
apiVersion: string;
|
|
89
|
+
// (undocumented)
|
|
90
|
+
arcSettings: ArcSettings;
|
|
91
|
+
// (undocumented)
|
|
92
|
+
clusters: Clusters;
|
|
93
|
+
// (undocumented)
|
|
94
|
+
extensions: Extensions;
|
|
95
|
+
// (undocumented)
|
|
96
|
+
operations: Operations;
|
|
97
|
+
// (undocumented)
|
|
98
|
+
subscriptionId: string;
|
|
99
|
+
}
|
|
100
|
+
|
|
101
|
+
// @public
|
|
102
|
+
export interface AzureStackHCIClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
103
|
+
$host?: string;
|
|
104
|
+
apiVersion?: string;
|
|
105
|
+
endpoint?: string;
|
|
106
|
+
}
|
|
107
|
+
|
|
108
|
+
// @public
|
|
109
|
+
export type Cluster = TrackedResource & {
|
|
110
|
+
readonly provisioningState?: ProvisioningState;
|
|
111
|
+
readonly status?: Status;
|
|
112
|
+
readonly cloudId?: string;
|
|
113
|
+
cloudManagementEndpoint?: string;
|
|
114
|
+
aadClientId?: string;
|
|
115
|
+
aadTenantId?: string;
|
|
116
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
117
|
+
readonly reportedProperties?: ClusterReportedProperties;
|
|
118
|
+
readonly trialDaysRemaining?: number;
|
|
119
|
+
readonly billingModel?: string;
|
|
120
|
+
readonly registrationTimestamp?: Date;
|
|
121
|
+
readonly lastSyncTimestamp?: Date;
|
|
122
|
+
readonly lastBillingTimestamp?: Date;
|
|
123
|
+
createdBy?: string;
|
|
124
|
+
createdByType?: CreatedByType;
|
|
125
|
+
createdAt?: Date;
|
|
126
|
+
lastModifiedBy?: string;
|
|
127
|
+
lastModifiedByType?: CreatedByType;
|
|
128
|
+
lastModifiedAt?: Date;
|
|
129
|
+
};
|
|
130
|
+
|
|
131
|
+
// @public
|
|
132
|
+
export interface ClusterDesiredProperties {
|
|
133
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
134
|
+
windowsServerSubscription?: WindowsServerSubscription;
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// @public
|
|
138
|
+
export interface ClusterList {
|
|
139
|
+
readonly nextLink?: string;
|
|
140
|
+
value?: Cluster[];
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @public
|
|
144
|
+
export interface ClusterNode {
|
|
145
|
+
readonly coreCount?: number;
|
|
146
|
+
readonly id?: number;
|
|
147
|
+
readonly manufacturer?: string;
|
|
148
|
+
readonly memoryInGiB?: number;
|
|
149
|
+
readonly model?: string;
|
|
150
|
+
readonly name?: string;
|
|
151
|
+
readonly osName?: string;
|
|
152
|
+
readonly osVersion?: string;
|
|
153
|
+
readonly serialNumber?: string;
|
|
154
|
+
readonly windowsServerSubscription?: WindowsServerSubscription;
|
|
155
|
+
}
|
|
156
|
+
|
|
157
|
+
// @public
|
|
158
|
+
export interface ClusterPatch {
|
|
159
|
+
aadClientId?: string;
|
|
160
|
+
aadTenantId?: string;
|
|
161
|
+
cloudManagementEndpoint?: string;
|
|
162
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
163
|
+
tags?: {
|
|
164
|
+
[propertyName: string]: string;
|
|
165
|
+
};
|
|
166
|
+
}
|
|
167
|
+
|
|
168
|
+
// @public
|
|
169
|
+
export interface ClusterReportedProperties {
|
|
170
|
+
readonly clusterId?: string;
|
|
171
|
+
readonly clusterName?: string;
|
|
172
|
+
readonly clusterVersion?: string;
|
|
173
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
174
|
+
readonly imdsAttestation?: ImdsAttestation;
|
|
175
|
+
readonly lastUpdated?: Date;
|
|
176
|
+
readonly nodes?: ClusterNode[];
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// @public
|
|
180
|
+
export interface Clusters {
|
|
181
|
+
create(resourceGroupName: string, clusterName: string, cluster: Cluster, options?: ClustersCreateOptionalParams): Promise<ClustersCreateResponse>;
|
|
182
|
+
delete(resourceGroupName: string, clusterName: string, options?: ClustersDeleteOptionalParams): Promise<void>;
|
|
183
|
+
get(resourceGroupName: string, clusterName: string, options?: ClustersGetOptionalParams): Promise<ClustersGetResponse>;
|
|
184
|
+
listByResourceGroup(resourceGroupName: string, options?: ClustersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Cluster>;
|
|
185
|
+
listBySubscription(options?: ClustersListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Cluster>;
|
|
186
|
+
update(resourceGroupName: string, clusterName: string, cluster: ClusterPatch, options?: ClustersUpdateOptionalParams): Promise<ClustersUpdateResponse>;
|
|
187
|
+
}
|
|
188
|
+
|
|
189
|
+
// @public
|
|
190
|
+
export interface ClustersCreateOptionalParams extends coreClient.OperationOptions {
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// @public
|
|
194
|
+
export type ClustersCreateResponse = Cluster;
|
|
195
|
+
|
|
196
|
+
// @public
|
|
197
|
+
export interface ClustersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// @public
|
|
201
|
+
export interface ClustersGetOptionalParams extends coreClient.OperationOptions {
|
|
202
|
+
}
|
|
203
|
+
|
|
204
|
+
// @public
|
|
205
|
+
export type ClustersGetResponse = Cluster;
|
|
206
|
+
|
|
207
|
+
// @public
|
|
208
|
+
export interface ClustersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
209
|
+
}
|
|
210
|
+
|
|
211
|
+
// @public
|
|
212
|
+
export type ClustersListByResourceGroupNextResponse = ClusterList;
|
|
213
|
+
|
|
214
|
+
// @public
|
|
215
|
+
export interface ClustersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
216
|
+
}
|
|
217
|
+
|
|
218
|
+
// @public
|
|
219
|
+
export type ClustersListByResourceGroupResponse = ClusterList;
|
|
220
|
+
|
|
221
|
+
// @public
|
|
222
|
+
export interface ClustersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
223
|
+
}
|
|
224
|
+
|
|
225
|
+
// @public
|
|
226
|
+
export type ClustersListBySubscriptionNextResponse = ClusterList;
|
|
227
|
+
|
|
228
|
+
// @public
|
|
229
|
+
export interface ClustersListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
230
|
+
}
|
|
231
|
+
|
|
232
|
+
// @public
|
|
233
|
+
export type ClustersListBySubscriptionResponse = ClusterList;
|
|
234
|
+
|
|
235
|
+
// @public
|
|
236
|
+
export interface ClustersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
237
|
+
}
|
|
238
|
+
|
|
239
|
+
// @public
|
|
240
|
+
export type ClustersUpdateResponse = Cluster;
|
|
241
|
+
|
|
242
|
+
// @public
|
|
243
|
+
export type CreatedByType = string;
|
|
244
|
+
|
|
245
|
+
// @public
|
|
246
|
+
export type DiagnosticLevel = string;
|
|
247
|
+
|
|
248
|
+
// @public
|
|
249
|
+
export interface ErrorAdditionalInfo {
|
|
250
|
+
readonly info?: Record<string, unknown>;
|
|
251
|
+
readonly type?: string;
|
|
252
|
+
}
|
|
253
|
+
|
|
254
|
+
// @public
|
|
255
|
+
export interface ErrorDetail {
|
|
256
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
257
|
+
readonly code?: string;
|
|
258
|
+
readonly details?: ErrorDetail[];
|
|
259
|
+
readonly message?: string;
|
|
260
|
+
readonly target?: string;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// @public
|
|
264
|
+
export interface ErrorResponse {
|
|
265
|
+
error?: ErrorDetail;
|
|
266
|
+
}
|
|
267
|
+
|
|
268
|
+
// @public
|
|
269
|
+
export type Extension = ProxyResource & {
|
|
270
|
+
readonly provisioningState?: ProvisioningState;
|
|
271
|
+
readonly aggregateState?: ExtensionAggregateState;
|
|
272
|
+
readonly perNodeExtensionDetails?: PerNodeExtensionState[];
|
|
273
|
+
forceUpdateTag?: string;
|
|
274
|
+
publisher?: string;
|
|
275
|
+
typePropertiesExtensionParametersType?: string;
|
|
276
|
+
typeHandlerVersion?: string;
|
|
277
|
+
autoUpgradeMinorVersion?: boolean;
|
|
278
|
+
settings?: Record<string, unknown>;
|
|
279
|
+
protectedSettings?: Record<string, unknown>;
|
|
280
|
+
createdBy?: string;
|
|
281
|
+
createdByType?: CreatedByType;
|
|
282
|
+
createdAt?: Date;
|
|
283
|
+
lastModifiedBy?: string;
|
|
284
|
+
lastModifiedByType?: CreatedByType;
|
|
285
|
+
lastModifiedAt?: Date;
|
|
286
|
+
};
|
|
287
|
+
|
|
288
|
+
// @public
|
|
289
|
+
export type ExtensionAggregateState = string;
|
|
290
|
+
|
|
291
|
+
// @public
|
|
292
|
+
export interface ExtensionList {
|
|
293
|
+
readonly nextLink?: string;
|
|
294
|
+
readonly value?: Extension[];
|
|
295
|
+
}
|
|
296
|
+
|
|
297
|
+
// @public
|
|
298
|
+
export interface Extensions {
|
|
299
|
+
beginCreate(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsCreateOptionalParams): Promise<PollerLike<PollOperationState<ExtensionsCreateResponse>, ExtensionsCreateResponse>>;
|
|
300
|
+
beginCreateAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsCreateOptionalParams): Promise<ExtensionsCreateResponse>;
|
|
301
|
+
beginDelete(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
302
|
+
beginDeleteAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsDeleteOptionalParams): Promise<void>;
|
|
303
|
+
beginUpdate(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsUpdateOptionalParams): Promise<PollerLike<PollOperationState<ExtensionsUpdateResponse>, ExtensionsUpdateResponse>>;
|
|
304
|
+
beginUpdateAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsUpdateOptionalParams): Promise<ExtensionsUpdateResponse>;
|
|
305
|
+
get(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsGetOptionalParams): Promise<ExtensionsGetResponse>;
|
|
306
|
+
listByArcSetting(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ExtensionsListByArcSettingOptionalParams): PagedAsyncIterableIterator<Extension>;
|
|
307
|
+
}
|
|
308
|
+
|
|
309
|
+
// @public
|
|
310
|
+
export interface ExtensionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
311
|
+
resumeFrom?: string;
|
|
312
|
+
updateIntervalInMs?: number;
|
|
313
|
+
}
|
|
314
|
+
|
|
315
|
+
// @public
|
|
316
|
+
export type ExtensionsCreateResponse = Extension;
|
|
317
|
+
|
|
318
|
+
// @public
|
|
319
|
+
export interface ExtensionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
320
|
+
resumeFrom?: string;
|
|
321
|
+
updateIntervalInMs?: number;
|
|
322
|
+
}
|
|
323
|
+
|
|
324
|
+
// @public
|
|
325
|
+
export interface ExtensionsGetOptionalParams extends coreClient.OperationOptions {
|
|
326
|
+
}
|
|
327
|
+
|
|
328
|
+
// @public
|
|
329
|
+
export type ExtensionsGetResponse = Extension;
|
|
330
|
+
|
|
331
|
+
// @public
|
|
332
|
+
export interface ExtensionsListByArcSettingNextOptionalParams extends coreClient.OperationOptions {
|
|
333
|
+
}
|
|
334
|
+
|
|
335
|
+
// @public
|
|
336
|
+
export type ExtensionsListByArcSettingNextResponse = ExtensionList;
|
|
337
|
+
|
|
338
|
+
// @public
|
|
339
|
+
export interface ExtensionsListByArcSettingOptionalParams extends coreClient.OperationOptions {
|
|
340
|
+
}
|
|
341
|
+
|
|
342
|
+
// @public
|
|
343
|
+
export type ExtensionsListByArcSettingResponse = ExtensionList;
|
|
344
|
+
|
|
345
|
+
// @public
|
|
346
|
+
export interface ExtensionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
347
|
+
resumeFrom?: string;
|
|
348
|
+
updateIntervalInMs?: number;
|
|
349
|
+
}
|
|
350
|
+
|
|
351
|
+
// @public
|
|
352
|
+
export type ExtensionsUpdateResponse = Extension;
|
|
353
|
+
|
|
354
|
+
// @public
|
|
355
|
+
export type ImdsAttestation = string;
|
|
356
|
+
|
|
357
|
+
// @public
|
|
358
|
+
export enum KnownActionType {
|
|
359
|
+
// (undocumented)
|
|
360
|
+
Internal = "Internal"
|
|
361
|
+
}
|
|
362
|
+
|
|
363
|
+
// @public
|
|
364
|
+
export enum KnownArcSettingAggregateState {
|
|
365
|
+
// (undocumented)
|
|
366
|
+
Canceled = "Canceled",
|
|
367
|
+
// (undocumented)
|
|
368
|
+
Connected = "Connected",
|
|
369
|
+
// (undocumented)
|
|
370
|
+
Creating = "Creating",
|
|
371
|
+
// (undocumented)
|
|
372
|
+
Deleted = "Deleted",
|
|
373
|
+
// (undocumented)
|
|
374
|
+
Deleting = "Deleting",
|
|
375
|
+
// (undocumented)
|
|
376
|
+
Disconnected = "Disconnected",
|
|
377
|
+
// (undocumented)
|
|
378
|
+
Error = "Error",
|
|
379
|
+
// (undocumented)
|
|
380
|
+
Failed = "Failed",
|
|
381
|
+
// (undocumented)
|
|
382
|
+
InProgress = "InProgress",
|
|
383
|
+
// (undocumented)
|
|
384
|
+
Moving = "Moving",
|
|
385
|
+
// (undocumented)
|
|
386
|
+
NotSpecified = "NotSpecified",
|
|
387
|
+
// (undocumented)
|
|
388
|
+
PartiallyConnected = "PartiallyConnected",
|
|
389
|
+
// (undocumented)
|
|
390
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
391
|
+
// (undocumented)
|
|
392
|
+
Succeeded = "Succeeded",
|
|
393
|
+
// (undocumented)
|
|
394
|
+
Updating = "Updating"
|
|
395
|
+
}
|
|
396
|
+
|
|
397
|
+
// @public
|
|
398
|
+
export enum KnownCreatedByType {
|
|
399
|
+
// (undocumented)
|
|
400
|
+
Application = "Application",
|
|
401
|
+
// (undocumented)
|
|
402
|
+
Key = "Key",
|
|
403
|
+
// (undocumented)
|
|
404
|
+
ManagedIdentity = "ManagedIdentity",
|
|
405
|
+
// (undocumented)
|
|
406
|
+
User = "User"
|
|
407
|
+
}
|
|
408
|
+
|
|
409
|
+
// @public
|
|
410
|
+
export enum KnownDiagnosticLevel {
|
|
411
|
+
// (undocumented)
|
|
412
|
+
Basic = "Basic",
|
|
413
|
+
// (undocumented)
|
|
414
|
+
Enhanced = "Enhanced",
|
|
415
|
+
// (undocumented)
|
|
416
|
+
Off = "Off"
|
|
417
|
+
}
|
|
418
|
+
|
|
419
|
+
// @public
|
|
420
|
+
export enum KnownExtensionAggregateState {
|
|
421
|
+
// (undocumented)
|
|
422
|
+
Canceled = "Canceled",
|
|
423
|
+
// (undocumented)
|
|
424
|
+
Connected = "Connected",
|
|
425
|
+
// (undocumented)
|
|
426
|
+
Creating = "Creating",
|
|
427
|
+
// (undocumented)
|
|
428
|
+
Deleted = "Deleted",
|
|
429
|
+
// (undocumented)
|
|
430
|
+
Deleting = "Deleting",
|
|
431
|
+
// (undocumented)
|
|
432
|
+
Disconnected = "Disconnected",
|
|
433
|
+
// (undocumented)
|
|
434
|
+
Error = "Error",
|
|
435
|
+
// (undocumented)
|
|
436
|
+
Failed = "Failed",
|
|
437
|
+
// (undocumented)
|
|
438
|
+
InProgress = "InProgress",
|
|
439
|
+
// (undocumented)
|
|
440
|
+
Moving = "Moving",
|
|
441
|
+
// (undocumented)
|
|
442
|
+
NotSpecified = "NotSpecified",
|
|
443
|
+
// (undocumented)
|
|
444
|
+
PartiallyConnected = "PartiallyConnected",
|
|
445
|
+
// (undocumented)
|
|
446
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
447
|
+
// (undocumented)
|
|
448
|
+
Succeeded = "Succeeded",
|
|
449
|
+
// (undocumented)
|
|
450
|
+
Updating = "Updating"
|
|
451
|
+
}
|
|
452
|
+
|
|
453
|
+
// @public
|
|
454
|
+
export enum KnownImdsAttestation {
|
|
455
|
+
// (undocumented)
|
|
456
|
+
Disabled = "Disabled",
|
|
457
|
+
// (undocumented)
|
|
458
|
+
Enabled = "Enabled"
|
|
459
|
+
}
|
|
460
|
+
|
|
461
|
+
// @public
|
|
462
|
+
export enum KnownNodeArcState {
|
|
463
|
+
// (undocumented)
|
|
464
|
+
Canceled = "Canceled",
|
|
465
|
+
// (undocumented)
|
|
466
|
+
Connected = "Connected",
|
|
467
|
+
// (undocumented)
|
|
468
|
+
Creating = "Creating",
|
|
469
|
+
// (undocumented)
|
|
470
|
+
Deleted = "Deleted",
|
|
471
|
+
// (undocumented)
|
|
472
|
+
Deleting = "Deleting",
|
|
473
|
+
// (undocumented)
|
|
474
|
+
Disconnected = "Disconnected",
|
|
475
|
+
// (undocumented)
|
|
476
|
+
Error = "Error",
|
|
477
|
+
// (undocumented)
|
|
478
|
+
Failed = "Failed",
|
|
479
|
+
// (undocumented)
|
|
480
|
+
Moving = "Moving",
|
|
481
|
+
// (undocumented)
|
|
482
|
+
NotSpecified = "NotSpecified",
|
|
483
|
+
// (undocumented)
|
|
484
|
+
Succeeded = "Succeeded",
|
|
485
|
+
// (undocumented)
|
|
486
|
+
Updating = "Updating"
|
|
487
|
+
}
|
|
488
|
+
|
|
489
|
+
// @public
|
|
490
|
+
export enum KnownNodeExtensionState {
|
|
491
|
+
// (undocumented)
|
|
492
|
+
Canceled = "Canceled",
|
|
493
|
+
// (undocumented)
|
|
494
|
+
Connected = "Connected",
|
|
495
|
+
// (undocumented)
|
|
496
|
+
Creating = "Creating",
|
|
497
|
+
// (undocumented)
|
|
498
|
+
Deleted = "Deleted",
|
|
499
|
+
// (undocumented)
|
|
500
|
+
Deleting = "Deleting",
|
|
501
|
+
// (undocumented)
|
|
502
|
+
Disconnected = "Disconnected",
|
|
503
|
+
// (undocumented)
|
|
504
|
+
Error = "Error",
|
|
505
|
+
// (undocumented)
|
|
506
|
+
Failed = "Failed",
|
|
507
|
+
// (undocumented)
|
|
508
|
+
Moving = "Moving",
|
|
509
|
+
// (undocumented)
|
|
510
|
+
NotSpecified = "NotSpecified",
|
|
511
|
+
// (undocumented)
|
|
512
|
+
Succeeded = "Succeeded",
|
|
513
|
+
// (undocumented)
|
|
514
|
+
Updating = "Updating"
|
|
515
|
+
}
|
|
516
|
+
|
|
517
|
+
// @public
|
|
518
|
+
export enum KnownOrigin {
|
|
519
|
+
// (undocumented)
|
|
520
|
+
System = "system",
|
|
521
|
+
// (undocumented)
|
|
522
|
+
User = "user",
|
|
523
|
+
// (undocumented)
|
|
524
|
+
UserSystem = "user,system"
|
|
525
|
+
}
|
|
526
|
+
|
|
527
|
+
// @public
|
|
528
|
+
export enum KnownProvisioningState {
|
|
529
|
+
// (undocumented)
|
|
530
|
+
Accepted = "Accepted",
|
|
531
|
+
// (undocumented)
|
|
532
|
+
Canceled = "Canceled",
|
|
533
|
+
// (undocumented)
|
|
534
|
+
Failed = "Failed",
|
|
535
|
+
// (undocumented)
|
|
536
|
+
Provisioning = "Provisioning",
|
|
537
|
+
// (undocumented)
|
|
538
|
+
Succeeded = "Succeeded"
|
|
539
|
+
}
|
|
540
|
+
|
|
541
|
+
// @public
|
|
542
|
+
export enum KnownStatus {
|
|
543
|
+
// (undocumented)
|
|
544
|
+
ConnectedRecently = "ConnectedRecently",
|
|
545
|
+
// (undocumented)
|
|
546
|
+
Disconnected = "Disconnected",
|
|
547
|
+
// (undocumented)
|
|
548
|
+
Error = "Error",
|
|
549
|
+
// (undocumented)
|
|
550
|
+
NotConnectedRecently = "NotConnectedRecently",
|
|
551
|
+
// (undocumented)
|
|
552
|
+
NotYetRegistered = "NotYetRegistered"
|
|
553
|
+
}
|
|
554
|
+
|
|
555
|
+
// @public
|
|
556
|
+
export enum KnownWindowsServerSubscription {
|
|
557
|
+
// (undocumented)
|
|
558
|
+
Disabled = "Disabled",
|
|
559
|
+
// (undocumented)
|
|
560
|
+
Enabled = "Enabled"
|
|
561
|
+
}
|
|
562
|
+
|
|
563
|
+
// @public
|
|
564
|
+
export type NodeArcState = string;
|
|
565
|
+
|
|
566
|
+
// @public
|
|
567
|
+
export type NodeExtensionState = string;
|
|
568
|
+
|
|
569
|
+
// @public
|
|
570
|
+
export interface Operation {
|
|
571
|
+
readonly actionType?: ActionType;
|
|
572
|
+
display?: OperationDisplay;
|
|
573
|
+
readonly isDataAction?: boolean;
|
|
574
|
+
readonly name?: string;
|
|
575
|
+
readonly origin?: Origin;
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// @public
|
|
579
|
+
export interface OperationDisplay {
|
|
580
|
+
readonly description?: string;
|
|
581
|
+
readonly operation?: string;
|
|
582
|
+
readonly provider?: string;
|
|
583
|
+
readonly resource?: string;
|
|
584
|
+
}
|
|
585
|
+
|
|
586
|
+
// @public
|
|
587
|
+
export interface OperationListResult {
|
|
588
|
+
readonly nextLink?: string;
|
|
589
|
+
readonly value?: Operation[];
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
// @public
|
|
593
|
+
export interface Operations {
|
|
594
|
+
list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
|
|
595
|
+
}
|
|
596
|
+
|
|
597
|
+
// @public
|
|
598
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
599
|
+
}
|
|
600
|
+
|
|
601
|
+
// @public
|
|
602
|
+
export type OperationsListResponse = OperationListResult;
|
|
603
|
+
|
|
604
|
+
// @public
|
|
605
|
+
export type Origin = string;
|
|
606
|
+
|
|
607
|
+
// @public
|
|
608
|
+
export interface PerNodeExtensionState {
|
|
609
|
+
readonly extension?: string;
|
|
610
|
+
readonly name?: string;
|
|
611
|
+
readonly state?: NodeExtensionState;
|
|
612
|
+
}
|
|
613
|
+
|
|
614
|
+
// @public
|
|
615
|
+
export interface PerNodeState {
|
|
616
|
+
readonly arcInstance?: string;
|
|
617
|
+
readonly name?: string;
|
|
618
|
+
readonly state?: NodeArcState;
|
|
619
|
+
}
|
|
620
|
+
|
|
621
|
+
// @public
|
|
622
|
+
export type ProvisioningState = string;
|
|
623
|
+
|
|
624
|
+
// @public
|
|
625
|
+
export type ProxyResource = Resource & {};
|
|
626
|
+
|
|
627
|
+
// @public
|
|
628
|
+
export interface Resource {
|
|
629
|
+
readonly id?: string;
|
|
630
|
+
readonly name?: string;
|
|
631
|
+
readonly type?: string;
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
// @public
|
|
635
|
+
export type Status = string;
|
|
636
|
+
|
|
637
|
+
// @public
|
|
638
|
+
export type TrackedResource = Resource & {
|
|
639
|
+
tags?: {
|
|
640
|
+
[propertyName: string]: string;
|
|
641
|
+
};
|
|
642
|
+
location: string;
|
|
643
|
+
};
|
|
644
|
+
|
|
645
|
+
// @public
|
|
646
|
+
export type WindowsServerSubscription = string;
|
|
647
|
+
|
|
648
|
+
// (No @packageDocumentation comment for this package)
|
|
649
|
+
|
|
650
|
+
```
|