@azure/arm-devspaces 2.1.1-alpha.20250619.1 → 2.1.1-alpha.20250717.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/package.json
CHANGED
|
@@ -1,294 +1,294 @@
|
|
|
1
|
-
## API Report File for "@azure/arm-devspaces"
|
|
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 interface ContainerHostMapping {
|
|
15
|
-
containerHostResourceId?: string;
|
|
16
|
-
readonly mappedControllerResourceId?: string;
|
|
17
|
-
}
|
|
18
|
-
|
|
19
|
-
// @public
|
|
20
|
-
export interface ContainerHostMappings {
|
|
21
|
-
getContainerHostMapping(resourceGroupName: string, location: string, containerHostMapping: ContainerHostMapping, options?: ContainerHostMappingsGetContainerHostMappingOptionalParams): Promise<ContainerHostMappingsGetContainerHostMappingResponse>;
|
|
22
|
-
}
|
|
23
|
-
|
|
24
|
-
// @public
|
|
25
|
-
export interface ContainerHostMappingsGetContainerHostMappingOptionalParams extends coreClient.OperationOptions {
|
|
26
|
-
}
|
|
27
|
-
|
|
28
|
-
// @public
|
|
29
|
-
export type ContainerHostMappingsGetContainerHostMappingResponse = ContainerHostMapping;
|
|
30
|
-
|
|
31
|
-
// @public (undocumented)
|
|
32
|
-
export interface Controller extends TrackedResource {
|
|
33
|
-
readonly dataPlaneFqdn?: string;
|
|
34
|
-
readonly hostSuffix?: string;
|
|
35
|
-
readonly provisioningState?: ProvisioningState;
|
|
36
|
-
sku: Sku;
|
|
37
|
-
readonly targetContainerHostApiServerFqdn?: string;
|
|
38
|
-
targetContainerHostCredentialsBase64: string;
|
|
39
|
-
targetContainerHostResourceId: string;
|
|
40
|
-
}
|
|
41
|
-
|
|
42
|
-
// @public (undocumented)
|
|
43
|
-
export interface ControllerConnectionDetails {
|
|
44
|
-
orchestratorSpecificConnectionDetails?: OrchestratorSpecificConnectionDetailsUnion;
|
|
45
|
-
}
|
|
46
|
-
|
|
47
|
-
// @public (undocumented)
|
|
48
|
-
export interface ControllerConnectionDetailsList {
|
|
49
|
-
connectionDetailsList?: ControllerConnectionDetails[];
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
// @public (undocumented)
|
|
53
|
-
export interface ControllerList {
|
|
54
|
-
readonly nextLink?: string;
|
|
55
|
-
value?: Controller[];
|
|
56
|
-
}
|
|
57
|
-
|
|
58
|
-
// @public
|
|
59
|
-
export interface Controllers {
|
|
60
|
-
beginCreate(resourceGroupName: string, name: string, controller: Controller, options?: ControllersCreateOptionalParams): Promise<PollerLike<PollOperationState<ControllersCreateResponse>, ControllersCreateResponse>>;
|
|
61
|
-
beginCreateAndWait(resourceGroupName: string, name: string, controller: Controller, options?: ControllersCreateOptionalParams): Promise<ControllersCreateResponse>;
|
|
62
|
-
beginDelete(resourceGroupName: string, name: string, options?: ControllersDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
63
|
-
beginDeleteAndWait(resourceGroupName: string, name: string, options?: ControllersDeleteOptionalParams): Promise<void>;
|
|
64
|
-
get(resourceGroupName: string, name: string, options?: ControllersGetOptionalParams): Promise<ControllersGetResponse>;
|
|
65
|
-
list(options?: ControllersListOptionalParams): PagedAsyncIterableIterator<Controller>;
|
|
66
|
-
listByResourceGroup(resourceGroupName: string, options?: ControllersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Controller>;
|
|
67
|
-
listConnectionDetails(resourceGroupName: string, name: string, listConnectionDetailsParameters: ListConnectionDetailsParameters, options?: ControllersListConnectionDetailsOptionalParams): Promise<ControllersListConnectionDetailsResponse>;
|
|
68
|
-
update(resourceGroupName: string, name: string, controllerUpdateParameters: ControllerUpdateParameters, options?: ControllersUpdateOptionalParams): Promise<ControllersUpdateResponse>;
|
|
69
|
-
}
|
|
70
|
-
|
|
71
|
-
// @public
|
|
72
|
-
export interface ControllersCreateOptionalParams extends coreClient.OperationOptions {
|
|
73
|
-
resumeFrom?: string;
|
|
74
|
-
updateIntervalInMs?: number;
|
|
75
|
-
}
|
|
76
|
-
|
|
77
|
-
// @public
|
|
78
|
-
export type ControllersCreateResponse = Controller;
|
|
79
|
-
|
|
80
|
-
// @public
|
|
81
|
-
export interface ControllersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
82
|
-
resumeFrom?: string;
|
|
83
|
-
updateIntervalInMs?: number;
|
|
84
|
-
}
|
|
85
|
-
|
|
86
|
-
// @public
|
|
87
|
-
export interface ControllersGetOptionalParams extends coreClient.OperationOptions {
|
|
88
|
-
}
|
|
89
|
-
|
|
90
|
-
// @public
|
|
91
|
-
export type ControllersGetResponse = Controller;
|
|
92
|
-
|
|
93
|
-
// @public
|
|
94
|
-
export interface ControllersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
95
|
-
}
|
|
96
|
-
|
|
97
|
-
// @public
|
|
98
|
-
export type ControllersListByResourceGroupNextResponse = ControllerList;
|
|
99
|
-
|
|
100
|
-
// @public
|
|
101
|
-
export interface ControllersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
102
|
-
}
|
|
103
|
-
|
|
104
|
-
// @public
|
|
105
|
-
export type ControllersListByResourceGroupResponse = ControllerList;
|
|
106
|
-
|
|
107
|
-
// @public
|
|
108
|
-
export interface ControllersListConnectionDetailsOptionalParams extends coreClient.OperationOptions {
|
|
109
|
-
}
|
|
110
|
-
|
|
111
|
-
// @public
|
|
112
|
-
export type ControllersListConnectionDetailsResponse = ControllerConnectionDetailsList;
|
|
113
|
-
|
|
114
|
-
// @public
|
|
115
|
-
export interface ControllersListNextOptionalParams extends coreClient.OperationOptions {
|
|
116
|
-
}
|
|
117
|
-
|
|
118
|
-
// @public
|
|
119
|
-
export type ControllersListNextResponse = ControllerList;
|
|
120
|
-
|
|
121
|
-
// @public
|
|
122
|
-
export interface ControllersListOptionalParams extends coreClient.OperationOptions {
|
|
123
|
-
}
|
|
124
|
-
|
|
125
|
-
// @public
|
|
126
|
-
export type ControllersListResponse = ControllerList;
|
|
127
|
-
|
|
128
|
-
// @public
|
|
129
|
-
export interface ControllersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
130
|
-
}
|
|
131
|
-
|
|
132
|
-
// @public
|
|
133
|
-
export type ControllersUpdateResponse = Controller;
|
|
134
|
-
|
|
135
|
-
// @public
|
|
136
|
-
export interface ControllerUpdateParameters {
|
|
137
|
-
tags?: {
|
|
138
|
-
[propertyName: string]: string;
|
|
139
|
-
};
|
|
140
|
-
targetContainerHostCredentialsBase64?: string;
|
|
141
|
-
}
|
|
142
|
-
|
|
143
|
-
// @public
|
|
144
|
-
export interface DevSpacesErrorResponse {
|
|
145
|
-
error?: ErrorDetails;
|
|
146
|
-
}
|
|
147
|
-
|
|
148
|
-
// @public (undocumented)
|
|
149
|
-
export class DevSpacesManagementClient extends coreClient.ServiceClient {
|
|
150
|
-
// (undocumented)
|
|
151
|
-
$host: string;
|
|
152
|
-
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DevSpacesManagementClientOptionalParams);
|
|
153
|
-
// (undocumented)
|
|
154
|
-
apiVersion: string;
|
|
155
|
-
// (undocumented)
|
|
156
|
-
containerHostMappings: ContainerHostMappings;
|
|
157
|
-
// (undocumented)
|
|
158
|
-
controllers: Controllers;
|
|
159
|
-
// (undocumented)
|
|
160
|
-
operations: Operations;
|
|
161
|
-
// (undocumented)
|
|
162
|
-
subscriptionId: string;
|
|
163
|
-
}
|
|
164
|
-
|
|
165
|
-
// @public
|
|
166
|
-
export interface DevSpacesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
167
|
-
$host?: string;
|
|
168
|
-
apiVersion?: string;
|
|
169
|
-
endpoint?: string;
|
|
170
|
-
}
|
|
171
|
-
|
|
172
|
-
// @public (undocumented)
|
|
173
|
-
export interface ErrorDetails {
|
|
174
|
-
readonly code?: string;
|
|
175
|
-
readonly message?: string;
|
|
176
|
-
readonly target?: string;
|
|
177
|
-
}
|
|
178
|
-
|
|
179
|
-
// @public
|
|
180
|
-
export function getContinuationToken(page: unknown): string | undefined;
|
|
181
|
-
|
|
182
|
-
// @public
|
|
183
|
-
export enum KnownProvisioningState {
|
|
184
|
-
Canceled = "Canceled",
|
|
185
|
-
Creating = "Creating",
|
|
186
|
-
Deleted = "Deleted",
|
|
187
|
-
Deleting = "Deleting",
|
|
188
|
-
Failed = "Failed",
|
|
189
|
-
Succeeded = "Succeeded",
|
|
190
|
-
Updating = "Updating"
|
|
191
|
-
}
|
|
192
|
-
|
|
193
|
-
// @public
|
|
194
|
-
export enum KnownSkuName {
|
|
195
|
-
S1 = "S1"
|
|
196
|
-
}
|
|
197
|
-
|
|
198
|
-
// @public
|
|
199
|
-
export enum KnownSkuTier {
|
|
200
|
-
Standard = "Standard"
|
|
201
|
-
}
|
|
202
|
-
|
|
203
|
-
// @public
|
|
204
|
-
export interface KubernetesConnectionDetails extends OrchestratorSpecificConnectionDetails {
|
|
205
|
-
instanceType: "Kubernetes";
|
|
206
|
-
kubeConfig?: string;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
// @public
|
|
210
|
-
export interface ListConnectionDetailsParameters {
|
|
211
|
-
targetContainerHostResourceId: string;
|
|
212
|
-
}
|
|
213
|
-
|
|
214
|
-
// @public
|
|
215
|
-
export interface Operations {
|
|
216
|
-
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<ResourceProviderOperationDefinition>;
|
|
217
|
-
}
|
|
218
|
-
|
|
219
|
-
// @public
|
|
220
|
-
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
221
|
-
}
|
|
222
|
-
|
|
223
|
-
// @public
|
|
224
|
-
export type OperationsListNextResponse = ResourceProviderOperationList;
|
|
225
|
-
|
|
226
|
-
// @public
|
|
227
|
-
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
228
|
-
}
|
|
229
|
-
|
|
230
|
-
// @public
|
|
231
|
-
export type OperationsListResponse = ResourceProviderOperationList;
|
|
232
|
-
|
|
233
|
-
// @public
|
|
234
|
-
export interface OrchestratorSpecificConnectionDetails {
|
|
235
|
-
instanceType: "Kubernetes";
|
|
236
|
-
}
|
|
237
|
-
|
|
238
|
-
// @public (undocumented)
|
|
239
|
-
export type OrchestratorSpecificConnectionDetailsUnion = OrchestratorSpecificConnectionDetails | KubernetesConnectionDetails;
|
|
240
|
-
|
|
241
|
-
// @public
|
|
242
|
-
export type ProvisioningState = string;
|
|
243
|
-
|
|
244
|
-
// @public
|
|
245
|
-
export interface Resource {
|
|
246
|
-
readonly id?: string;
|
|
247
|
-
readonly name?: string;
|
|
248
|
-
readonly type?: string;
|
|
249
|
-
}
|
|
250
|
-
|
|
251
|
-
// @public (undocumented)
|
|
252
|
-
export interface ResourceProviderOperationDefinition {
|
|
253
|
-
// (undocumented)
|
|
254
|
-
display?: ResourceProviderOperationDisplay;
|
|
255
|
-
name?: string;
|
|
256
|
-
}
|
|
257
|
-
|
|
258
|
-
// @public (undocumented)
|
|
259
|
-
export interface ResourceProviderOperationDisplay {
|
|
260
|
-
description?: string;
|
|
261
|
-
operation?: string;
|
|
262
|
-
provider?: string;
|
|
263
|
-
resource?: string;
|
|
264
|
-
}
|
|
265
|
-
|
|
266
|
-
// @public (undocumented)
|
|
267
|
-
export interface ResourceProviderOperationList {
|
|
268
|
-
readonly nextLink?: string;
|
|
269
|
-
value?: ResourceProviderOperationDefinition[];
|
|
270
|
-
}
|
|
271
|
-
|
|
272
|
-
// @public
|
|
273
|
-
export interface Sku {
|
|
274
|
-
name: SkuName;
|
|
275
|
-
tier?: SkuTier;
|
|
276
|
-
}
|
|
277
|
-
|
|
278
|
-
// @public
|
|
279
|
-
export type SkuName = string;
|
|
280
|
-
|
|
281
|
-
// @public
|
|
282
|
-
export type SkuTier = string;
|
|
283
|
-
|
|
284
|
-
// @public
|
|
285
|
-
export interface TrackedResource extends Resource {
|
|
286
|
-
location?: string;
|
|
287
|
-
tags?: {
|
|
288
|
-
[propertyName: string]: string;
|
|
289
|
-
};
|
|
290
|
-
}
|
|
291
|
-
|
|
292
|
-
// (No @packageDocumentation comment for this package)
|
|
293
|
-
|
|
294
|
-
```
|
|
1
|
+
## API Report File for "@azure/arm-devspaces"
|
|
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 interface ContainerHostMapping {
|
|
15
|
+
containerHostResourceId?: string;
|
|
16
|
+
readonly mappedControllerResourceId?: string;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
// @public
|
|
20
|
+
export interface ContainerHostMappings {
|
|
21
|
+
getContainerHostMapping(resourceGroupName: string, location: string, containerHostMapping: ContainerHostMapping, options?: ContainerHostMappingsGetContainerHostMappingOptionalParams): Promise<ContainerHostMappingsGetContainerHostMappingResponse>;
|
|
22
|
+
}
|
|
23
|
+
|
|
24
|
+
// @public
|
|
25
|
+
export interface ContainerHostMappingsGetContainerHostMappingOptionalParams extends coreClient.OperationOptions {
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
// @public
|
|
29
|
+
export type ContainerHostMappingsGetContainerHostMappingResponse = ContainerHostMapping;
|
|
30
|
+
|
|
31
|
+
// @public (undocumented)
|
|
32
|
+
export interface Controller extends TrackedResource {
|
|
33
|
+
readonly dataPlaneFqdn?: string;
|
|
34
|
+
readonly hostSuffix?: string;
|
|
35
|
+
readonly provisioningState?: ProvisioningState;
|
|
36
|
+
sku: Sku;
|
|
37
|
+
readonly targetContainerHostApiServerFqdn?: string;
|
|
38
|
+
targetContainerHostCredentialsBase64: string;
|
|
39
|
+
targetContainerHostResourceId: string;
|
|
40
|
+
}
|
|
41
|
+
|
|
42
|
+
// @public (undocumented)
|
|
43
|
+
export interface ControllerConnectionDetails {
|
|
44
|
+
orchestratorSpecificConnectionDetails?: OrchestratorSpecificConnectionDetailsUnion;
|
|
45
|
+
}
|
|
46
|
+
|
|
47
|
+
// @public (undocumented)
|
|
48
|
+
export interface ControllerConnectionDetailsList {
|
|
49
|
+
connectionDetailsList?: ControllerConnectionDetails[];
|
|
50
|
+
}
|
|
51
|
+
|
|
52
|
+
// @public (undocumented)
|
|
53
|
+
export interface ControllerList {
|
|
54
|
+
readonly nextLink?: string;
|
|
55
|
+
value?: Controller[];
|
|
56
|
+
}
|
|
57
|
+
|
|
58
|
+
// @public
|
|
59
|
+
export interface Controllers {
|
|
60
|
+
beginCreate(resourceGroupName: string, name: string, controller: Controller, options?: ControllersCreateOptionalParams): Promise<PollerLike<PollOperationState<ControllersCreateResponse>, ControllersCreateResponse>>;
|
|
61
|
+
beginCreateAndWait(resourceGroupName: string, name: string, controller: Controller, options?: ControllersCreateOptionalParams): Promise<ControllersCreateResponse>;
|
|
62
|
+
beginDelete(resourceGroupName: string, name: string, options?: ControllersDeleteOptionalParams): Promise<PollerLike<PollOperationState<void>, void>>;
|
|
63
|
+
beginDeleteAndWait(resourceGroupName: string, name: string, options?: ControllersDeleteOptionalParams): Promise<void>;
|
|
64
|
+
get(resourceGroupName: string, name: string, options?: ControllersGetOptionalParams): Promise<ControllersGetResponse>;
|
|
65
|
+
list(options?: ControllersListOptionalParams): PagedAsyncIterableIterator<Controller>;
|
|
66
|
+
listByResourceGroup(resourceGroupName: string, options?: ControllersListByResourceGroupOptionalParams): PagedAsyncIterableIterator<Controller>;
|
|
67
|
+
listConnectionDetails(resourceGroupName: string, name: string, listConnectionDetailsParameters: ListConnectionDetailsParameters, options?: ControllersListConnectionDetailsOptionalParams): Promise<ControllersListConnectionDetailsResponse>;
|
|
68
|
+
update(resourceGroupName: string, name: string, controllerUpdateParameters: ControllerUpdateParameters, options?: ControllersUpdateOptionalParams): Promise<ControllersUpdateResponse>;
|
|
69
|
+
}
|
|
70
|
+
|
|
71
|
+
// @public
|
|
72
|
+
export interface ControllersCreateOptionalParams extends coreClient.OperationOptions {
|
|
73
|
+
resumeFrom?: string;
|
|
74
|
+
updateIntervalInMs?: number;
|
|
75
|
+
}
|
|
76
|
+
|
|
77
|
+
// @public
|
|
78
|
+
export type ControllersCreateResponse = Controller;
|
|
79
|
+
|
|
80
|
+
// @public
|
|
81
|
+
export interface ControllersDeleteOptionalParams extends coreClient.OperationOptions {
|
|
82
|
+
resumeFrom?: string;
|
|
83
|
+
updateIntervalInMs?: number;
|
|
84
|
+
}
|
|
85
|
+
|
|
86
|
+
// @public
|
|
87
|
+
export interface ControllersGetOptionalParams extends coreClient.OperationOptions {
|
|
88
|
+
}
|
|
89
|
+
|
|
90
|
+
// @public
|
|
91
|
+
export type ControllersGetResponse = Controller;
|
|
92
|
+
|
|
93
|
+
// @public
|
|
94
|
+
export interface ControllersListByResourceGroupNextOptionalParams extends coreClient.OperationOptions {
|
|
95
|
+
}
|
|
96
|
+
|
|
97
|
+
// @public
|
|
98
|
+
export type ControllersListByResourceGroupNextResponse = ControllerList;
|
|
99
|
+
|
|
100
|
+
// @public
|
|
101
|
+
export interface ControllersListByResourceGroupOptionalParams extends coreClient.OperationOptions {
|
|
102
|
+
}
|
|
103
|
+
|
|
104
|
+
// @public
|
|
105
|
+
export type ControllersListByResourceGroupResponse = ControllerList;
|
|
106
|
+
|
|
107
|
+
// @public
|
|
108
|
+
export interface ControllersListConnectionDetailsOptionalParams extends coreClient.OperationOptions {
|
|
109
|
+
}
|
|
110
|
+
|
|
111
|
+
// @public
|
|
112
|
+
export type ControllersListConnectionDetailsResponse = ControllerConnectionDetailsList;
|
|
113
|
+
|
|
114
|
+
// @public
|
|
115
|
+
export interface ControllersListNextOptionalParams extends coreClient.OperationOptions {
|
|
116
|
+
}
|
|
117
|
+
|
|
118
|
+
// @public
|
|
119
|
+
export type ControllersListNextResponse = ControllerList;
|
|
120
|
+
|
|
121
|
+
// @public
|
|
122
|
+
export interface ControllersListOptionalParams extends coreClient.OperationOptions {
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// @public
|
|
126
|
+
export type ControllersListResponse = ControllerList;
|
|
127
|
+
|
|
128
|
+
// @public
|
|
129
|
+
export interface ControllersUpdateOptionalParams extends coreClient.OperationOptions {
|
|
130
|
+
}
|
|
131
|
+
|
|
132
|
+
// @public
|
|
133
|
+
export type ControllersUpdateResponse = Controller;
|
|
134
|
+
|
|
135
|
+
// @public
|
|
136
|
+
export interface ControllerUpdateParameters {
|
|
137
|
+
tags?: {
|
|
138
|
+
[propertyName: string]: string;
|
|
139
|
+
};
|
|
140
|
+
targetContainerHostCredentialsBase64?: string;
|
|
141
|
+
}
|
|
142
|
+
|
|
143
|
+
// @public
|
|
144
|
+
export interface DevSpacesErrorResponse {
|
|
145
|
+
error?: ErrorDetails;
|
|
146
|
+
}
|
|
147
|
+
|
|
148
|
+
// @public (undocumented)
|
|
149
|
+
export class DevSpacesManagementClient extends coreClient.ServiceClient {
|
|
150
|
+
// (undocumented)
|
|
151
|
+
$host: string;
|
|
152
|
+
constructor(credentials: coreAuth.TokenCredential, subscriptionId: string, options?: DevSpacesManagementClientOptionalParams);
|
|
153
|
+
// (undocumented)
|
|
154
|
+
apiVersion: string;
|
|
155
|
+
// (undocumented)
|
|
156
|
+
containerHostMappings: ContainerHostMappings;
|
|
157
|
+
// (undocumented)
|
|
158
|
+
controllers: Controllers;
|
|
159
|
+
// (undocumented)
|
|
160
|
+
operations: Operations;
|
|
161
|
+
// (undocumented)
|
|
162
|
+
subscriptionId: string;
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// @public
|
|
166
|
+
export interface DevSpacesManagementClientOptionalParams extends coreClient.ServiceClientOptions {
|
|
167
|
+
$host?: string;
|
|
168
|
+
apiVersion?: string;
|
|
169
|
+
endpoint?: string;
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// @public (undocumented)
|
|
173
|
+
export interface ErrorDetails {
|
|
174
|
+
readonly code?: string;
|
|
175
|
+
readonly message?: string;
|
|
176
|
+
readonly target?: string;
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// @public
|
|
180
|
+
export function getContinuationToken(page: unknown): string | undefined;
|
|
181
|
+
|
|
182
|
+
// @public
|
|
183
|
+
export enum KnownProvisioningState {
|
|
184
|
+
Canceled = "Canceled",
|
|
185
|
+
Creating = "Creating",
|
|
186
|
+
Deleted = "Deleted",
|
|
187
|
+
Deleting = "Deleting",
|
|
188
|
+
Failed = "Failed",
|
|
189
|
+
Succeeded = "Succeeded",
|
|
190
|
+
Updating = "Updating"
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// @public
|
|
194
|
+
export enum KnownSkuName {
|
|
195
|
+
S1 = "S1"
|
|
196
|
+
}
|
|
197
|
+
|
|
198
|
+
// @public
|
|
199
|
+
export enum KnownSkuTier {
|
|
200
|
+
Standard = "Standard"
|
|
201
|
+
}
|
|
202
|
+
|
|
203
|
+
// @public
|
|
204
|
+
export interface KubernetesConnectionDetails extends OrchestratorSpecificConnectionDetails {
|
|
205
|
+
instanceType: "Kubernetes";
|
|
206
|
+
kubeConfig?: string;
|
|
207
|
+
}
|
|
208
|
+
|
|
209
|
+
// @public
|
|
210
|
+
export interface ListConnectionDetailsParameters {
|
|
211
|
+
targetContainerHostResourceId: string;
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// @public
|
|
215
|
+
export interface Operations {
|
|
216
|
+
list(options?: OperationsListOptionalParams): PagedAsyncIterableIterator<ResourceProviderOperationDefinition>;
|
|
217
|
+
}
|
|
218
|
+
|
|
219
|
+
// @public
|
|
220
|
+
export interface OperationsListNextOptionalParams extends coreClient.OperationOptions {
|
|
221
|
+
}
|
|
222
|
+
|
|
223
|
+
// @public
|
|
224
|
+
export type OperationsListNextResponse = ResourceProviderOperationList;
|
|
225
|
+
|
|
226
|
+
// @public
|
|
227
|
+
export interface OperationsListOptionalParams extends coreClient.OperationOptions {
|
|
228
|
+
}
|
|
229
|
+
|
|
230
|
+
// @public
|
|
231
|
+
export type OperationsListResponse = ResourceProviderOperationList;
|
|
232
|
+
|
|
233
|
+
// @public
|
|
234
|
+
export interface OrchestratorSpecificConnectionDetails {
|
|
235
|
+
instanceType: "Kubernetes";
|
|
236
|
+
}
|
|
237
|
+
|
|
238
|
+
// @public (undocumented)
|
|
239
|
+
export type OrchestratorSpecificConnectionDetailsUnion = OrchestratorSpecificConnectionDetails | KubernetesConnectionDetails;
|
|
240
|
+
|
|
241
|
+
// @public
|
|
242
|
+
export type ProvisioningState = string;
|
|
243
|
+
|
|
244
|
+
// @public
|
|
245
|
+
export interface Resource {
|
|
246
|
+
readonly id?: string;
|
|
247
|
+
readonly name?: string;
|
|
248
|
+
readonly type?: string;
|
|
249
|
+
}
|
|
250
|
+
|
|
251
|
+
// @public (undocumented)
|
|
252
|
+
export interface ResourceProviderOperationDefinition {
|
|
253
|
+
// (undocumented)
|
|
254
|
+
display?: ResourceProviderOperationDisplay;
|
|
255
|
+
name?: string;
|
|
256
|
+
}
|
|
257
|
+
|
|
258
|
+
// @public (undocumented)
|
|
259
|
+
export interface ResourceProviderOperationDisplay {
|
|
260
|
+
description?: string;
|
|
261
|
+
operation?: string;
|
|
262
|
+
provider?: string;
|
|
263
|
+
resource?: string;
|
|
264
|
+
}
|
|
265
|
+
|
|
266
|
+
// @public (undocumented)
|
|
267
|
+
export interface ResourceProviderOperationList {
|
|
268
|
+
readonly nextLink?: string;
|
|
269
|
+
value?: ResourceProviderOperationDefinition[];
|
|
270
|
+
}
|
|
271
|
+
|
|
272
|
+
// @public
|
|
273
|
+
export interface Sku {
|
|
274
|
+
name: SkuName;
|
|
275
|
+
tier?: SkuTier;
|
|
276
|
+
}
|
|
277
|
+
|
|
278
|
+
// @public
|
|
279
|
+
export type SkuName = string;
|
|
280
|
+
|
|
281
|
+
// @public
|
|
282
|
+
export type SkuTier = string;
|
|
283
|
+
|
|
284
|
+
// @public
|
|
285
|
+
export interface TrackedResource extends Resource {
|
|
286
|
+
location?: string;
|
|
287
|
+
tags?: {
|
|
288
|
+
[propertyName: string]: string;
|
|
289
|
+
};
|
|
290
|
+
}
|
|
291
|
+
|
|
292
|
+
// (No @packageDocumentation comment for this package)
|
|
293
|
+
|
|
294
|
+
```
|