@azure/arm-devspaces 1.2.1 → 2.0.1-alpha.20220201.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 -83
- package/dist/index.js +1321 -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/devSpacesManagementClient.d.ts +20 -0
- package/dist-esm/src/devSpacesManagementClient.d.ts.map +1 -0
- package/dist-esm/src/devSpacesManagementClient.js +53 -0
- package/dist-esm/src/devSpacesManagementClient.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 +287 -0
- package/dist-esm/src/models/index.d.ts.map +1 -0
- package/dist-esm/src/models/index.js +29 -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/{esm → dist-esm/src}/models/mappers.js +204 -231
- package/dist-esm/src/models/mappers.js.map +1 -0
- package/dist-esm/src/models/parameters.d.ts +15 -0
- package/dist-esm/src/models/parameters.d.ts.map +1 -0
- package/dist-esm/src/models/parameters.js +129 -0
- package/dist-esm/src/models/parameters.js.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts +23 -0
- package/dist-esm/src/operations/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operations/containerHostMappings.js +59 -0
- package/dist-esm/src/operations/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operations/controllers.d.ts +111 -0
- package/dist-esm/src/operations/controllers.d.ts.map +1 -0
- package/dist-esm/src/operations/controllers.js +490 -0
- package/dist-esm/src/operations/controllers.js.map +1 -0
- package/{esm → dist-esm/src}/operations/index.d.ts +1 -1
- package/dist-esm/src/operations/index.d.ts.map +1 -0
- package/{esm → dist-esm/src}/operations/index.js +4 -6
- package/dist-esm/src/operations/index.js.map +1 -0
- package/dist-esm/src/operations/operations.d.ts +34 -0
- package/dist-esm/src/operations/operations.d.ts.map +1 -0
- package/dist-esm/src/operations/operations.js +116 -0
- package/dist-esm/src/operations/operations.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts +15 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js +9 -0
- package/dist-esm/src/operationsInterfaces/containerHostMappings.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts +74 -0
- package/dist-esm/src/operationsInterfaces/controllers.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/controllers.js +9 -0
- package/dist-esm/src/operationsInterfaces/controllers.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts +4 -0
- package/dist-esm/src/operationsInterfaces/index.d.ts.map +1 -0
- package/dist-esm/src/operationsInterfaces/index.js +11 -0
- package/dist-esm/src/operationsInterfaces/index.js.map +1 -0
- package/dist-esm/src/operationsInterfaces/operations.d.ts +12 -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 +69 -24
- package/review/arm-devspaces.api.md +300 -0
- package/rollup.config.js +184 -27
- package/src/devSpacesManagementClient.ts +74 -39
- package/src/index.ts +12 -0
- package/src/lroImpl.ts +34 -0
- package/src/models/index.ts +251 -512
- package/src/models/mappers.ts +202 -226
- package/src/models/parameters.ts +98 -38
- package/src/operations/containerHostMappings.ts +51 -69
- package/src/operations/controllers.ts +469 -377
- package/src/operations/index.ts +4 -6
- package/src/operations/operations.ts +87 -81
- package/src/operationsInterfaces/containerHostMappings.ts +32 -0
- package/src/operationsInterfaces/controllers.ts +140 -0
- package/src/operationsInterfaces/index.ts +11 -0
- package/src/operationsInterfaces/operations.ts +26 -0
- package/tsconfig.json +4 -4
- package/types/arm-devspaces.d.ts +451 -0
- package/types/tsdoc-metadata.json +11 -0
- package/dist/arm-devspaces.js +0 -1261
- package/dist/arm-devspaces.js.map +0 -1
- package/dist/arm-devspaces.min.js +0 -1
- package/dist/arm-devspaces.min.js.map +0 -1
- package/esm/devSpacesManagementClient.d.ts +0 -26
- package/esm/devSpacesManagementClient.d.ts.map +0 -1
- package/esm/devSpacesManagementClient.js +0 -40
- package/esm/devSpacesManagementClient.js.map +0 -1
- package/esm/devSpacesManagementClientContext.d.ts +0 -22
- package/esm/devSpacesManagementClientContext.d.ts.map +0 -1
- package/esm/devSpacesManagementClientContext.js +0 -61
- package/esm/devSpacesManagementClientContext.js.map +0 -1
- package/esm/models/containerHostMappingsMappers.d.ts +0 -2
- package/esm/models/containerHostMappingsMappers.d.ts.map +0 -1
- package/esm/models/containerHostMappingsMappers.js +0 -11
- package/esm/models/containerHostMappingsMappers.js.map +0 -1
- package/esm/models/controllersMappers.d.ts +0 -2
- package/esm/models/controllersMappers.d.ts.map +0 -1
- package/esm/models/controllersMappers.js +0 -11
- package/esm/models/controllersMappers.js.map +0 -1
- package/esm/models/index.d.ts +0 -564
- package/esm/models/index.d.ts.map +0 -1
- package/esm/models/index.js +0 -10
- package/esm/models/index.js.map +0 -1
- package/esm/models/mappers.d.ts +0 -24
- package/esm/models/mappers.d.ts.map +0 -1
- 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 -11
- package/esm/models/operationsMappers.js.map +0 -1
- package/esm/models/parameters.d.ts +0 -9
- package/esm/models/parameters.d.ts.map +0 -1
- package/esm/models/parameters.js +0 -90
- package/esm/models/parameters.js.map +0 -1
- package/esm/operations/containerHostMappings.d.ts +0 -35
- package/esm/operations/containerHostMappings.d.ts.map +0 -1
- package/esm/operations/containerHostMappings.js +0 -66
- package/esm/operations/containerHostMappings.js.map +0 -1
- package/esm/operations/controllers.d.ts +0 -198
- package/esm/operations/controllers.d.ts.map +0 -1
- package/esm/operations/controllers.js +0 -346
- package/esm/operations/controllers.js.map +0 -1
- package/esm/operations/index.d.ts.map +0 -1
- package/esm/operations/index.js.map +0 -1
- package/esm/operations/operations.d.ts +0 -50
- package/esm/operations/operations.d.ts.map +0 -1
- package/esm/operations/operations.js +0 -77
- package/esm/operations/operations.js.map +0 -1
- package/src/devSpacesManagementClientContext.ts +0 -68
- package/src/models/containerHostMappingsMappers.ts +0 -16
- package/src/models/controllersMappers.ts +0 -27
- package/src/models/operationsMappers.ts +0 -18
|
@@ -1,18 +1,11 @@
|
|
|
1
1
|
/*
|
|
2
|
-
* Copyright (c) Microsoft Corporation.
|
|
3
|
-
* Licensed under the MIT License.
|
|
4
|
-
* license information.
|
|
2
|
+
* Copyright (c) Microsoft Corporation.
|
|
3
|
+
* Licensed under the MIT License.
|
|
5
4
|
*
|
|
6
5
|
* Code generated by Microsoft (R) AutoRest Code Generator.
|
|
7
|
-
* Changes may cause incorrect behavior and will be lost if the code is
|
|
8
|
-
* regenerated.
|
|
6
|
+
* Changes may cause incorrect behavior and will be lost if the code is regenerated.
|
|
9
7
|
*/
|
|
10
|
-
|
|
11
|
-
import { CloudErrorMapper, BaseResourceMapper } from "@azure/ms-rest-azure-js";
|
|
12
|
-
export var CloudError = CloudErrorMapper;
|
|
13
|
-
export var BaseResource = BaseResourceMapper;
|
|
14
|
-
export var ContainerHostMapping = {
|
|
15
|
-
serializedName: "ContainerHostMapping",
|
|
8
|
+
export const ContainerHostMapping = {
|
|
16
9
|
type: {
|
|
17
10
|
name: "Composite",
|
|
18
11
|
className: "ContainerHostMapping",
|
|
@@ -24,8 +17,8 @@ export var ContainerHostMapping = {
|
|
|
24
17
|
}
|
|
25
18
|
},
|
|
26
19
|
mappedControllerResourceId: {
|
|
27
|
-
readOnly: true,
|
|
28
20
|
serializedName: "mappedControllerResourceId",
|
|
21
|
+
readOnly: true,
|
|
29
22
|
type: {
|
|
30
23
|
name: "String"
|
|
31
24
|
}
|
|
@@ -33,53 +26,43 @@ export var ContainerHostMapping = {
|
|
|
33
26
|
}
|
|
34
27
|
}
|
|
35
28
|
};
|
|
36
|
-
export
|
|
37
|
-
serializedName: "Sku",
|
|
29
|
+
export const DevSpacesErrorResponse = {
|
|
38
30
|
type: {
|
|
39
31
|
name: "Composite",
|
|
40
|
-
className: "
|
|
32
|
+
className: "DevSpacesErrorResponse",
|
|
41
33
|
modelProperties: {
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
isConstant: true,
|
|
45
|
-
serializedName: "name",
|
|
46
|
-
defaultValue: 'S1',
|
|
47
|
-
type: {
|
|
48
|
-
name: "String"
|
|
49
|
-
}
|
|
50
|
-
},
|
|
51
|
-
tier: {
|
|
52
|
-
serializedName: "tier",
|
|
34
|
+
error: {
|
|
35
|
+
serializedName: "error",
|
|
53
36
|
type: {
|
|
54
|
-
name: "
|
|
37
|
+
name: "Composite",
|
|
38
|
+
className: "ErrorDetails"
|
|
55
39
|
}
|
|
56
40
|
}
|
|
57
41
|
}
|
|
58
42
|
}
|
|
59
43
|
};
|
|
60
|
-
export
|
|
61
|
-
serializedName: "Resource",
|
|
44
|
+
export const ErrorDetails = {
|
|
62
45
|
type: {
|
|
63
46
|
name: "Composite",
|
|
64
|
-
className: "
|
|
47
|
+
className: "ErrorDetails",
|
|
65
48
|
modelProperties: {
|
|
66
|
-
|
|
49
|
+
code: {
|
|
50
|
+
serializedName: "code",
|
|
67
51
|
readOnly: true,
|
|
68
|
-
serializedName: "id",
|
|
69
52
|
type: {
|
|
70
53
|
name: "String"
|
|
71
54
|
}
|
|
72
55
|
},
|
|
73
|
-
|
|
56
|
+
message: {
|
|
57
|
+
serializedName: "message",
|
|
74
58
|
readOnly: true,
|
|
75
|
-
serializedName: "name",
|
|
76
59
|
type: {
|
|
77
60
|
name: "String"
|
|
78
61
|
}
|
|
79
62
|
},
|
|
80
|
-
|
|
63
|
+
target: {
|
|
64
|
+
serializedName: "target",
|
|
81
65
|
readOnly: true,
|
|
82
|
-
serializedName: "type",
|
|
83
66
|
type: {
|
|
84
67
|
name: "String"
|
|
85
68
|
}
|
|
@@ -87,109 +70,26 @@ export var Resource = {
|
|
|
87
70
|
}
|
|
88
71
|
}
|
|
89
72
|
};
|
|
90
|
-
export
|
|
91
|
-
serializedName: "TrackedResource",
|
|
92
|
-
type: {
|
|
93
|
-
name: "Composite",
|
|
94
|
-
className: "TrackedResource",
|
|
95
|
-
modelProperties: __assign(__assign({}, Resource.type.modelProperties), { tags: {
|
|
96
|
-
serializedName: "tags",
|
|
97
|
-
type: {
|
|
98
|
-
name: "Dictionary",
|
|
99
|
-
value: {
|
|
100
|
-
type: {
|
|
101
|
-
name: "String"
|
|
102
|
-
}
|
|
103
|
-
}
|
|
104
|
-
}
|
|
105
|
-
}, location: {
|
|
106
|
-
serializedName: "location",
|
|
107
|
-
type: {
|
|
108
|
-
name: "String"
|
|
109
|
-
}
|
|
110
|
-
} })
|
|
111
|
-
}
|
|
112
|
-
};
|
|
113
|
-
export var Controller = {
|
|
114
|
-
serializedName: "Controller",
|
|
73
|
+
export const ResourceProviderOperationList = {
|
|
115
74
|
type: {
|
|
116
75
|
name: "Composite",
|
|
117
|
-
className: "
|
|
118
|
-
modelProperties: __assign(__assign({}, TrackedResource.type.modelProperties), { provisioningState: {
|
|
119
|
-
readOnly: true,
|
|
120
|
-
serializedName: "properties.provisioningState",
|
|
121
|
-
type: {
|
|
122
|
-
name: "String"
|
|
123
|
-
}
|
|
124
|
-
}, hostSuffix: {
|
|
125
|
-
required: true,
|
|
126
|
-
serializedName: "properties.hostSuffix",
|
|
127
|
-
type: {
|
|
128
|
-
name: "String"
|
|
129
|
-
}
|
|
130
|
-
}, dataPlaneFqdn: {
|
|
131
|
-
readOnly: true,
|
|
132
|
-
serializedName: "properties.dataPlaneFqdn",
|
|
133
|
-
type: {
|
|
134
|
-
name: "String"
|
|
135
|
-
}
|
|
136
|
-
}, targetContainerHostResourceId: {
|
|
137
|
-
required: true,
|
|
138
|
-
serializedName: "properties.targetContainerHostResourceId",
|
|
139
|
-
type: {
|
|
140
|
-
name: "String"
|
|
141
|
-
}
|
|
142
|
-
}, targetContainerHostCredentialsBase64: {
|
|
143
|
-
required: true,
|
|
144
|
-
serializedName: "properties.targetContainerHostCredentialsBase64",
|
|
145
|
-
type: {
|
|
146
|
-
name: "String"
|
|
147
|
-
}
|
|
148
|
-
}, sku: {
|
|
149
|
-
required: true,
|
|
150
|
-
serializedName: "sku",
|
|
151
|
-
defaultValue: {},
|
|
152
|
-
type: {
|
|
153
|
-
name: "Composite",
|
|
154
|
-
className: "Sku"
|
|
155
|
-
}
|
|
156
|
-
} })
|
|
157
|
-
}
|
|
158
|
-
};
|
|
159
|
-
export var ControllerUpdateParameters = {
|
|
160
|
-
serializedName: "ControllerUpdateParameters",
|
|
161
|
-
type: {
|
|
162
|
-
name: "Composite",
|
|
163
|
-
className: "ControllerUpdateParameters",
|
|
76
|
+
className: "ResourceProviderOperationList",
|
|
164
77
|
modelProperties: {
|
|
165
|
-
|
|
166
|
-
serializedName: "
|
|
78
|
+
value: {
|
|
79
|
+
serializedName: "value",
|
|
167
80
|
type: {
|
|
168
|
-
name: "
|
|
169
|
-
|
|
81
|
+
name: "Sequence",
|
|
82
|
+
element: {
|
|
170
83
|
type: {
|
|
171
|
-
name: "
|
|
84
|
+
name: "Composite",
|
|
85
|
+
className: "ResourceProviderOperationDefinition"
|
|
172
86
|
}
|
|
173
87
|
}
|
|
174
88
|
}
|
|
175
|
-
}
|
|
176
|
-
|
|
177
|
-
|
|
178
|
-
|
|
179
|
-
export var OrchestratorSpecificConnectionDetails = {
|
|
180
|
-
serializedName: "OrchestratorSpecificConnectionDetails",
|
|
181
|
-
type: {
|
|
182
|
-
name: "Composite",
|
|
183
|
-
polymorphicDiscriminator: {
|
|
184
|
-
serializedName: "instanceType",
|
|
185
|
-
clientName: "instanceType"
|
|
186
|
-
},
|
|
187
|
-
uberParent: "OrchestratorSpecificConnectionDetails",
|
|
188
|
-
className: "OrchestratorSpecificConnectionDetails",
|
|
189
|
-
modelProperties: {
|
|
190
|
-
instanceType: {
|
|
191
|
-
required: true,
|
|
192
|
-
serializedName: "instanceType",
|
|
89
|
+
},
|
|
90
|
+
nextLink: {
|
|
91
|
+
serializedName: "nextLink",
|
|
92
|
+
readOnly: true,
|
|
193
93
|
type: {
|
|
194
94
|
name: "String"
|
|
195
95
|
}
|
|
@@ -197,66 +97,28 @@ export var OrchestratorSpecificConnectionDetails = {
|
|
|
197
97
|
}
|
|
198
98
|
}
|
|
199
99
|
};
|
|
200
|
-
export
|
|
201
|
-
serializedName: "ControllerConnectionDetails",
|
|
100
|
+
export const ResourceProviderOperationDefinition = {
|
|
202
101
|
type: {
|
|
203
102
|
name: "Composite",
|
|
204
|
-
className: "
|
|
103
|
+
className: "ResourceProviderOperationDefinition",
|
|
205
104
|
modelProperties: {
|
|
206
|
-
|
|
207
|
-
|
|
208
|
-
serializedName: "authKey",
|
|
209
|
-
type: {
|
|
210
|
-
name: "String"
|
|
211
|
-
}
|
|
212
|
-
},
|
|
213
|
-
workspaceStorageAccountName: {
|
|
214
|
-
readOnly: true,
|
|
215
|
-
serializedName: "workspaceStorageAccountName",
|
|
216
|
-
type: {
|
|
217
|
-
name: "String"
|
|
218
|
-
}
|
|
219
|
-
},
|
|
220
|
-
workspaceStorageSasToken: {
|
|
221
|
-
readOnly: true,
|
|
222
|
-
serializedName: "workspaceStorageSasToken",
|
|
105
|
+
name: {
|
|
106
|
+
serializedName: "name",
|
|
223
107
|
type: {
|
|
224
108
|
name: "String"
|
|
225
109
|
}
|
|
226
110
|
},
|
|
227
|
-
|
|
228
|
-
serializedName: "
|
|
111
|
+
display: {
|
|
112
|
+
serializedName: "display",
|
|
229
113
|
type: {
|
|
230
114
|
name: "Composite",
|
|
231
|
-
className: "
|
|
232
|
-
}
|
|
233
|
-
}
|
|
234
|
-
}
|
|
235
|
-
}
|
|
236
|
-
};
|
|
237
|
-
export var ControllerConnectionDetailsList = {
|
|
238
|
-
serializedName: "ControllerConnectionDetailsList",
|
|
239
|
-
type: {
|
|
240
|
-
name: "Composite",
|
|
241
|
-
className: "ControllerConnectionDetailsList",
|
|
242
|
-
modelProperties: {
|
|
243
|
-
connectionDetailsList: {
|
|
244
|
-
serializedName: "connectionDetailsList",
|
|
245
|
-
type: {
|
|
246
|
-
name: "Sequence",
|
|
247
|
-
element: {
|
|
248
|
-
type: {
|
|
249
|
-
name: "Composite",
|
|
250
|
-
className: "ControllerConnectionDetails"
|
|
251
|
-
}
|
|
252
|
-
}
|
|
115
|
+
className: "ResourceProviderOperationDisplay"
|
|
253
116
|
}
|
|
254
117
|
}
|
|
255
118
|
}
|
|
256
119
|
}
|
|
257
120
|
};
|
|
258
|
-
export
|
|
259
|
-
serializedName: "ResourceProviderOperationDisplay",
|
|
121
|
+
export const ResourceProviderOperationDisplay = {
|
|
260
122
|
type: {
|
|
261
123
|
name: "Composite",
|
|
262
124
|
className: "ResourceProviderOperationDisplay",
|
|
@@ -288,66 +150,49 @@ export var ResourceProviderOperationDisplay = {
|
|
|
288
150
|
}
|
|
289
151
|
}
|
|
290
152
|
};
|
|
291
|
-
export
|
|
292
|
-
serializedName: "ResourceProviderOperationDefinition",
|
|
153
|
+
export const Sku = {
|
|
293
154
|
type: {
|
|
294
155
|
name: "Composite",
|
|
295
|
-
className: "
|
|
156
|
+
className: "Sku",
|
|
296
157
|
modelProperties: {
|
|
297
158
|
name: {
|
|
298
159
|
serializedName: "name",
|
|
160
|
+
required: true,
|
|
299
161
|
type: {
|
|
300
162
|
name: "String"
|
|
301
163
|
}
|
|
302
164
|
},
|
|
303
|
-
|
|
304
|
-
serializedName: "
|
|
165
|
+
tier: {
|
|
166
|
+
serializedName: "tier",
|
|
305
167
|
type: {
|
|
306
|
-
name: "
|
|
307
|
-
className: "ResourceProviderOperationDisplay"
|
|
168
|
+
name: "String"
|
|
308
169
|
}
|
|
309
170
|
}
|
|
310
171
|
}
|
|
311
172
|
}
|
|
312
173
|
};
|
|
313
|
-
export
|
|
314
|
-
serializedName: "Kubernetes",
|
|
174
|
+
export const Resource = {
|
|
315
175
|
type: {
|
|
316
176
|
name: "Composite",
|
|
317
|
-
|
|
318
|
-
uberParent: "OrchestratorSpecificConnectionDetails",
|
|
319
|
-
className: "KubernetesConnectionDetails",
|
|
320
|
-
modelProperties: __assign(__assign({}, OrchestratorSpecificConnectionDetails.type.modelProperties), { kubeConfig: {
|
|
321
|
-
serializedName: "kubeConfig",
|
|
322
|
-
type: {
|
|
323
|
-
name: "String"
|
|
324
|
-
}
|
|
325
|
-
} })
|
|
326
|
-
}
|
|
327
|
-
};
|
|
328
|
-
export var ErrorDetails = {
|
|
329
|
-
serializedName: "ErrorDetails",
|
|
330
|
-
type: {
|
|
331
|
-
name: "Composite",
|
|
332
|
-
className: "ErrorDetails",
|
|
177
|
+
className: "Resource",
|
|
333
178
|
modelProperties: {
|
|
334
|
-
|
|
179
|
+
id: {
|
|
180
|
+
serializedName: "id",
|
|
335
181
|
readOnly: true,
|
|
336
|
-
serializedName: "code",
|
|
337
182
|
type: {
|
|
338
183
|
name: "String"
|
|
339
184
|
}
|
|
340
185
|
},
|
|
341
|
-
|
|
186
|
+
name: {
|
|
187
|
+
serializedName: "name",
|
|
342
188
|
readOnly: true,
|
|
343
|
-
serializedName: "message",
|
|
344
189
|
type: {
|
|
345
190
|
name: "String"
|
|
346
191
|
}
|
|
347
192
|
},
|
|
348
|
-
|
|
193
|
+
type: {
|
|
194
|
+
serializedName: "type",
|
|
349
195
|
readOnly: true,
|
|
350
|
-
serializedName: "target",
|
|
351
196
|
type: {
|
|
352
197
|
name: "String"
|
|
353
198
|
}
|
|
@@ -355,30 +200,34 @@ export var ErrorDetails = {
|
|
|
355
200
|
}
|
|
356
201
|
}
|
|
357
202
|
};
|
|
358
|
-
export
|
|
359
|
-
serializedName: "ErrorResponse",
|
|
203
|
+
export const ControllerUpdateParameters = {
|
|
360
204
|
type: {
|
|
361
205
|
name: "Composite",
|
|
362
|
-
className: "
|
|
206
|
+
className: "ControllerUpdateParameters",
|
|
363
207
|
modelProperties: {
|
|
364
|
-
|
|
365
|
-
serializedName: "
|
|
208
|
+
tags: {
|
|
209
|
+
serializedName: "tags",
|
|
366
210
|
type: {
|
|
367
|
-
name: "
|
|
368
|
-
|
|
211
|
+
name: "Dictionary",
|
|
212
|
+
value: { type: { name: "String" } }
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
targetContainerHostCredentialsBase64: {
|
|
216
|
+
serializedName: "properties.targetContainerHostCredentialsBase64",
|
|
217
|
+
type: {
|
|
218
|
+
name: "String"
|
|
369
219
|
}
|
|
370
220
|
}
|
|
371
221
|
}
|
|
372
222
|
}
|
|
373
223
|
};
|
|
374
|
-
export
|
|
375
|
-
serializedName: "ControllerList",
|
|
224
|
+
export const ControllerList = {
|
|
376
225
|
type: {
|
|
377
226
|
name: "Composite",
|
|
378
227
|
className: "ControllerList",
|
|
379
228
|
modelProperties: {
|
|
380
229
|
value: {
|
|
381
|
-
serializedName: "",
|
|
230
|
+
serializedName: "value",
|
|
382
231
|
type: {
|
|
383
232
|
name: "Sequence",
|
|
384
233
|
element: {
|
|
@@ -390,8 +239,8 @@ export var ControllerList = {
|
|
|
390
239
|
}
|
|
391
240
|
},
|
|
392
241
|
nextLink: {
|
|
393
|
-
readOnly: true,
|
|
394
242
|
serializedName: "nextLink",
|
|
243
|
+
readOnly: true,
|
|
395
244
|
type: {
|
|
396
245
|
name: "String"
|
|
397
246
|
}
|
|
@@ -399,27 +248,69 @@ export var ControllerList = {
|
|
|
399
248
|
}
|
|
400
249
|
}
|
|
401
250
|
};
|
|
402
|
-
export
|
|
403
|
-
serializedName: "ResourceProviderOperationList",
|
|
251
|
+
export const ListConnectionDetailsParameters = {
|
|
404
252
|
type: {
|
|
405
253
|
name: "Composite",
|
|
406
|
-
className: "
|
|
254
|
+
className: "ListConnectionDetailsParameters",
|
|
407
255
|
modelProperties: {
|
|
408
|
-
|
|
409
|
-
serializedName: "",
|
|
256
|
+
targetContainerHostResourceId: {
|
|
257
|
+
serializedName: "targetContainerHostResourceId",
|
|
258
|
+
required: true,
|
|
259
|
+
type: {
|
|
260
|
+
name: "String"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
}
|
|
265
|
+
};
|
|
266
|
+
export const ControllerConnectionDetailsList = {
|
|
267
|
+
type: {
|
|
268
|
+
name: "Composite",
|
|
269
|
+
className: "ControllerConnectionDetailsList",
|
|
270
|
+
modelProperties: {
|
|
271
|
+
connectionDetailsList: {
|
|
272
|
+
serializedName: "connectionDetailsList",
|
|
410
273
|
type: {
|
|
411
274
|
name: "Sequence",
|
|
412
275
|
element: {
|
|
413
276
|
type: {
|
|
414
277
|
name: "Composite",
|
|
415
|
-
className: "
|
|
278
|
+
className: "ControllerConnectionDetails"
|
|
416
279
|
}
|
|
417
280
|
}
|
|
418
281
|
}
|
|
419
|
-
}
|
|
420
|
-
|
|
282
|
+
}
|
|
283
|
+
}
|
|
284
|
+
}
|
|
285
|
+
};
|
|
286
|
+
export const ControllerConnectionDetails = {
|
|
287
|
+
type: {
|
|
288
|
+
name: "Composite",
|
|
289
|
+
className: "ControllerConnectionDetails",
|
|
290
|
+
modelProperties: {
|
|
291
|
+
orchestratorSpecificConnectionDetails: {
|
|
292
|
+
serializedName: "orchestratorSpecificConnectionDetails",
|
|
293
|
+
type: {
|
|
294
|
+
name: "Composite",
|
|
295
|
+
className: "OrchestratorSpecificConnectionDetails"
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
299
|
+
}
|
|
300
|
+
};
|
|
301
|
+
export const OrchestratorSpecificConnectionDetails = {
|
|
302
|
+
type: {
|
|
303
|
+
name: "Composite",
|
|
304
|
+
className: "OrchestratorSpecificConnectionDetails",
|
|
305
|
+
uberParent: "OrchestratorSpecificConnectionDetails",
|
|
306
|
+
polymorphicDiscriminator: {
|
|
307
|
+
serializedName: "instanceType",
|
|
308
|
+
clientName: "instanceType"
|
|
309
|
+
},
|
|
310
|
+
modelProperties: {
|
|
311
|
+
instanceType: {
|
|
312
|
+
serializedName: "instanceType",
|
|
421
313
|
readOnly: true,
|
|
422
|
-
serializedName: "nextLink",
|
|
423
314
|
type: {
|
|
424
315
|
name: "String"
|
|
425
316
|
}
|
|
@@ -427,8 +318,90 @@ export var ResourceProviderOperationList = {
|
|
|
427
318
|
}
|
|
428
319
|
}
|
|
429
320
|
};
|
|
430
|
-
export
|
|
431
|
-
|
|
432
|
-
|
|
321
|
+
export const TrackedResource = {
|
|
322
|
+
type: {
|
|
323
|
+
name: "Composite",
|
|
324
|
+
className: "TrackedResource",
|
|
325
|
+
modelProperties: Object.assign(Object.assign({}, Resource.type.modelProperties), { tags: {
|
|
326
|
+
serializedName: "tags",
|
|
327
|
+
type: {
|
|
328
|
+
name: "Dictionary",
|
|
329
|
+
value: { type: { name: "String" } }
|
|
330
|
+
}
|
|
331
|
+
}, location: {
|
|
332
|
+
serializedName: "location",
|
|
333
|
+
type: {
|
|
334
|
+
name: "String"
|
|
335
|
+
}
|
|
336
|
+
} })
|
|
337
|
+
}
|
|
338
|
+
};
|
|
339
|
+
export const KubernetesConnectionDetails = {
|
|
340
|
+
serializedName: "Kubernetes",
|
|
341
|
+
type: {
|
|
342
|
+
name: "Composite",
|
|
343
|
+
className: "KubernetesConnectionDetails",
|
|
344
|
+
uberParent: "OrchestratorSpecificConnectionDetails",
|
|
345
|
+
polymorphicDiscriminator: OrchestratorSpecificConnectionDetails.type.polymorphicDiscriminator,
|
|
346
|
+
modelProperties: Object.assign(Object.assign({}, OrchestratorSpecificConnectionDetails.type.modelProperties), { kubeConfig: {
|
|
347
|
+
serializedName: "kubeConfig",
|
|
348
|
+
type: {
|
|
349
|
+
name: "String"
|
|
350
|
+
}
|
|
351
|
+
} })
|
|
352
|
+
}
|
|
353
|
+
};
|
|
354
|
+
export const Controller = {
|
|
355
|
+
type: {
|
|
356
|
+
name: "Composite",
|
|
357
|
+
className: "Controller",
|
|
358
|
+
modelProperties: Object.assign(Object.assign({}, TrackedResource.type.modelProperties), { sku: {
|
|
359
|
+
serializedName: "sku",
|
|
360
|
+
type: {
|
|
361
|
+
name: "Composite",
|
|
362
|
+
className: "Sku"
|
|
363
|
+
}
|
|
364
|
+
}, provisioningState: {
|
|
365
|
+
serializedName: "properties.provisioningState",
|
|
366
|
+
readOnly: true,
|
|
367
|
+
type: {
|
|
368
|
+
name: "String"
|
|
369
|
+
}
|
|
370
|
+
}, hostSuffix: {
|
|
371
|
+
serializedName: "properties.hostSuffix",
|
|
372
|
+
readOnly: true,
|
|
373
|
+
type: {
|
|
374
|
+
name: "String"
|
|
375
|
+
}
|
|
376
|
+
}, dataPlaneFqdn: {
|
|
377
|
+
serializedName: "properties.dataPlaneFqdn",
|
|
378
|
+
readOnly: true,
|
|
379
|
+
type: {
|
|
380
|
+
name: "String"
|
|
381
|
+
}
|
|
382
|
+
}, targetContainerHostApiServerFqdn: {
|
|
383
|
+
serializedName: "properties.targetContainerHostApiServerFqdn",
|
|
384
|
+
readOnly: true,
|
|
385
|
+
type: {
|
|
386
|
+
name: "String"
|
|
387
|
+
}
|
|
388
|
+
}, targetContainerHostResourceId: {
|
|
389
|
+
serializedName: "properties.targetContainerHostResourceId",
|
|
390
|
+
required: true,
|
|
391
|
+
type: {
|
|
392
|
+
name: "String"
|
|
393
|
+
}
|
|
394
|
+
}, targetContainerHostCredentialsBase64: {
|
|
395
|
+
serializedName: "properties.targetContainerHostCredentialsBase64",
|
|
396
|
+
required: true,
|
|
397
|
+
type: {
|
|
398
|
+
name: "String"
|
|
399
|
+
}
|
|
400
|
+
} })
|
|
401
|
+
}
|
|
402
|
+
};
|
|
403
|
+
export let discriminators = {
|
|
404
|
+
OrchestratorSpecificConnectionDetails: OrchestratorSpecificConnectionDetails,
|
|
405
|
+
"OrchestratorSpecificConnectionDetails.Kubernetes": KubernetesConnectionDetails
|
|
433
406
|
};
|
|
434
407
|
//# sourceMappingURL=mappers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"mappers.js","sourceRoot":"","sources":["../../../src/models/mappers.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import { OperationParameter, OperationURLParameter, OperationQueryParameter } from "@azure/core-client";
|
|
2
|
+
export declare const contentType: OperationParameter;
|
|
3
|
+
export declare const containerHostMapping: OperationParameter;
|
|
4
|
+
export declare const accept: OperationParameter;
|
|
5
|
+
export declare const $host: OperationURLParameter;
|
|
6
|
+
export declare const apiVersion: OperationQueryParameter;
|
|
7
|
+
export declare const subscriptionId: OperationURLParameter;
|
|
8
|
+
export declare const resourceGroupName: OperationURLParameter;
|
|
9
|
+
export declare const location: OperationURLParameter;
|
|
10
|
+
export declare const nextLink: OperationURLParameter;
|
|
11
|
+
export declare const name: OperationURLParameter;
|
|
12
|
+
export declare const controller: OperationParameter;
|
|
13
|
+
export declare const controllerUpdateParameters: OperationParameter;
|
|
14
|
+
export declare const listConnectionDetailsParameters: OperationParameter;
|
|
15
|
+
//# sourceMappingURL=parameters.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"parameters.d.ts","sourceRoot":"","sources":["../../../src/models/parameters.ts"],"names":[],"mappings":"AAQA,OAAO,EACL,kBAAkB,EAClB,qBAAqB,EACrB,uBAAuB,EACxB,MAAM,oBAAoB,CAAC;AAQ5B,eAAO,MAAM,WAAW,EAAE,kBAUzB,CAAC;AAEF,eAAO,MAAM,oBAAoB,EAAE,kBAGlC,CAAC;AAEF,eAAO,MAAM,MAAM,EAAE,kBAUpB,CAAC;AAEF,eAAO,MAAM,KAAK,EAAE,qBAUnB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,uBAUxB,CAAC;AAEF,eAAO,MAAM,cAAc,EAAE,qBAS5B,CAAC;AAEF,eAAO,MAAM,iBAAiB,EAAE,qBAa/B,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAStB,CAAC;AAEF,eAAO,MAAM,QAAQ,EAAE,qBAUtB,CAAC;AAEF,eAAO,MAAM,IAAI,EAAE,qBAclB,CAAC;AAEF,eAAO,MAAM,UAAU,EAAE,kBAGxB,CAAC;AAEF,eAAO,MAAM,0BAA0B,EAAE,kBAGxC,CAAC;AAEF,eAAO,MAAM,+BAA+B,EAAE,kBAG7C,CAAC"}
|