@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,1146 @@
|
|
|
1
|
+
import * as coreAuth from '@azure/core-auth';
|
|
2
|
+
import * as coreClient from '@azure/core-client';
|
|
3
|
+
import { PagedAsyncIterableIterator } from '@azure/core-paging';
|
|
4
|
+
import { PollerLike } from '@azure/core-lro';
|
|
5
|
+
import { PollOperationState } from '@azure/core-lro';
|
|
6
|
+
|
|
7
|
+
/**
|
|
8
|
+
* Defines values for ActionType. \
|
|
9
|
+
* {@link KnownActionType} can be used interchangeably with ActionType,
|
|
10
|
+
* this enum contains the known values that the service supports.
|
|
11
|
+
* ### Known values supported by the service
|
|
12
|
+
* **Internal**
|
|
13
|
+
*/
|
|
14
|
+
export declare type ActionType = string;
|
|
15
|
+
|
|
16
|
+
/** ArcSetting details. */
|
|
17
|
+
export declare type ArcSetting = ProxyResource & {
|
|
18
|
+
/**
|
|
19
|
+
* Provisioning state of the ArcSetting proxy resource.
|
|
20
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
21
|
+
*/
|
|
22
|
+
readonly provisioningState?: ProvisioningState;
|
|
23
|
+
/**
|
|
24
|
+
* The resource group that hosts the Arc agents, ie. Hybrid Compute Machine resources.
|
|
25
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
26
|
+
*/
|
|
27
|
+
readonly arcInstanceResourceGroup?: string;
|
|
28
|
+
/**
|
|
29
|
+
* Aggregate state of Arc agent across the nodes in this HCI cluster.
|
|
30
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
31
|
+
*/
|
|
32
|
+
readonly aggregateState?: ArcSettingAggregateState;
|
|
33
|
+
/**
|
|
34
|
+
* State of Arc agent in each of the nodes.
|
|
35
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
36
|
+
*/
|
|
37
|
+
readonly perNodeDetails?: PerNodeState[];
|
|
38
|
+
/** The identity that created the resource. */
|
|
39
|
+
createdBy?: string;
|
|
40
|
+
/** The type of identity that created the resource. */
|
|
41
|
+
createdByType?: CreatedByType;
|
|
42
|
+
/** The timestamp of resource creation (UTC). */
|
|
43
|
+
createdAt?: Date;
|
|
44
|
+
/** The identity that last modified the resource. */
|
|
45
|
+
lastModifiedBy?: string;
|
|
46
|
+
/** The type of identity that last modified the resource. */
|
|
47
|
+
lastModifiedByType?: CreatedByType;
|
|
48
|
+
/** The timestamp of resource last modification (UTC) */
|
|
49
|
+
lastModifiedAt?: Date;
|
|
50
|
+
};
|
|
51
|
+
|
|
52
|
+
/**
|
|
53
|
+
* Defines values for ArcSettingAggregateState. \
|
|
54
|
+
* {@link KnownArcSettingAggregateState} can be used interchangeably with ArcSettingAggregateState,
|
|
55
|
+
* this enum contains the known values that the service supports.
|
|
56
|
+
* ### Known values supported by the service
|
|
57
|
+
* **NotSpecified** \
|
|
58
|
+
* **Error** \
|
|
59
|
+
* **Succeeded** \
|
|
60
|
+
* **Canceled** \
|
|
61
|
+
* **Failed** \
|
|
62
|
+
* **Connected** \
|
|
63
|
+
* **Disconnected** \
|
|
64
|
+
* **Deleted** \
|
|
65
|
+
* **Creating** \
|
|
66
|
+
* **Updating** \
|
|
67
|
+
* **Deleting** \
|
|
68
|
+
* **Moving** \
|
|
69
|
+
* **PartiallySucceeded** \
|
|
70
|
+
* **PartiallyConnected** \
|
|
71
|
+
* **InProgress**
|
|
72
|
+
*/
|
|
73
|
+
export declare type ArcSettingAggregateState = string;
|
|
74
|
+
|
|
75
|
+
/** List of ArcSetting proxy resources for the HCI cluster. */
|
|
76
|
+
export declare interface ArcSettingList {
|
|
77
|
+
/**
|
|
78
|
+
* List of ArcSetting proxy resources.
|
|
79
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
80
|
+
*/
|
|
81
|
+
readonly value?: ArcSetting[];
|
|
82
|
+
/**
|
|
83
|
+
* Link to the next set of results.
|
|
84
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
85
|
+
*/
|
|
86
|
+
readonly nextLink?: string;
|
|
87
|
+
}
|
|
88
|
+
|
|
89
|
+
/** Interface representing a ArcSettings. */
|
|
90
|
+
export declare interface ArcSettings {
|
|
91
|
+
/**
|
|
92
|
+
* Get ArcSetting resources of HCI Cluster.
|
|
93
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
94
|
+
* @param clusterName The name of the cluster.
|
|
95
|
+
* @param options The options parameters.
|
|
96
|
+
*/
|
|
97
|
+
listByCluster(resourceGroupName: string, clusterName: string, options?: ArcSettingsListByClusterOptionalParams): PagedAsyncIterableIterator<ArcSetting>;
|
|
98
|
+
/**
|
|
99
|
+
* Get ArcSetting resource details of HCI Cluster.
|
|
100
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
101
|
+
* @param clusterName The name of the cluster.
|
|
102
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
103
|
+
* @param options The options parameters.
|
|
104
|
+
*/
|
|
105
|
+
get(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsGetOptionalParams): Promise<ArcSettingsGetResponse>;
|
|
106
|
+
/**
|
|
107
|
+
* Create ArcSetting for HCI cluster.
|
|
108
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
109
|
+
* @param clusterName The name of the cluster.
|
|
110
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
111
|
+
* @param arcSetting Parameters supplied to the Create ArcSetting resource for this HCI cluster.
|
|
112
|
+
* @param options The options parameters.
|
|
113
|
+
*/
|
|
114
|
+
create(resourceGroupName: string, clusterName: string, arcSettingName: string, arcSetting: ArcSetting, options?: ArcSettingsCreateOptionalParams): Promise<ArcSettingsCreateResponse>;
|
|
115
|
+
/**
|
|
116
|
+
* Delete ArcSetting resource details of HCI Cluster.
|
|
117
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
118
|
+
* @param clusterName The name of the cluster.
|
|
119
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
120
|
+
* @param options The options parameters.
|
|
121
|
+
*/
|
|
122
|
+
beginDelete(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
123
|
+
/**
|
|
124
|
+
* Delete ArcSetting resource details of HCI Cluster.
|
|
125
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
126
|
+
* @param clusterName The name of the cluster.
|
|
127
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
128
|
+
* @param options The options parameters.
|
|
129
|
+
*/
|
|
130
|
+
beginDeleteAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ArcSettingsDeleteOptionalParams): Promise<void>;
|
|
131
|
+
}
|
|
132
|
+
|
|
133
|
+
/** Optional parameters. */
|
|
134
|
+
export declare interface ArcSettingsCreateOptionalParams extends coreClient.OperationOptions {
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
/** Contains response data for the create operation. */
|
|
138
|
+
export declare type ArcSettingsCreateResponse = ArcSetting;
|
|
139
|
+
|
|
140
|
+
/** Optional parameters. */
|
|
141
|
+
export declare interface ArcSettingsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
142
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
143
|
+
updateIntervalInMs?: number;
|
|
144
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
145
|
+
resumeFrom?: string;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
/** Optional parameters. */
|
|
149
|
+
export declare interface ArcSettingsGetOptionalParams extends coreClient.OperationOptions {
|
|
150
|
+
}
|
|
151
|
+
|
|
152
|
+
/** Contains response data for the get operation. */
|
|
153
|
+
export declare type ArcSettingsGetResponse = ArcSetting;
|
|
154
|
+
|
|
155
|
+
/** Optional parameters. */
|
|
156
|
+
export declare interface ArcSettingsListByClusterNextOptionalParams extends coreClient.OperationOptions {
|
|
157
|
+
}
|
|
158
|
+
|
|
159
|
+
/** Contains response data for the listByClusterNext operation. */
|
|
160
|
+
export declare type ArcSettingsListByClusterNextResponse = ArcSettingList;
|
|
161
|
+
|
|
162
|
+
/** Optional parameters. */
|
|
163
|
+
export declare interface ArcSettingsListByClusterOptionalParams extends coreClient.OperationOptions {
|
|
164
|
+
}
|
|
165
|
+
|
|
166
|
+
/** Contains response data for the listByCluster operation. */
|
|
167
|
+
export declare type ArcSettingsListByClusterResponse = ArcSettingList;
|
|
168
|
+
|
|
169
|
+
export declare class AzureStackHCIClient extends coreClient.ServiceClient {
|
|
170
|
+
$host: string;
|
|
171
|
+
subscriptionId: string;
|
|
172
|
+
apiVersion: string;
|
|
173
|
+
/**
|
|
174
|
+
* Initializes a new instance of the AzureStackHCIClient class.
|
|
175
|
+
* @param credentials Subscription credentials which uniquely identify client subscription.
|
|
176
|
+
* @param subscriptionId The ID of the target subscription.
|
|
177
|
+
* @param options The parameter options
|
|
178
|
+
*/
|
|
179
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: AzureStackHCIClientOptionalParams);
|
|
180
|
+
arcSettings: ArcSettings;
|
|
181
|
+
clusters: Clusters;
|
|
182
|
+
extensions: Extensions;
|
|
183
|
+
operations: Operations;
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
/** Optional parameters. */
|
|
187
|
+
export declare interface AzureStackHCIClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
188
|
+
/** server parameter */
|
|
189
|
+
$host?: string;
|
|
190
|
+
/** Api Version */
|
|
191
|
+
apiVersion?: string;
|
|
192
|
+
/** Overrides client endpoint. */
|
|
193
|
+
endpoint?: string;
|
|
194
|
+
}
|
|
195
|
+
|
|
196
|
+
/** Cluster details. */
|
|
197
|
+
export declare type Cluster = TrackedResource & {
|
|
198
|
+
/**
|
|
199
|
+
* Provisioning state.
|
|
200
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
201
|
+
*/
|
|
202
|
+
readonly provisioningState?: ProvisioningState;
|
|
203
|
+
/**
|
|
204
|
+
* Status of the cluster agent.
|
|
205
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
206
|
+
*/
|
|
207
|
+
readonly status?: Status;
|
|
208
|
+
/**
|
|
209
|
+
* Unique, immutable resource id.
|
|
210
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
211
|
+
*/
|
|
212
|
+
readonly cloudId?: string;
|
|
213
|
+
/** Endpoint configured for management from the Azure portal. */
|
|
214
|
+
cloudManagementEndpoint?: string;
|
|
215
|
+
/** App id of cluster AAD identity. */
|
|
216
|
+
aadClientId?: string;
|
|
217
|
+
/** Tenant id of cluster AAD identity. */
|
|
218
|
+
aadTenantId?: string;
|
|
219
|
+
/** Desired properties of the cluster. */
|
|
220
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
221
|
+
/**
|
|
222
|
+
* Properties reported by cluster agent.
|
|
223
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
224
|
+
*/
|
|
225
|
+
readonly reportedProperties?: ClusterReportedProperties;
|
|
226
|
+
/**
|
|
227
|
+
* Number of days remaining in the trial period.
|
|
228
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
229
|
+
*/
|
|
230
|
+
readonly trialDaysRemaining?: number;
|
|
231
|
+
/**
|
|
232
|
+
* Type of billing applied to the resource.
|
|
233
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
234
|
+
*/
|
|
235
|
+
readonly billingModel?: string;
|
|
236
|
+
/**
|
|
237
|
+
* First cluster sync timestamp.
|
|
238
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
239
|
+
*/
|
|
240
|
+
readonly registrationTimestamp?: Date;
|
|
241
|
+
/**
|
|
242
|
+
* Most recent cluster sync timestamp.
|
|
243
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
244
|
+
*/
|
|
245
|
+
readonly lastSyncTimestamp?: Date;
|
|
246
|
+
/**
|
|
247
|
+
* Most recent billing meter timestamp.
|
|
248
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
249
|
+
*/
|
|
250
|
+
readonly lastBillingTimestamp?: Date;
|
|
251
|
+
/** The identity that created the resource. */
|
|
252
|
+
createdBy?: string;
|
|
253
|
+
/** The type of identity that created the resource. */
|
|
254
|
+
createdByType?: CreatedByType;
|
|
255
|
+
/** The timestamp of resource creation (UTC). */
|
|
256
|
+
createdAt?: Date;
|
|
257
|
+
/** The identity that last modified the resource. */
|
|
258
|
+
lastModifiedBy?: string;
|
|
259
|
+
/** The type of identity that last modified the resource. */
|
|
260
|
+
lastModifiedByType?: CreatedByType;
|
|
261
|
+
/** The timestamp of resource last modification (UTC) */
|
|
262
|
+
lastModifiedAt?: Date;
|
|
263
|
+
};
|
|
264
|
+
|
|
265
|
+
/** Desired properties of the cluster. */
|
|
266
|
+
export declare interface ClusterDesiredProperties {
|
|
267
|
+
/** Desired state of Windows Server Subscription. */
|
|
268
|
+
windowsServerSubscription?: WindowsServerSubscription;
|
|
269
|
+
/** Desired level of diagnostic data emitted by the cluster. */
|
|
270
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
271
|
+
}
|
|
272
|
+
|
|
273
|
+
/** List of clusters. */
|
|
274
|
+
export declare interface ClusterList {
|
|
275
|
+
/** List of clusters. */
|
|
276
|
+
value?: Cluster[];
|
|
277
|
+
/**
|
|
278
|
+
* Link to the next set of results.
|
|
279
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
280
|
+
*/
|
|
281
|
+
readonly nextLink?: string;
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
/** Cluster node details. */
|
|
285
|
+
export declare interface ClusterNode {
|
|
286
|
+
/**
|
|
287
|
+
* Name of the cluster node.
|
|
288
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
289
|
+
*/
|
|
290
|
+
readonly name?: string;
|
|
291
|
+
/**
|
|
292
|
+
* Id of the node in the cluster.
|
|
293
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
294
|
+
*/
|
|
295
|
+
readonly id?: number;
|
|
296
|
+
/**
|
|
297
|
+
* State of Windows Server Subscription.
|
|
298
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
299
|
+
*/
|
|
300
|
+
readonly windowsServerSubscription?: WindowsServerSubscription;
|
|
301
|
+
/**
|
|
302
|
+
* Manufacturer of the cluster node hardware.
|
|
303
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
304
|
+
*/
|
|
305
|
+
readonly manufacturer?: string;
|
|
306
|
+
/**
|
|
307
|
+
* Model name of the cluster node hardware.
|
|
308
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
309
|
+
*/
|
|
310
|
+
readonly model?: string;
|
|
311
|
+
/**
|
|
312
|
+
* Operating system running on the cluster node.
|
|
313
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
314
|
+
*/
|
|
315
|
+
readonly osName?: string;
|
|
316
|
+
/**
|
|
317
|
+
* Version of the operating system running on the cluster node.
|
|
318
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
319
|
+
*/
|
|
320
|
+
readonly osVersion?: string;
|
|
321
|
+
/**
|
|
322
|
+
* Immutable id of the cluster node.
|
|
323
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
324
|
+
*/
|
|
325
|
+
readonly serialNumber?: string;
|
|
326
|
+
/**
|
|
327
|
+
* Number of physical cores on the cluster node.
|
|
328
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
329
|
+
*/
|
|
330
|
+
readonly coreCount?: number;
|
|
331
|
+
/**
|
|
332
|
+
* Total available memory on the cluster node (in GiB).
|
|
333
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
334
|
+
*/
|
|
335
|
+
readonly memoryInGiB?: number;
|
|
336
|
+
}
|
|
337
|
+
|
|
338
|
+
/** Cluster details to update. */
|
|
339
|
+
export declare interface ClusterPatch {
|
|
340
|
+
/** Resource tags. */
|
|
341
|
+
tags?: {
|
|
342
|
+
[propertyName: string]: string;
|
|
343
|
+
};
|
|
344
|
+
/** Endpoint configured for management from the Azure portal */
|
|
345
|
+
cloudManagementEndpoint?: string;
|
|
346
|
+
/** App id of cluster AAD identity. */
|
|
347
|
+
aadClientId?: string;
|
|
348
|
+
/** Tenant id of cluster AAD identity. */
|
|
349
|
+
aadTenantId?: string;
|
|
350
|
+
/** Desired properties of the cluster. */
|
|
351
|
+
desiredProperties?: ClusterDesiredProperties;
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
/** Properties reported by cluster agent. */
|
|
355
|
+
export declare interface ClusterReportedProperties {
|
|
356
|
+
/**
|
|
357
|
+
* Name of the on-prem cluster connected to this resource.
|
|
358
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
359
|
+
*/
|
|
360
|
+
readonly clusterName?: string;
|
|
361
|
+
/**
|
|
362
|
+
* Unique id generated by the on-prem cluster.
|
|
363
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
364
|
+
*/
|
|
365
|
+
readonly clusterId?: string;
|
|
366
|
+
/**
|
|
367
|
+
* Version of the cluster software.
|
|
368
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
369
|
+
*/
|
|
370
|
+
readonly clusterVersion?: string;
|
|
371
|
+
/**
|
|
372
|
+
* List of nodes reported by the cluster.
|
|
373
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
374
|
+
*/
|
|
375
|
+
readonly nodes?: ClusterNode[];
|
|
376
|
+
/**
|
|
377
|
+
* Last time the cluster reported the data.
|
|
378
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
379
|
+
*/
|
|
380
|
+
readonly lastUpdated?: Date;
|
|
381
|
+
/**
|
|
382
|
+
* IMDS attestation status of the cluster.
|
|
383
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
384
|
+
*/
|
|
385
|
+
readonly imdsAttestation?: ImdsAttestation;
|
|
386
|
+
/** Level of diagnostic data emitted by the cluster. */
|
|
387
|
+
diagnosticLevel?: DiagnosticLevel;
|
|
388
|
+
}
|
|
389
|
+
|
|
390
|
+
/** Interface representing a Clusters. */
|
|
391
|
+
export declare interface Clusters {
|
|
392
|
+
/**
|
|
393
|
+
* List all HCI clusters in a subscription.
|
|
394
|
+
* @param options The options parameters.
|
|
395
|
+
*/
|
|
396
|
+
listBySubscription(options?: ClustersListBySubscriptionOptionalParams): PagedAsyncIterableIterator<Cluster>;
|
|
397
|
+
/**
|
|
398
|
+
* List all HCI clusters in a resource group.
|
|
399
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
400
|
+
* @param options The options parameters.
|
|
401
|
+
*/
|
|
402
|
+
listByResourceGroup(resourceGroupName: string, options?: ClustersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Cluster>;
|
|
403
|
+
/**
|
|
404
|
+
* Get HCI cluster.
|
|
405
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
406
|
+
* @param clusterName The name of the cluster.
|
|
407
|
+
* @param options The options parameters.
|
|
408
|
+
*/
|
|
409
|
+
get(resourceGroupName: string, clusterName: string, options?: ClustersGetOptionalParams): Promise<ClustersGetResponse>;
|
|
410
|
+
/**
|
|
411
|
+
* Create an HCI cluster.
|
|
412
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
413
|
+
* @param clusterName The name of the cluster.
|
|
414
|
+
* @param cluster Details of the HCI cluster.
|
|
415
|
+
* @param options The options parameters.
|
|
416
|
+
*/
|
|
417
|
+
create(resourceGroupName: string, clusterName: string, cluster: Cluster, options?: ClustersCreateOptionalParams): Promise<ClustersCreateResponse>;
|
|
418
|
+
/**
|
|
419
|
+
* Update an HCI cluster.
|
|
420
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
421
|
+
* @param clusterName The name of the cluster.
|
|
422
|
+
* @param cluster Details of the HCI cluster.
|
|
423
|
+
* @param options The options parameters.
|
|
424
|
+
*/
|
|
425
|
+
update(resourceGroupName: string, clusterName: string, cluster: ClusterPatch, options?: ClustersUpdateOptionalParams): Promise<ClustersUpdateResponse>;
|
|
426
|
+
/**
|
|
427
|
+
* Delete an HCI cluster.
|
|
428
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
429
|
+
* @param clusterName The name of the cluster.
|
|
430
|
+
* @param options The options parameters.
|
|
431
|
+
*/
|
|
432
|
+
delete(resourceGroupName: string, clusterName: string, options?: ClustersDeleteOptionalParams): Promise<void>;
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
/** Optional parameters. */
|
|
436
|
+
export declare interface ClustersCreateOptionalParams extends coreClient.OperationOptions {
|
|
437
|
+
}
|
|
438
|
+
|
|
439
|
+
/** Contains response data for the create operation. */
|
|
440
|
+
export declare type ClustersCreateResponse = Cluster;
|
|
441
|
+
|
|
442
|
+
/** Optional parameters. */
|
|
443
|
+
export declare interface ClustersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
444
|
+
}
|
|
445
|
+
|
|
446
|
+
/** Optional parameters. */
|
|
447
|
+
export declare interface ClustersGetOptionalParams extends coreClient.OperationOptions {
|
|
448
|
+
}
|
|
449
|
+
|
|
450
|
+
/** Contains response data for the get operation. */
|
|
451
|
+
export declare type ClustersGetResponse = Cluster;
|
|
452
|
+
|
|
453
|
+
/** Optional parameters. */
|
|
454
|
+
export declare interface ClustersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
455
|
+
}
|
|
456
|
+
|
|
457
|
+
/** Contains response data for the listByResourceGroupNext operation. */
|
|
458
|
+
export declare type ClustersListByResourceGroupNextResponse = ClusterList;
|
|
459
|
+
|
|
460
|
+
/** Optional parameters. */
|
|
461
|
+
export declare interface ClustersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
462
|
+
}
|
|
463
|
+
|
|
464
|
+
/** Contains response data for the listByResourceGroup operation. */
|
|
465
|
+
export declare type ClustersListByResourceGroupResponse = ClusterList;
|
|
466
|
+
|
|
467
|
+
/** Optional parameters. */
|
|
468
|
+
export declare interface ClustersListBySubscriptionNextOptionalParams extends coreClient.OperationOptions {
|
|
469
|
+
}
|
|
470
|
+
|
|
471
|
+
/** Contains response data for the listBySubscriptionNext operation. */
|
|
472
|
+
export declare type ClustersListBySubscriptionNextResponse = ClusterList;
|
|
473
|
+
|
|
474
|
+
/** Optional parameters. */
|
|
475
|
+
export declare interface ClustersListBySubscriptionOptionalParams extends coreClient.OperationOptions {
|
|
476
|
+
}
|
|
477
|
+
|
|
478
|
+
/** Contains response data for the listBySubscription operation. */
|
|
479
|
+
export declare type ClustersListBySubscriptionResponse = ClusterList;
|
|
480
|
+
|
|
481
|
+
/** Optional parameters. */
|
|
482
|
+
export declare interface ClustersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
483
|
+
}
|
|
484
|
+
|
|
485
|
+
/** Contains response data for the update operation. */
|
|
486
|
+
export declare type ClustersUpdateResponse = Cluster;
|
|
487
|
+
|
|
488
|
+
/**
|
|
489
|
+
* Defines values for CreatedByType. \
|
|
490
|
+
* {@link KnownCreatedByType} can be used interchangeably with CreatedByType,
|
|
491
|
+
* this enum contains the known values that the service supports.
|
|
492
|
+
* ### Known values supported by the service
|
|
493
|
+
* **User** \
|
|
494
|
+
* **Application** \
|
|
495
|
+
* **ManagedIdentity** \
|
|
496
|
+
* **Key**
|
|
497
|
+
*/
|
|
498
|
+
export declare type CreatedByType = string;
|
|
499
|
+
|
|
500
|
+
/**
|
|
501
|
+
* Defines values for DiagnosticLevel. \
|
|
502
|
+
* {@link KnownDiagnosticLevel} can be used interchangeably with DiagnosticLevel,
|
|
503
|
+
* this enum contains the known values that the service supports.
|
|
504
|
+
* ### Known values supported by the service
|
|
505
|
+
* **Off** \
|
|
506
|
+
* **Basic** \
|
|
507
|
+
* **Enhanced**
|
|
508
|
+
*/
|
|
509
|
+
export declare type DiagnosticLevel = string;
|
|
510
|
+
|
|
511
|
+
/** The resource management error additional info. */
|
|
512
|
+
export declare interface ErrorAdditionalInfo {
|
|
513
|
+
/**
|
|
514
|
+
* The additional info type.
|
|
515
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
516
|
+
*/
|
|
517
|
+
readonly type?: string;
|
|
518
|
+
/**
|
|
519
|
+
* The additional info.
|
|
520
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
521
|
+
*/
|
|
522
|
+
readonly info?: Record<string, unknown>;
|
|
523
|
+
}
|
|
524
|
+
|
|
525
|
+
/** The error detail. */
|
|
526
|
+
export declare interface ErrorDetail {
|
|
527
|
+
/**
|
|
528
|
+
* The error code.
|
|
529
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
530
|
+
*/
|
|
531
|
+
readonly code?: string;
|
|
532
|
+
/**
|
|
533
|
+
* The error message.
|
|
534
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
535
|
+
*/
|
|
536
|
+
readonly message?: string;
|
|
537
|
+
/**
|
|
538
|
+
* The error target.
|
|
539
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
540
|
+
*/
|
|
541
|
+
readonly target?: string;
|
|
542
|
+
/**
|
|
543
|
+
* The error details.
|
|
544
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
545
|
+
*/
|
|
546
|
+
readonly details?: ErrorDetail[];
|
|
547
|
+
/**
|
|
548
|
+
* The error additional info.
|
|
549
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
550
|
+
*/
|
|
551
|
+
readonly additionalInfo?: ErrorAdditionalInfo[];
|
|
552
|
+
}
|
|
553
|
+
|
|
554
|
+
/** Common error response for all Azure Resource Manager APIs to return error details for failed operations. (This also follows the OData error response format.). */
|
|
555
|
+
export declare interface ErrorResponse {
|
|
556
|
+
/** The error object. */
|
|
557
|
+
error?: ErrorDetail;
|
|
558
|
+
}
|
|
559
|
+
|
|
560
|
+
/** Details of a particular extension in HCI Cluster. */
|
|
561
|
+
export declare type Extension = ProxyResource & {
|
|
562
|
+
/**
|
|
563
|
+
* Provisioning state of the Extension proxy resource.
|
|
564
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
565
|
+
*/
|
|
566
|
+
readonly provisioningState?: ProvisioningState;
|
|
567
|
+
/**
|
|
568
|
+
* Aggregate state of Arc Extensions across the nodes in this HCI cluster.
|
|
569
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
570
|
+
*/
|
|
571
|
+
readonly aggregateState?: ExtensionAggregateState;
|
|
572
|
+
/**
|
|
573
|
+
* State of Arc Extension in each of the nodes.
|
|
574
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
575
|
+
*/
|
|
576
|
+
readonly perNodeExtensionDetails?: PerNodeExtensionState[];
|
|
577
|
+
/** How the extension handler should be forced to update even if the extension configuration has not changed. */
|
|
578
|
+
forceUpdateTag?: string;
|
|
579
|
+
/** The name of the extension handler publisher. */
|
|
580
|
+
publisher?: string;
|
|
581
|
+
/** Specifies the type of the extension; an example is "CustomScriptExtension". */
|
|
582
|
+
typePropertiesExtensionParametersType?: string;
|
|
583
|
+
/** Specifies the version of the script handler. */
|
|
584
|
+
typeHandlerVersion?: string;
|
|
585
|
+
/** 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. */
|
|
586
|
+
autoUpgradeMinorVersion?: boolean;
|
|
587
|
+
/** Json formatted public settings for the extension. */
|
|
588
|
+
settings?: Record<string, unknown>;
|
|
589
|
+
/** Protected settings (may contain secrets). */
|
|
590
|
+
protectedSettings?: Record<string, unknown>;
|
|
591
|
+
/** The identity that created the resource. */
|
|
592
|
+
createdBy?: string;
|
|
593
|
+
/** The type of identity that created the resource. */
|
|
594
|
+
createdByType?: CreatedByType;
|
|
595
|
+
/** The timestamp of resource creation (UTC). */
|
|
596
|
+
createdAt?: Date;
|
|
597
|
+
/** The identity that last modified the resource. */
|
|
598
|
+
lastModifiedBy?: string;
|
|
599
|
+
/** The type of identity that last modified the resource. */
|
|
600
|
+
lastModifiedByType?: CreatedByType;
|
|
601
|
+
/** The timestamp of resource last modification (UTC) */
|
|
602
|
+
lastModifiedAt?: Date;
|
|
603
|
+
};
|
|
604
|
+
|
|
605
|
+
/**
|
|
606
|
+
* Defines values for ExtensionAggregateState. \
|
|
607
|
+
* {@link KnownExtensionAggregateState} can be used interchangeably with ExtensionAggregateState,
|
|
608
|
+
* this enum contains the known values that the service supports.
|
|
609
|
+
* ### Known values supported by the service
|
|
610
|
+
* **NotSpecified** \
|
|
611
|
+
* **Error** \
|
|
612
|
+
* **Succeeded** \
|
|
613
|
+
* **Canceled** \
|
|
614
|
+
* **Failed** \
|
|
615
|
+
* **Connected** \
|
|
616
|
+
* **Disconnected** \
|
|
617
|
+
* **Deleted** \
|
|
618
|
+
* **Creating** \
|
|
619
|
+
* **Updating** \
|
|
620
|
+
* **Deleting** \
|
|
621
|
+
* **Moving** \
|
|
622
|
+
* **PartiallySucceeded** \
|
|
623
|
+
* **PartiallyConnected** \
|
|
624
|
+
* **InProgress**
|
|
625
|
+
*/
|
|
626
|
+
export declare type ExtensionAggregateState = string;
|
|
627
|
+
|
|
628
|
+
/** List of Extensions in HCI cluster. */
|
|
629
|
+
export declare interface ExtensionList {
|
|
630
|
+
/**
|
|
631
|
+
* List of Extensions in HCI cluster.
|
|
632
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
633
|
+
*/
|
|
634
|
+
readonly value?: Extension[];
|
|
635
|
+
/**
|
|
636
|
+
* Link to the next set of results.
|
|
637
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
638
|
+
*/
|
|
639
|
+
readonly nextLink?: string;
|
|
640
|
+
}
|
|
641
|
+
|
|
642
|
+
/** Interface representing a Extensions. */
|
|
643
|
+
export declare interface Extensions {
|
|
644
|
+
/**
|
|
645
|
+
* List all Extensions under ArcSetting resource.
|
|
646
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
647
|
+
* @param clusterName The name of the cluster.
|
|
648
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
649
|
+
* @param options The options parameters.
|
|
650
|
+
*/
|
|
651
|
+
listByArcSetting(resourceGroupName: string, clusterName: string, arcSettingName: string, options?: ExtensionsListByArcSettingOptionalParams): PagedAsyncIterableIterator<Extension>;
|
|
652
|
+
/**
|
|
653
|
+
* Get particular Arc Extension of HCI Cluster.
|
|
654
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
655
|
+
* @param clusterName The name of the cluster.
|
|
656
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
657
|
+
* @param extensionName The name of the machine extension.
|
|
658
|
+
* @param options The options parameters.
|
|
659
|
+
*/
|
|
660
|
+
get(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsGetOptionalParams): Promise<ExtensionsGetResponse>;
|
|
661
|
+
/**
|
|
662
|
+
* Create Extension for HCI cluster.
|
|
663
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
664
|
+
* @param clusterName The name of the cluster.
|
|
665
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
666
|
+
* @param extensionName The name of the machine extension.
|
|
667
|
+
* @param extension Details of the Machine Extension to be created.
|
|
668
|
+
* @param options The options parameters.
|
|
669
|
+
*/
|
|
670
|
+
beginCreate(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsCreateOptionalParams): Promise<PollerLike<PollOperationState<ExtensionsCreateResponse>, ExtensionsCreateResponse>>;
|
|
671
|
+
/**
|
|
672
|
+
* Create Extension for HCI cluster.
|
|
673
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
674
|
+
* @param clusterName The name of the cluster.
|
|
675
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
676
|
+
* @param extensionName The name of the machine extension.
|
|
677
|
+
* @param extension Details of the Machine Extension to be created.
|
|
678
|
+
* @param options The options parameters.
|
|
679
|
+
*/
|
|
680
|
+
beginCreateAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsCreateOptionalParams): Promise<ExtensionsCreateResponse>;
|
|
681
|
+
/**
|
|
682
|
+
* Update Extension for HCI cluster.
|
|
683
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
684
|
+
* @param clusterName The name of the cluster.
|
|
685
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
686
|
+
* @param extensionName The name of the machine extension.
|
|
687
|
+
* @param extension Details of the Machine Extension to be created.
|
|
688
|
+
* @param options The options parameters.
|
|
689
|
+
*/
|
|
690
|
+
beginUpdate(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsUpdateOptionalParams): Promise<PollerLike<PollOperationState<ExtensionsUpdateResponse>, ExtensionsUpdateResponse>>;
|
|
691
|
+
/**
|
|
692
|
+
* Update Extension for HCI cluster.
|
|
693
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
694
|
+
* @param clusterName The name of the cluster.
|
|
695
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
696
|
+
* @param extensionName The name of the machine extension.
|
|
697
|
+
* @param extension Details of the Machine Extension to be created.
|
|
698
|
+
* @param options The options parameters.
|
|
699
|
+
*/
|
|
700
|
+
beginUpdateAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, extension: Extension, options?: ExtensionsUpdateOptionalParams): Promise<ExtensionsUpdateResponse>;
|
|
701
|
+
/**
|
|
702
|
+
* Delete particular Arc Extension of HCI Cluster.
|
|
703
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
704
|
+
* @param clusterName The name of the cluster.
|
|
705
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
706
|
+
* @param extensionName The name of the machine extension.
|
|
707
|
+
* @param options The options parameters.
|
|
708
|
+
*/
|
|
709
|
+
beginDelete(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
710
|
+
/**
|
|
711
|
+
* Delete particular Arc Extension of HCI Cluster.
|
|
712
|
+
* @param resourceGroupName The name of the resource group. The name is case insensitive.
|
|
713
|
+
* @param clusterName The name of the cluster.
|
|
714
|
+
* @param arcSettingName The name of the proxy resource holding details of HCI ArcSetting information.
|
|
715
|
+
* @param extensionName The name of the machine extension.
|
|
716
|
+
* @param options The options parameters.
|
|
717
|
+
*/
|
|
718
|
+
beginDeleteAndWait(resourceGroupName: string, clusterName: string, arcSettingName: string, extensionName: string, options?: ExtensionsDeleteOptionalParams): Promise<void>;
|
|
719
|
+
}
|
|
720
|
+
|
|
721
|
+
/** Optional parameters. */
|
|
722
|
+
export declare interface ExtensionsCreateOptionalParams extends coreClient.OperationOptions {
|
|
723
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
724
|
+
updateIntervalInMs?: number;
|
|
725
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
726
|
+
resumeFrom?: string;
|
|
727
|
+
}
|
|
728
|
+
|
|
729
|
+
/** Contains response data for the create operation. */
|
|
730
|
+
export declare type ExtensionsCreateResponse = Extension;
|
|
731
|
+
|
|
732
|
+
/** Optional parameters. */
|
|
733
|
+
export declare interface ExtensionsDeleteOptionalParams extends coreClient.OperationOptions {
|
|
734
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
735
|
+
updateIntervalInMs?: number;
|
|
736
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
737
|
+
resumeFrom?: string;
|
|
738
|
+
}
|
|
739
|
+
|
|
740
|
+
/** Optional parameters. */
|
|
741
|
+
export declare interface ExtensionsGetOptionalParams extends coreClient.OperationOptions {
|
|
742
|
+
}
|
|
743
|
+
|
|
744
|
+
/** Contains response data for the get operation. */
|
|
745
|
+
export declare type ExtensionsGetResponse = Extension;
|
|
746
|
+
|
|
747
|
+
/** Optional parameters. */
|
|
748
|
+
export declare interface ExtensionsListByArcSettingNextOptionalParams extends coreClient.OperationOptions {
|
|
749
|
+
}
|
|
750
|
+
|
|
751
|
+
/** Contains response data for the listByArcSettingNext operation. */
|
|
752
|
+
export declare type ExtensionsListByArcSettingNextResponse = ExtensionList;
|
|
753
|
+
|
|
754
|
+
/** Optional parameters. */
|
|
755
|
+
export declare interface ExtensionsListByArcSettingOptionalParams extends coreClient.OperationOptions {
|
|
756
|
+
}
|
|
757
|
+
|
|
758
|
+
/** Contains response data for the listByArcSetting operation. */
|
|
759
|
+
export declare type ExtensionsListByArcSettingResponse = ExtensionList;
|
|
760
|
+
|
|
761
|
+
/** Optional parameters. */
|
|
762
|
+
export declare interface ExtensionsUpdateOptionalParams extends coreClient.OperationOptions {
|
|
763
|
+
/** Delay to wait until next poll, in milliseconds. */
|
|
764
|
+
updateIntervalInMs?: number;
|
|
765
|
+
/** A serialized poller which can be used to resume an existing paused Long-Running-Operation. */
|
|
766
|
+
resumeFrom?: string;
|
|
767
|
+
}
|
|
768
|
+
|
|
769
|
+
/** Contains response data for the update operation. */
|
|
770
|
+
export declare type ExtensionsUpdateResponse = Extension;
|
|
771
|
+
|
|
772
|
+
/**
|
|
773
|
+
* Defines values for ImdsAttestation. \
|
|
774
|
+
* {@link KnownImdsAttestation} can be used interchangeably with ImdsAttestation,
|
|
775
|
+
* this enum contains the known values that the service supports.
|
|
776
|
+
* ### Known values supported by the service
|
|
777
|
+
* **Disabled** \
|
|
778
|
+
* **Enabled**
|
|
779
|
+
*/
|
|
780
|
+
export declare type ImdsAttestation = string;
|
|
781
|
+
|
|
782
|
+
/** Known values of {@link ActionType} that the service accepts. */
|
|
783
|
+
export declare enum KnownActionType {
|
|
784
|
+
Internal = "Internal"
|
|
785
|
+
}
|
|
786
|
+
|
|
787
|
+
/** Known values of {@link ArcSettingAggregateState} that the service accepts. */
|
|
788
|
+
export declare enum KnownArcSettingAggregateState {
|
|
789
|
+
NotSpecified = "NotSpecified",
|
|
790
|
+
Error = "Error",
|
|
791
|
+
Succeeded = "Succeeded",
|
|
792
|
+
Canceled = "Canceled",
|
|
793
|
+
Failed = "Failed",
|
|
794
|
+
Connected = "Connected",
|
|
795
|
+
Disconnected = "Disconnected",
|
|
796
|
+
Deleted = "Deleted",
|
|
797
|
+
Creating = "Creating",
|
|
798
|
+
Updating = "Updating",
|
|
799
|
+
Deleting = "Deleting",
|
|
800
|
+
Moving = "Moving",
|
|
801
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
802
|
+
PartiallyConnected = "PartiallyConnected",
|
|
803
|
+
InProgress = "InProgress"
|
|
804
|
+
}
|
|
805
|
+
|
|
806
|
+
/** Known values of {@link CreatedByType} that the service accepts. */
|
|
807
|
+
export declare enum KnownCreatedByType {
|
|
808
|
+
User = "User",
|
|
809
|
+
Application = "Application",
|
|
810
|
+
ManagedIdentity = "ManagedIdentity",
|
|
811
|
+
Key = "Key"
|
|
812
|
+
}
|
|
813
|
+
|
|
814
|
+
/** Known values of {@link DiagnosticLevel} that the service accepts. */
|
|
815
|
+
export declare enum KnownDiagnosticLevel {
|
|
816
|
+
Off = "Off",
|
|
817
|
+
Basic = "Basic",
|
|
818
|
+
Enhanced = "Enhanced"
|
|
819
|
+
}
|
|
820
|
+
|
|
821
|
+
/** Known values of {@link ExtensionAggregateState} that the service accepts. */
|
|
822
|
+
export declare enum KnownExtensionAggregateState {
|
|
823
|
+
NotSpecified = "NotSpecified",
|
|
824
|
+
Error = "Error",
|
|
825
|
+
Succeeded = "Succeeded",
|
|
826
|
+
Canceled = "Canceled",
|
|
827
|
+
Failed = "Failed",
|
|
828
|
+
Connected = "Connected",
|
|
829
|
+
Disconnected = "Disconnected",
|
|
830
|
+
Deleted = "Deleted",
|
|
831
|
+
Creating = "Creating",
|
|
832
|
+
Updating = "Updating",
|
|
833
|
+
Deleting = "Deleting",
|
|
834
|
+
Moving = "Moving",
|
|
835
|
+
PartiallySucceeded = "PartiallySucceeded",
|
|
836
|
+
PartiallyConnected = "PartiallyConnected",
|
|
837
|
+
InProgress = "InProgress"
|
|
838
|
+
}
|
|
839
|
+
|
|
840
|
+
/** Known values of {@link ImdsAttestation} that the service accepts. */
|
|
841
|
+
export declare enum KnownImdsAttestation {
|
|
842
|
+
Disabled = "Disabled",
|
|
843
|
+
Enabled = "Enabled"
|
|
844
|
+
}
|
|
845
|
+
|
|
846
|
+
/** Known values of {@link NodeArcState} that the service accepts. */
|
|
847
|
+
export declare enum KnownNodeArcState {
|
|
848
|
+
NotSpecified = "NotSpecified",
|
|
849
|
+
Error = "Error",
|
|
850
|
+
Succeeded = "Succeeded",
|
|
851
|
+
Canceled = "Canceled",
|
|
852
|
+
Failed = "Failed",
|
|
853
|
+
Connected = "Connected",
|
|
854
|
+
Disconnected = "Disconnected",
|
|
855
|
+
Deleted = "Deleted",
|
|
856
|
+
Creating = "Creating",
|
|
857
|
+
Updating = "Updating",
|
|
858
|
+
Deleting = "Deleting",
|
|
859
|
+
Moving = "Moving"
|
|
860
|
+
}
|
|
861
|
+
|
|
862
|
+
/** Known values of {@link NodeExtensionState} that the service accepts. */
|
|
863
|
+
export declare enum KnownNodeExtensionState {
|
|
864
|
+
NotSpecified = "NotSpecified",
|
|
865
|
+
Error = "Error",
|
|
866
|
+
Succeeded = "Succeeded",
|
|
867
|
+
Canceled = "Canceled",
|
|
868
|
+
Failed = "Failed",
|
|
869
|
+
Connected = "Connected",
|
|
870
|
+
Disconnected = "Disconnected",
|
|
871
|
+
Deleted = "Deleted",
|
|
872
|
+
Creating = "Creating",
|
|
873
|
+
Updating = "Updating",
|
|
874
|
+
Deleting = "Deleting",
|
|
875
|
+
Moving = "Moving"
|
|
876
|
+
}
|
|
877
|
+
|
|
878
|
+
/** Known values of {@link Origin} that the service accepts. */
|
|
879
|
+
export declare enum KnownOrigin {
|
|
880
|
+
User = "user",
|
|
881
|
+
System = "system",
|
|
882
|
+
UserSystem = "user,system"
|
|
883
|
+
}
|
|
884
|
+
|
|
885
|
+
/** Known values of {@link ProvisioningState} that the service accepts. */
|
|
886
|
+
export declare enum KnownProvisioningState {
|
|
887
|
+
Succeeded = "Succeeded",
|
|
888
|
+
Failed = "Failed",
|
|
889
|
+
Canceled = "Canceled",
|
|
890
|
+
Accepted = "Accepted",
|
|
891
|
+
Provisioning = "Provisioning"
|
|
892
|
+
}
|
|
893
|
+
|
|
894
|
+
/** Known values of {@link Status} that the service accepts. */
|
|
895
|
+
export declare enum KnownStatus {
|
|
896
|
+
NotYetRegistered = "NotYetRegistered",
|
|
897
|
+
ConnectedRecently = "ConnectedRecently",
|
|
898
|
+
NotConnectedRecently = "NotConnectedRecently",
|
|
899
|
+
Disconnected = "Disconnected",
|
|
900
|
+
Error = "Error"
|
|
901
|
+
}
|
|
902
|
+
|
|
903
|
+
/** Known values of {@link WindowsServerSubscription} that the service accepts. */
|
|
904
|
+
export declare enum KnownWindowsServerSubscription {
|
|
905
|
+
Disabled = "Disabled",
|
|
906
|
+
Enabled = "Enabled"
|
|
907
|
+
}
|
|
908
|
+
|
|
909
|
+
/**
|
|
910
|
+
* Defines values for NodeArcState. \
|
|
911
|
+
* {@link KnownNodeArcState} can be used interchangeably with NodeArcState,
|
|
912
|
+
* this enum contains the known values that the service supports.
|
|
913
|
+
* ### Known values supported by the service
|
|
914
|
+
* **NotSpecified** \
|
|
915
|
+
* **Error** \
|
|
916
|
+
* **Succeeded** \
|
|
917
|
+
* **Canceled** \
|
|
918
|
+
* **Failed** \
|
|
919
|
+
* **Connected** \
|
|
920
|
+
* **Disconnected** \
|
|
921
|
+
* **Deleted** \
|
|
922
|
+
* **Creating** \
|
|
923
|
+
* **Updating** \
|
|
924
|
+
* **Deleting** \
|
|
925
|
+
* **Moving**
|
|
926
|
+
*/
|
|
927
|
+
export declare type NodeArcState = string;
|
|
928
|
+
|
|
929
|
+
/**
|
|
930
|
+
* Defines values for NodeExtensionState. \
|
|
931
|
+
* {@link KnownNodeExtensionState} can be used interchangeably with NodeExtensionState,
|
|
932
|
+
* this enum contains the known values that the service supports.
|
|
933
|
+
* ### Known values supported by the service
|
|
934
|
+
* **NotSpecified** \
|
|
935
|
+
* **Error** \
|
|
936
|
+
* **Succeeded** \
|
|
937
|
+
* **Canceled** \
|
|
938
|
+
* **Failed** \
|
|
939
|
+
* **Connected** \
|
|
940
|
+
* **Disconnected** \
|
|
941
|
+
* **Deleted** \
|
|
942
|
+
* **Creating** \
|
|
943
|
+
* **Updating** \
|
|
944
|
+
* **Deleting** \
|
|
945
|
+
* **Moving**
|
|
946
|
+
*/
|
|
947
|
+
export declare type NodeExtensionState = string;
|
|
948
|
+
|
|
949
|
+
/** Details of a REST API operation, returned from the Resource Provider Operations API */
|
|
950
|
+
export declare interface Operation {
|
|
951
|
+
/**
|
|
952
|
+
* The name of the operation, as per Resource-Based Access Control (RBAC). Examples: "Microsoft.Compute/virtualMachines/write", "Microsoft.Compute/virtualMachines/capture/action"
|
|
953
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
954
|
+
*/
|
|
955
|
+
readonly name?: string;
|
|
956
|
+
/**
|
|
957
|
+
* Whether the operation applies to data-plane. This is "true" for data-plane operations and "false" for ARM/control-plane operations.
|
|
958
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
959
|
+
*/
|
|
960
|
+
readonly isDataAction?: boolean;
|
|
961
|
+
/** Localized display information for this particular operation. */
|
|
962
|
+
display?: OperationDisplay;
|
|
963
|
+
/**
|
|
964
|
+
* The intended executor of the operation; as in Resource Based Access Control (RBAC) and audit logs UX. Default value is "user,system"
|
|
965
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
966
|
+
*/
|
|
967
|
+
readonly origin?: Origin;
|
|
968
|
+
/**
|
|
969
|
+
* Enum. Indicates the action type. "Internal" refers to actions that are for internal only APIs.
|
|
970
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
971
|
+
*/
|
|
972
|
+
readonly actionType?: ActionType;
|
|
973
|
+
}
|
|
974
|
+
|
|
975
|
+
/** Localized display information for this particular operation. */
|
|
976
|
+
export declare interface OperationDisplay {
|
|
977
|
+
/**
|
|
978
|
+
* The localized friendly form of the resource provider name, e.g. "Microsoft Monitoring Insights" or "Microsoft Compute".
|
|
979
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
980
|
+
*/
|
|
981
|
+
readonly provider?: string;
|
|
982
|
+
/**
|
|
983
|
+
* The localized friendly name of the resource type related to this operation. E.g. "Virtual Machines" or "Job Schedule Collections".
|
|
984
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
985
|
+
*/
|
|
986
|
+
readonly resource?: string;
|
|
987
|
+
/**
|
|
988
|
+
* The concise, localized friendly name for the operation; suitable for dropdowns. E.g. "Create or Update Virtual Machine", "Restart Virtual Machine".
|
|
989
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
990
|
+
*/
|
|
991
|
+
readonly operation?: string;
|
|
992
|
+
/**
|
|
993
|
+
* The short, localized friendly description of the operation; suitable for tool tips and detailed views.
|
|
994
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
995
|
+
*/
|
|
996
|
+
readonly description?: string;
|
|
997
|
+
}
|
|
998
|
+
|
|
999
|
+
/** A list of REST API operations supported by an Azure Resource Provider. It contains an URL link to get the next set of results. */
|
|
1000
|
+
export declare interface OperationListResult {
|
|
1001
|
+
/**
|
|
1002
|
+
* List of operations supported by the resource provider
|
|
1003
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1004
|
+
*/
|
|
1005
|
+
readonly value?: Operation[];
|
|
1006
|
+
/**
|
|
1007
|
+
* URL to get the next set of operation list results (if there are any).
|
|
1008
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1009
|
+
*/
|
|
1010
|
+
readonly nextLink?: string;
|
|
1011
|
+
}
|
|
1012
|
+
|
|
1013
|
+
/** Interface representing a Operations. */
|
|
1014
|
+
export declare interface Operations {
|
|
1015
|
+
/**
|
|
1016
|
+
* List all available Microsoft.AzureStackHCI provider operations
|
|
1017
|
+
* @param options The options parameters.
|
|
1018
|
+
*/
|
|
1019
|
+
list(options?: OperationsListOptionalParams): Promise<OperationsListResponse>;
|
|
1020
|
+
}
|
|
1021
|
+
|
|
1022
|
+
/** Optional parameters. */
|
|
1023
|
+
export declare interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
/** Contains response data for the list operation. */
|
|
1027
|
+
export declare type OperationsListResponse = OperationListResult;
|
|
1028
|
+
|
|
1029
|
+
/**
|
|
1030
|
+
* Defines values for Origin. \
|
|
1031
|
+
* {@link KnownOrigin} can be used interchangeably with Origin,
|
|
1032
|
+
* this enum contains the known values that the service supports.
|
|
1033
|
+
* ### Known values supported by the service
|
|
1034
|
+
* **user** \
|
|
1035
|
+
* **system** \
|
|
1036
|
+
* **user,system**
|
|
1037
|
+
*/
|
|
1038
|
+
export declare type Origin = string;
|
|
1039
|
+
|
|
1040
|
+
/** Status of Arc Extension for a particular node in HCI Cluster. */
|
|
1041
|
+
export declare interface PerNodeExtensionState {
|
|
1042
|
+
/**
|
|
1043
|
+
* Name of the node in HCI Cluster.
|
|
1044
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1045
|
+
*/
|
|
1046
|
+
readonly name?: string;
|
|
1047
|
+
/**
|
|
1048
|
+
* Fully qualified resource ID for the particular Arc Extension on this node.
|
|
1049
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1050
|
+
*/
|
|
1051
|
+
readonly extension?: string;
|
|
1052
|
+
/**
|
|
1053
|
+
* State of Arc Extension in this node.
|
|
1054
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1055
|
+
*/
|
|
1056
|
+
readonly state?: NodeExtensionState;
|
|
1057
|
+
}
|
|
1058
|
+
|
|
1059
|
+
/** Status of Arc agent for a particular node in HCI Cluster. */
|
|
1060
|
+
export declare interface PerNodeState {
|
|
1061
|
+
/**
|
|
1062
|
+
* Name of the Node in HCI Cluster
|
|
1063
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1064
|
+
*/
|
|
1065
|
+
readonly name?: string;
|
|
1066
|
+
/**
|
|
1067
|
+
* Fully qualified resource ID for the Arc agent of this node.
|
|
1068
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1069
|
+
*/
|
|
1070
|
+
readonly arcInstance?: string;
|
|
1071
|
+
/**
|
|
1072
|
+
* State of Arc agent in this node.
|
|
1073
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1074
|
+
*/
|
|
1075
|
+
readonly state?: NodeArcState;
|
|
1076
|
+
}
|
|
1077
|
+
|
|
1078
|
+
/**
|
|
1079
|
+
* Defines values for ProvisioningState. \
|
|
1080
|
+
* {@link KnownProvisioningState} can be used interchangeably with ProvisioningState,
|
|
1081
|
+
* this enum contains the known values that the service supports.
|
|
1082
|
+
* ### Known values supported by the service
|
|
1083
|
+
* **Succeeded** \
|
|
1084
|
+
* **Failed** \
|
|
1085
|
+
* **Canceled** \
|
|
1086
|
+
* **Accepted** \
|
|
1087
|
+
* **Provisioning**
|
|
1088
|
+
*/
|
|
1089
|
+
export declare type ProvisioningState = string;
|
|
1090
|
+
|
|
1091
|
+
/** The resource model definition for a Azure Resource Manager proxy resource. It will not have tags and a location */
|
|
1092
|
+
export declare type ProxyResource = Resource & {};
|
|
1093
|
+
|
|
1094
|
+
/** Common fields that are returned in the response for all Azure Resource Manager resources */
|
|
1095
|
+
export declare interface Resource {
|
|
1096
|
+
/**
|
|
1097
|
+
* Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
1098
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1099
|
+
*/
|
|
1100
|
+
readonly id?: string;
|
|
1101
|
+
/**
|
|
1102
|
+
* The name of the resource
|
|
1103
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1104
|
+
*/
|
|
1105
|
+
readonly name?: string;
|
|
1106
|
+
/**
|
|
1107
|
+
* The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
1108
|
+
* NOTE: This property will not be serialized. It can only be populated by the server.
|
|
1109
|
+
*/
|
|
1110
|
+
readonly type?: string;
|
|
1111
|
+
}
|
|
1112
|
+
|
|
1113
|
+
/**
|
|
1114
|
+
* Defines values for Status. \
|
|
1115
|
+
* {@link KnownStatus} can be used interchangeably with Status,
|
|
1116
|
+
* this enum contains the known values that the service supports.
|
|
1117
|
+
* ### Known values supported by the service
|
|
1118
|
+
* **NotYetRegistered** \
|
|
1119
|
+
* **ConnectedRecently** \
|
|
1120
|
+
* **NotConnectedRecently** \
|
|
1121
|
+
* **Disconnected** \
|
|
1122
|
+
* **Error**
|
|
1123
|
+
*/
|
|
1124
|
+
export declare type Status = string;
|
|
1125
|
+
|
|
1126
|
+
/** The resource model definition for an Azure Resource Manager tracked top level resource which has 'tags' and a 'location' */
|
|
1127
|
+
export declare type TrackedResource = Resource & {
|
|
1128
|
+
/** Resource tags. */
|
|
1129
|
+
tags?: {
|
|
1130
|
+
[propertyName: string]: string;
|
|
1131
|
+
};
|
|
1132
|
+
/** The geo-location where the resource lives */
|
|
1133
|
+
location: string;
|
|
1134
|
+
};
|
|
1135
|
+
|
|
1136
|
+
/**
|
|
1137
|
+
* Defines values for WindowsServerSubscription. \
|
|
1138
|
+
* {@link KnownWindowsServerSubscription} can be used interchangeably with WindowsServerSubscription,
|
|
1139
|
+
* this enum contains the known values that the service supports.
|
|
1140
|
+
* ### Known values supported by the service
|
|
1141
|
+
* **Disabled** \
|
|
1142
|
+
* **Enabled**
|
|
1143
|
+
*/
|
|
1144
|
+
export declare type WindowsServerSubscription = string;
|
|
1145
|
+
|
|
1146
|
+
export { }
|