@itentialopensource/adapter-azure_aks 0.2.0 → 0.3.0
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/CALLS.md +126 -0
- package/CHANGELOG.md +8 -0
- package/CONTRIBUTING.md +1 -160
- package/ENHANCE.md +2 -2
- package/README.md +32 -23
- package/adapter.js +160 -338
- package/adapterBase.js +549 -879
- package/changelogs/changelog.md +16 -0
- package/metadata.json +49 -0
- package/package.json +24 -25
- package/pronghorn.json +981 -642
- package/propertiesSchema.json +431 -31
- package/refs?service=git-upload-pack +0 -0
- package/report/adapter-openapi.json +3708 -0
- package/report/adapter-openapi.yaml +3084 -0
- package/report/adapterInfo.json +8 -8
- package/report/updateReport1691507435017.json +120 -0
- package/report/updateReport1692202466826.json +120 -0
- package/report/updateReport1694460918275.json +120 -0
- package/report/updateReport1698420595972.json +120 -0
- package/sampleProperties.json +63 -2
- package/test/integration/adapterTestBasicGet.js +2 -4
- package/test/integration/adapterTestConnectivity.js +91 -42
- package/test/integration/adapterTestIntegration.js +130 -2
- package/test/unit/adapterBaseTestUnit.js +388 -313
- package/test/unit/adapterTestUnit.js +338 -112
- package/utils/adapterInfo.js +1 -1
- package/utils/addAuth.js +1 -1
- package/utils/artifactize.js +1 -1
- package/utils/checkMigrate.js +1 -1
- package/utils/entitiesToDB.js +2 -2
- package/utils/findPath.js +1 -1
- package/utils/methodDocumentor.js +273 -0
- package/utils/modify.js +13 -15
- package/utils/packModificationScript.js +1 -1
- package/utils/pre-commit.sh +2 -0
- package/utils/taskMover.js +309 -0
- package/utils/tbScript.js +89 -34
- package/utils/tbUtils.js +41 -21
- package/utils/testRunner.js +1 -1
- package/utils/troubleshootingAdapter.js +9 -6
- package/workflows/README.md +0 -3
|
@@ -0,0 +1,3084 @@
|
|
|
1
|
+
openapi: 3.0.0
|
|
2
|
+
info:
|
|
3
|
+
title: ContainerServiceClient
|
|
4
|
+
description: The Container Service Client.
|
|
5
|
+
contact: {}
|
|
6
|
+
version: '2020-01-01'
|
|
7
|
+
servers:
|
|
8
|
+
- url: https://management.azure.com
|
|
9
|
+
variables: {}
|
|
10
|
+
- url: https://login.microsoftonline.com/common/oauth2
|
|
11
|
+
variables: {}
|
|
12
|
+
paths:
|
|
13
|
+
/providers/Microsoft.ContainerService/operations:
|
|
14
|
+
get:
|
|
15
|
+
tags:
|
|
16
|
+
- managedClusters
|
|
17
|
+
summary: Operations_List
|
|
18
|
+
description: Gets a list of compute operations.
|
|
19
|
+
operationId: Operations_List
|
|
20
|
+
parameters:
|
|
21
|
+
- name: api-version
|
|
22
|
+
in: query
|
|
23
|
+
description: Client Api Version.
|
|
24
|
+
required: true
|
|
25
|
+
style: form
|
|
26
|
+
explode: true
|
|
27
|
+
schema:
|
|
28
|
+
type: string
|
|
29
|
+
responses:
|
|
30
|
+
'200':
|
|
31
|
+
description: OK
|
|
32
|
+
headers: {}
|
|
33
|
+
content:
|
|
34
|
+
application/json:
|
|
35
|
+
schema:
|
|
36
|
+
allOf:
|
|
37
|
+
- $ref: '#/components/schemas/OperationListResult'
|
|
38
|
+
- description: The List Compute Operation operation response.
|
|
39
|
+
default:
|
|
40
|
+
description: Error response describing why the operation failed.
|
|
41
|
+
headers: {}
|
|
42
|
+
content:
|
|
43
|
+
application/json:
|
|
44
|
+
schema:
|
|
45
|
+
allOf:
|
|
46
|
+
- $ref: '#/components/schemas/CloudError'
|
|
47
|
+
- description: An error response from the Container service.
|
|
48
|
+
deprecated: false
|
|
49
|
+
/subscriptions/{subscriptionId}/providers/Microsoft.ContainerService/managedClusters:
|
|
50
|
+
get:
|
|
51
|
+
tags:
|
|
52
|
+
- ManagedClusters
|
|
53
|
+
summary: ManagedClusters_List
|
|
54
|
+
description: Gets a list of managed clusters in the specified subscription. The operation returns properties of each managed cluster.
|
|
55
|
+
operationId: ManagedClusters_List
|
|
56
|
+
parameters:
|
|
57
|
+
- name: api-version
|
|
58
|
+
in: query
|
|
59
|
+
description: Client Api Version.
|
|
60
|
+
required: true
|
|
61
|
+
style: form
|
|
62
|
+
explode: true
|
|
63
|
+
schema:
|
|
64
|
+
type: string
|
|
65
|
+
- name: subscriptionId
|
|
66
|
+
in: path
|
|
67
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
68
|
+
required: true
|
|
69
|
+
style: simple
|
|
70
|
+
schema:
|
|
71
|
+
type: string
|
|
72
|
+
responses:
|
|
73
|
+
'200':
|
|
74
|
+
description: OK
|
|
75
|
+
headers: {}
|
|
76
|
+
content:
|
|
77
|
+
application/json:
|
|
78
|
+
schema:
|
|
79
|
+
allOf:
|
|
80
|
+
- $ref: '#/components/schemas/ManagedClusterListResult'
|
|
81
|
+
- description: The response from the List Managed Clusters operation.
|
|
82
|
+
default:
|
|
83
|
+
description: Error response describing why the operation failed.
|
|
84
|
+
headers: {}
|
|
85
|
+
content:
|
|
86
|
+
application/json:
|
|
87
|
+
schema:
|
|
88
|
+
allOf:
|
|
89
|
+
- $ref: '#/components/schemas/CloudError'
|
|
90
|
+
- description: An error response from the Container service.
|
|
91
|
+
deprecated: false
|
|
92
|
+
/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters:
|
|
93
|
+
get:
|
|
94
|
+
tags:
|
|
95
|
+
- ManagedClusters
|
|
96
|
+
summary: ManagedClusters_ListByResourceGroup
|
|
97
|
+
description: Lists managed clusters in the specified subscription and resource group. The operation returns properties of each managed cluster.
|
|
98
|
+
operationId: ManagedClusters_ListByResourceGroup
|
|
99
|
+
parameters:
|
|
100
|
+
- name: api-version
|
|
101
|
+
in: query
|
|
102
|
+
description: Client Api Version.
|
|
103
|
+
required: true
|
|
104
|
+
style: form
|
|
105
|
+
explode: true
|
|
106
|
+
schema:
|
|
107
|
+
type: string
|
|
108
|
+
- name: subscriptionId
|
|
109
|
+
in: path
|
|
110
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
111
|
+
required: true
|
|
112
|
+
style: simple
|
|
113
|
+
schema:
|
|
114
|
+
type: string
|
|
115
|
+
- name: resourceGroupName
|
|
116
|
+
in: path
|
|
117
|
+
description: The name of the resource group.
|
|
118
|
+
required: true
|
|
119
|
+
style: simple
|
|
120
|
+
schema:
|
|
121
|
+
minLength: 1
|
|
122
|
+
type: string
|
|
123
|
+
responses:
|
|
124
|
+
'200':
|
|
125
|
+
description: OK
|
|
126
|
+
headers: {}
|
|
127
|
+
content:
|
|
128
|
+
application/json:
|
|
129
|
+
schema:
|
|
130
|
+
allOf:
|
|
131
|
+
- $ref: '#/components/schemas/ManagedClusterListResult'
|
|
132
|
+
- description: The response from the List Managed Clusters operation.
|
|
133
|
+
default:
|
|
134
|
+
description: Error response describing why the operation failed.
|
|
135
|
+
headers: {}
|
|
136
|
+
content:
|
|
137
|
+
application/json:
|
|
138
|
+
schema:
|
|
139
|
+
allOf:
|
|
140
|
+
- $ref: '#/components/schemas/CloudError'
|
|
141
|
+
- description: An error response from the Container service.
|
|
142
|
+
deprecated: false
|
|
143
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}
|
|
144
|
+
: delete:
|
|
145
|
+
tags:
|
|
146
|
+
- ManagedClusters
|
|
147
|
+
summary: ManagedClusters_Delete
|
|
148
|
+
description: Deletes the managed cluster with a specified resource group and name.
|
|
149
|
+
operationId: ManagedClusters_Delete
|
|
150
|
+
parameters:
|
|
151
|
+
- name: api-version
|
|
152
|
+
in: query
|
|
153
|
+
description: Client Api Version.
|
|
154
|
+
required: true
|
|
155
|
+
style: form
|
|
156
|
+
explode: true
|
|
157
|
+
schema:
|
|
158
|
+
type: string
|
|
159
|
+
- name: subscriptionId
|
|
160
|
+
in: path
|
|
161
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
162
|
+
required: true
|
|
163
|
+
style: simple
|
|
164
|
+
schema:
|
|
165
|
+
type: string
|
|
166
|
+
- name: resourceGroupName
|
|
167
|
+
in: path
|
|
168
|
+
description: The name of the resource group.
|
|
169
|
+
required: true
|
|
170
|
+
style: simple
|
|
171
|
+
schema:
|
|
172
|
+
minLength: 1
|
|
173
|
+
type: string
|
|
174
|
+
- name: resourceName
|
|
175
|
+
in: path
|
|
176
|
+
description: The name of the managed cluster resource.
|
|
177
|
+
required: true
|
|
178
|
+
style: simple
|
|
179
|
+
schema:
|
|
180
|
+
maxLength: 63
|
|
181
|
+
minLength: 1
|
|
182
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
183
|
+
type: string
|
|
184
|
+
responses:
|
|
185
|
+
'202':
|
|
186
|
+
description: Accepted
|
|
187
|
+
headers: {}
|
|
188
|
+
content: {}
|
|
189
|
+
'204':
|
|
190
|
+
description: NoContent
|
|
191
|
+
headers: {}
|
|
192
|
+
content: {}
|
|
193
|
+
default:
|
|
194
|
+
description: Error response describing why the operation failed.
|
|
195
|
+
headers: {}
|
|
196
|
+
content:
|
|
197
|
+
application/json:
|
|
198
|
+
schema:
|
|
199
|
+
allOf:
|
|
200
|
+
- $ref: '#/components/schemas/CloudError'
|
|
201
|
+
- description: An error response from the Container service.
|
|
202
|
+
deprecated: false
|
|
203
|
+
get:
|
|
204
|
+
tags:
|
|
205
|
+
- ManagedClusters
|
|
206
|
+
summary: ManagedClusters_Get
|
|
207
|
+
description: Gets the details of the managed cluster with a specified resource group and name.
|
|
208
|
+
operationId: ManagedClusters_Get
|
|
209
|
+
parameters:
|
|
210
|
+
- name: api-version
|
|
211
|
+
in: query
|
|
212
|
+
description: Client Api Version.
|
|
213
|
+
required: true
|
|
214
|
+
style: form
|
|
215
|
+
explode: true
|
|
216
|
+
schema:
|
|
217
|
+
type: string
|
|
218
|
+
- name: subscriptionId
|
|
219
|
+
in: path
|
|
220
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
221
|
+
required: true
|
|
222
|
+
style: simple
|
|
223
|
+
schema:
|
|
224
|
+
type: string
|
|
225
|
+
- name: resourceGroupName
|
|
226
|
+
in: path
|
|
227
|
+
description: The name of the resource group.
|
|
228
|
+
required: true
|
|
229
|
+
style: simple
|
|
230
|
+
schema:
|
|
231
|
+
minLength: 1
|
|
232
|
+
type: string
|
|
233
|
+
- name: resourceName
|
|
234
|
+
in: path
|
|
235
|
+
description: The name of the managed cluster resource.
|
|
236
|
+
required: true
|
|
237
|
+
style: simple
|
|
238
|
+
schema:
|
|
239
|
+
maxLength: 63
|
|
240
|
+
minLength: 1
|
|
241
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
242
|
+
type: string
|
|
243
|
+
responses:
|
|
244
|
+
'200':
|
|
245
|
+
description: OK
|
|
246
|
+
headers: {}
|
|
247
|
+
content:
|
|
248
|
+
application/json:
|
|
249
|
+
schema:
|
|
250
|
+
allOf:
|
|
251
|
+
- $ref: '#/components/schemas/ManagedCluster'
|
|
252
|
+
- description: Managed cluster.
|
|
253
|
+
default:
|
|
254
|
+
description: Error response describing why the operation failed.
|
|
255
|
+
headers: {}
|
|
256
|
+
content:
|
|
257
|
+
application/json:
|
|
258
|
+
schema:
|
|
259
|
+
allOf:
|
|
260
|
+
- $ref: '#/components/schemas/CloudError'
|
|
261
|
+
- description: An error response from the Container service.
|
|
262
|
+
deprecated: false
|
|
263
|
+
patch:
|
|
264
|
+
tags:
|
|
265
|
+
- ManagedClusters
|
|
266
|
+
summary: ManagedClusters_UpdateTags
|
|
267
|
+
description: Updates a managed cluster with the specified tags.
|
|
268
|
+
operationId: ManagedClusters_UpdateTags
|
|
269
|
+
parameters:
|
|
270
|
+
- name: api-version
|
|
271
|
+
in: query
|
|
272
|
+
description: Client Api Version.
|
|
273
|
+
required: true
|
|
274
|
+
style: form
|
|
275
|
+
explode: true
|
|
276
|
+
schema:
|
|
277
|
+
type: string
|
|
278
|
+
- name: subscriptionId
|
|
279
|
+
in: path
|
|
280
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
281
|
+
required: true
|
|
282
|
+
style: simple
|
|
283
|
+
schema:
|
|
284
|
+
type: string
|
|
285
|
+
- name: resourceGroupName
|
|
286
|
+
in: path
|
|
287
|
+
description: The name of the resource group.
|
|
288
|
+
required: true
|
|
289
|
+
style: simple
|
|
290
|
+
schema:
|
|
291
|
+
minLength: 1
|
|
292
|
+
type: string
|
|
293
|
+
- name: resourceName
|
|
294
|
+
in: path
|
|
295
|
+
description: The name of the managed cluster resource.
|
|
296
|
+
required: true
|
|
297
|
+
style: simple
|
|
298
|
+
schema:
|
|
299
|
+
maxLength: 63
|
|
300
|
+
minLength: 1
|
|
301
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
302
|
+
type: string
|
|
303
|
+
requestBody:
|
|
304
|
+
description: Parameters supplied to the Update Managed Cluster Tags operation.
|
|
305
|
+
content:
|
|
306
|
+
application/json:
|
|
307
|
+
schema:
|
|
308
|
+
allOf:
|
|
309
|
+
- $ref: '#/components/schemas/SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest'
|
|
310
|
+
- description: Parameters supplied to the Update Managed Cluster Tags operation.
|
|
311
|
+
required: true
|
|
312
|
+
responses:
|
|
313
|
+
'200':
|
|
314
|
+
description: OK
|
|
315
|
+
headers: {}
|
|
316
|
+
content:
|
|
317
|
+
application/json:
|
|
318
|
+
schema:
|
|
319
|
+
allOf:
|
|
320
|
+
- $ref: '#/components/schemas/ManagedCluster'
|
|
321
|
+
- description: Managed cluster.
|
|
322
|
+
default:
|
|
323
|
+
description: Error response describing why the operation failed.
|
|
324
|
+
headers: {}
|
|
325
|
+
content:
|
|
326
|
+
application/json:
|
|
327
|
+
schema:
|
|
328
|
+
allOf:
|
|
329
|
+
- $ref: '#/components/schemas/CloudError'
|
|
330
|
+
- description: An error response from the Container service.
|
|
331
|
+
deprecated: false
|
|
332
|
+
put:
|
|
333
|
+
tags:
|
|
334
|
+
- ManagedClusters
|
|
335
|
+
summary: ManagedClusters_CreateOrUpdate
|
|
336
|
+
description: Creates or updates a managed cluster with the specified configuration for agents and Kubernetes version.
|
|
337
|
+
operationId: ManagedClusters_CreateOrUpdate
|
|
338
|
+
parameters:
|
|
339
|
+
- name: api-version
|
|
340
|
+
in: query
|
|
341
|
+
description: Client Api Version.
|
|
342
|
+
required: true
|
|
343
|
+
style: form
|
|
344
|
+
explode: true
|
|
345
|
+
schema:
|
|
346
|
+
type: string
|
|
347
|
+
- name: subscriptionId
|
|
348
|
+
in: path
|
|
349
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
350
|
+
required: true
|
|
351
|
+
style: simple
|
|
352
|
+
schema:
|
|
353
|
+
type: string
|
|
354
|
+
- name: resourceGroupName
|
|
355
|
+
in: path
|
|
356
|
+
description: The name of the resource group.
|
|
357
|
+
required: true
|
|
358
|
+
style: simple
|
|
359
|
+
schema:
|
|
360
|
+
minLength: 1
|
|
361
|
+
type: string
|
|
362
|
+
- name: resourceName
|
|
363
|
+
in: path
|
|
364
|
+
description: The name of the managed cluster resource.
|
|
365
|
+
required: true
|
|
366
|
+
style: simple
|
|
367
|
+
schema:
|
|
368
|
+
maxLength: 63
|
|
369
|
+
minLength: 1
|
|
370
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
371
|
+
type: string
|
|
372
|
+
requestBody:
|
|
373
|
+
description: Parameters supplied to the Create or Update a Managed Cluster operation.
|
|
374
|
+
content:
|
|
375
|
+
application/json:
|
|
376
|
+
schema:
|
|
377
|
+
allOf:
|
|
378
|
+
- $ref: '#/components/schemas/SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest1'
|
|
379
|
+
- description: Parameters supplied to the Create or Update a Managed Cluster operation.
|
|
380
|
+
required: true
|
|
381
|
+
responses:
|
|
382
|
+
'200':
|
|
383
|
+
description: OK
|
|
384
|
+
headers: {}
|
|
385
|
+
content:
|
|
386
|
+
application/json:
|
|
387
|
+
schema:
|
|
388
|
+
allOf:
|
|
389
|
+
- $ref: '#/components/schemas/ManagedCluster'
|
|
390
|
+
- description: Managed cluster.
|
|
391
|
+
'201':
|
|
392
|
+
description: Created
|
|
393
|
+
headers: {}
|
|
394
|
+
content:
|
|
395
|
+
application/json:
|
|
396
|
+
schema:
|
|
397
|
+
allOf:
|
|
398
|
+
- $ref: '#/components/schemas/ManagedCluster'
|
|
399
|
+
- description: Managed cluster.
|
|
400
|
+
default:
|
|
401
|
+
description: Error response describing why the operation failed.
|
|
402
|
+
headers: {}
|
|
403
|
+
content:
|
|
404
|
+
application/json:
|
|
405
|
+
schema:
|
|
406
|
+
allOf:
|
|
407
|
+
- $ref: '#/components/schemas/CloudError'
|
|
408
|
+
- description: An error response from the Container service.
|
|
409
|
+
deprecated: false
|
|
410
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/accessProfiles/{roleName}/listCredential
|
|
411
|
+
: post:
|
|
412
|
+
tags:
|
|
413
|
+
- ManagedClusters
|
|
414
|
+
summary: ManagedClusters_GetAccessProfile
|
|
415
|
+
description: Gets the accessProfile for the specified role name of the managed cluster with a specified resource group and name.
|
|
416
|
+
operationId: ManagedClusters_GetAccessProfile
|
|
417
|
+
parameters:
|
|
418
|
+
- name: api-version
|
|
419
|
+
in: query
|
|
420
|
+
description: Client Api Version.
|
|
421
|
+
required: true
|
|
422
|
+
style: form
|
|
423
|
+
explode: true
|
|
424
|
+
schema:
|
|
425
|
+
type: string
|
|
426
|
+
- name: subscriptionId
|
|
427
|
+
in: path
|
|
428
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
429
|
+
required: true
|
|
430
|
+
style: simple
|
|
431
|
+
schema:
|
|
432
|
+
type: string
|
|
433
|
+
- name: resourceGroupName
|
|
434
|
+
in: path
|
|
435
|
+
description: The name of the resource group.
|
|
436
|
+
required: true
|
|
437
|
+
style: simple
|
|
438
|
+
schema:
|
|
439
|
+
minLength: 1
|
|
440
|
+
type: string
|
|
441
|
+
- name: resourceName
|
|
442
|
+
in: path
|
|
443
|
+
description: The name of the managed cluster resource.
|
|
444
|
+
required: true
|
|
445
|
+
style: simple
|
|
446
|
+
schema:
|
|
447
|
+
maxLength: 63
|
|
448
|
+
minLength: 1
|
|
449
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
450
|
+
type: string
|
|
451
|
+
- name: roleName
|
|
452
|
+
in: path
|
|
453
|
+
description: The name of the role for managed cluster accessProfile resource.
|
|
454
|
+
required: true
|
|
455
|
+
style: simple
|
|
456
|
+
schema:
|
|
457
|
+
type: string
|
|
458
|
+
responses:
|
|
459
|
+
'200':
|
|
460
|
+
description: OK
|
|
461
|
+
headers: {}
|
|
462
|
+
content:
|
|
463
|
+
application/json:
|
|
464
|
+
schema:
|
|
465
|
+
allOf:
|
|
466
|
+
- $ref: '#/components/schemas/ManagedClusterAccessProfile'
|
|
467
|
+
- description: Managed cluster Access Profile.
|
|
468
|
+
default:
|
|
469
|
+
description: Error response describing why the operation failed.
|
|
470
|
+
headers: {}
|
|
471
|
+
content:
|
|
472
|
+
application/json:
|
|
473
|
+
schema:
|
|
474
|
+
allOf:
|
|
475
|
+
- $ref: '#/components/schemas/CloudError'
|
|
476
|
+
- description: An error response from the Container service.
|
|
477
|
+
deprecated: false
|
|
478
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterAdminCredential
|
|
479
|
+
: post:
|
|
480
|
+
tags:
|
|
481
|
+
- ManagedClusters
|
|
482
|
+
summary: ManagedClusters_ListClusterAdminCredentials
|
|
483
|
+
description: Gets cluster admin credential of the managed cluster with a specified resource group and name.
|
|
484
|
+
operationId: ManagedClusters_ListClusterAdminCredentials
|
|
485
|
+
parameters:
|
|
486
|
+
- name: api-version
|
|
487
|
+
in: query
|
|
488
|
+
description: Client Api Version.
|
|
489
|
+
required: true
|
|
490
|
+
style: form
|
|
491
|
+
explode: true
|
|
492
|
+
schema:
|
|
493
|
+
type: string
|
|
494
|
+
- name: subscriptionId
|
|
495
|
+
in: path
|
|
496
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
497
|
+
required: true
|
|
498
|
+
style: simple
|
|
499
|
+
schema:
|
|
500
|
+
type: string
|
|
501
|
+
- name: resourceGroupName
|
|
502
|
+
in: path
|
|
503
|
+
description: The name of the resource group.
|
|
504
|
+
required: true
|
|
505
|
+
style: simple
|
|
506
|
+
schema:
|
|
507
|
+
minLength: 1
|
|
508
|
+
type: string
|
|
509
|
+
- name: resourceName
|
|
510
|
+
in: path
|
|
511
|
+
description: The name of the managed cluster resource.
|
|
512
|
+
required: true
|
|
513
|
+
style: simple
|
|
514
|
+
schema:
|
|
515
|
+
maxLength: 63
|
|
516
|
+
minLength: 1
|
|
517
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
518
|
+
type: string
|
|
519
|
+
responses:
|
|
520
|
+
'200':
|
|
521
|
+
description: OK
|
|
522
|
+
headers: {}
|
|
523
|
+
content:
|
|
524
|
+
application/json:
|
|
525
|
+
schema:
|
|
526
|
+
allOf:
|
|
527
|
+
- $ref: '#/components/schemas/CredentialResults'
|
|
528
|
+
- description: The list of credential result response.
|
|
529
|
+
default:
|
|
530
|
+
description: Error response describing why the operation failed.
|
|
531
|
+
headers: {}
|
|
532
|
+
content:
|
|
533
|
+
application/json:
|
|
534
|
+
schema:
|
|
535
|
+
allOf:
|
|
536
|
+
- $ref: '#/components/schemas/CloudError'
|
|
537
|
+
- description: An error response from the Container service.
|
|
538
|
+
deprecated: false
|
|
539
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterMonitoringUserCredential
|
|
540
|
+
: post:
|
|
541
|
+
tags:
|
|
542
|
+
- ManagedClusters
|
|
543
|
+
summary: ManagedClusters_ListClusterMonitoringUserCredentials
|
|
544
|
+
description: Gets cluster monitoring user credential of the managed cluster with a specified resource group and name.
|
|
545
|
+
operationId: ManagedClusters_ListClusterMonitoringUserCredentials
|
|
546
|
+
parameters:
|
|
547
|
+
- name: api-version
|
|
548
|
+
in: query
|
|
549
|
+
description: Client Api Version.
|
|
550
|
+
required: true
|
|
551
|
+
style: form
|
|
552
|
+
explode: true
|
|
553
|
+
schema:
|
|
554
|
+
type: string
|
|
555
|
+
- name: subscriptionId
|
|
556
|
+
in: path
|
|
557
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
558
|
+
required: true
|
|
559
|
+
style: simple
|
|
560
|
+
schema:
|
|
561
|
+
type: string
|
|
562
|
+
- name: resourceGroupName
|
|
563
|
+
in: path
|
|
564
|
+
description: The name of the resource group.
|
|
565
|
+
required: true
|
|
566
|
+
style: simple
|
|
567
|
+
schema:
|
|
568
|
+
minLength: 1
|
|
569
|
+
type: string
|
|
570
|
+
- name: resourceName
|
|
571
|
+
in: path
|
|
572
|
+
description: The name of the managed cluster resource.
|
|
573
|
+
required: true
|
|
574
|
+
style: simple
|
|
575
|
+
schema:
|
|
576
|
+
maxLength: 63
|
|
577
|
+
minLength: 1
|
|
578
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
579
|
+
type: string
|
|
580
|
+
responses:
|
|
581
|
+
'200':
|
|
582
|
+
description: OK
|
|
583
|
+
headers: {}
|
|
584
|
+
content:
|
|
585
|
+
application/json:
|
|
586
|
+
schema:
|
|
587
|
+
allOf:
|
|
588
|
+
- $ref: '#/components/schemas/CredentialResults'
|
|
589
|
+
- description: The list of credential result response.
|
|
590
|
+
default:
|
|
591
|
+
description: Error response describing why the operation failed.
|
|
592
|
+
headers: {}
|
|
593
|
+
content:
|
|
594
|
+
application/json:
|
|
595
|
+
schema:
|
|
596
|
+
allOf:
|
|
597
|
+
- $ref: '#/components/schemas/CloudError'
|
|
598
|
+
- description: An error response from the Container service.
|
|
599
|
+
deprecated: false
|
|
600
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/listClusterUserCredential
|
|
601
|
+
: post:
|
|
602
|
+
tags:
|
|
603
|
+
- ManagedClusters
|
|
604
|
+
summary: ManagedClusters_ListClusterUserCredentials
|
|
605
|
+
description: Gets cluster user credential of the managed cluster with a specified resource group and name.
|
|
606
|
+
operationId: ManagedClusters_ListClusterUserCredentials
|
|
607
|
+
parameters:
|
|
608
|
+
- name: api-version
|
|
609
|
+
in: query
|
|
610
|
+
description: Client Api Version.
|
|
611
|
+
required: true
|
|
612
|
+
style: form
|
|
613
|
+
explode: true
|
|
614
|
+
schema:
|
|
615
|
+
type: string
|
|
616
|
+
- name: subscriptionId
|
|
617
|
+
in: path
|
|
618
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
619
|
+
required: true
|
|
620
|
+
style: simple
|
|
621
|
+
schema:
|
|
622
|
+
type: string
|
|
623
|
+
- name: resourceGroupName
|
|
624
|
+
in: path
|
|
625
|
+
description: The name of the resource group.
|
|
626
|
+
required: true
|
|
627
|
+
style: simple
|
|
628
|
+
schema:
|
|
629
|
+
minLength: 1
|
|
630
|
+
type: string
|
|
631
|
+
- name: resourceName
|
|
632
|
+
in: path
|
|
633
|
+
description: The name of the managed cluster resource.
|
|
634
|
+
required: true
|
|
635
|
+
style: simple
|
|
636
|
+
schema:
|
|
637
|
+
maxLength: 63
|
|
638
|
+
minLength: 1
|
|
639
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
640
|
+
type: string
|
|
641
|
+
responses:
|
|
642
|
+
'200':
|
|
643
|
+
description: OK
|
|
644
|
+
headers: {}
|
|
645
|
+
content:
|
|
646
|
+
application/json:
|
|
647
|
+
schema:
|
|
648
|
+
allOf:
|
|
649
|
+
- $ref: '#/components/schemas/CredentialResults'
|
|
650
|
+
- description: The list of credential result response.
|
|
651
|
+
default:
|
|
652
|
+
description: Error response describing why the operation failed.
|
|
653
|
+
headers: {}
|
|
654
|
+
content:
|
|
655
|
+
application/json:
|
|
656
|
+
schema:
|
|
657
|
+
allOf:
|
|
658
|
+
- $ref: '#/components/schemas/CloudError'
|
|
659
|
+
- description: An error response from the Container service.
|
|
660
|
+
deprecated: false
|
|
661
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetAADProfile
|
|
662
|
+
: post:
|
|
663
|
+
tags:
|
|
664
|
+
- ManagedClusters
|
|
665
|
+
summary: ManagedClusters_ResetAADProfile
|
|
666
|
+
description: Update the AAD Profile for a managed cluster.
|
|
667
|
+
operationId: ManagedClusters_ResetAADProfile
|
|
668
|
+
parameters:
|
|
669
|
+
- name: api-version
|
|
670
|
+
in: query
|
|
671
|
+
description: Client Api Version.
|
|
672
|
+
required: true
|
|
673
|
+
style: form
|
|
674
|
+
explode: true
|
|
675
|
+
schema:
|
|
676
|
+
type: string
|
|
677
|
+
- name: subscriptionId
|
|
678
|
+
in: path
|
|
679
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
680
|
+
required: true
|
|
681
|
+
style: simple
|
|
682
|
+
schema:
|
|
683
|
+
type: string
|
|
684
|
+
- name: resourceGroupName
|
|
685
|
+
in: path
|
|
686
|
+
description: The name of the resource group.
|
|
687
|
+
required: true
|
|
688
|
+
style: simple
|
|
689
|
+
schema:
|
|
690
|
+
minLength: 1
|
|
691
|
+
type: string
|
|
692
|
+
- name: resourceName
|
|
693
|
+
in: path
|
|
694
|
+
description: The name of the managed cluster resource.
|
|
695
|
+
required: true
|
|
696
|
+
style: simple
|
|
697
|
+
schema:
|
|
698
|
+
maxLength: 63
|
|
699
|
+
minLength: 1
|
|
700
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
701
|
+
type: string
|
|
702
|
+
requestBody:
|
|
703
|
+
description: Parameters supplied to the Reset AAD Profile operation for a Managed Cluster.
|
|
704
|
+
content:
|
|
705
|
+
application/json:
|
|
706
|
+
schema:
|
|
707
|
+
allOf:
|
|
708
|
+
- $ref: '#/components/schemas/SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetAADProfileRequest'
|
|
709
|
+
- description: Parameters supplied to the Reset AAD Profile operation for a Managed Cluster.
|
|
710
|
+
required: true
|
|
711
|
+
responses:
|
|
712
|
+
'200':
|
|
713
|
+
description: OK
|
|
714
|
+
headers: {}
|
|
715
|
+
content: {}
|
|
716
|
+
'202':
|
|
717
|
+
description: Accepted
|
|
718
|
+
headers: {}
|
|
719
|
+
content: {}
|
|
720
|
+
default:
|
|
721
|
+
description: Error response describing why the operation failed. If the cluster doesn't exist, 404 (Not found) is returned.
|
|
722
|
+
headers: {}
|
|
723
|
+
content:
|
|
724
|
+
application/json:
|
|
725
|
+
schema:
|
|
726
|
+
allOf:
|
|
727
|
+
- $ref: '#/components/schemas/CloudError'
|
|
728
|
+
- description: An error response from the Container service.
|
|
729
|
+
deprecated: false
|
|
730
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/resetServicePrincipalProfile
|
|
731
|
+
: post:
|
|
732
|
+
tags:
|
|
733
|
+
- ManagedClusters
|
|
734
|
+
summary: ManagedClusters_ResetServicePrincipalProfile
|
|
735
|
+
description: Update the service principal Profile for a managed cluster.
|
|
736
|
+
operationId: ManagedClusters_ResetServicePrincipalProfile
|
|
737
|
+
parameters:
|
|
738
|
+
- name: api-version
|
|
739
|
+
in: query
|
|
740
|
+
description: Client Api Version.
|
|
741
|
+
required: true
|
|
742
|
+
style: form
|
|
743
|
+
explode: true
|
|
744
|
+
schema:
|
|
745
|
+
type: string
|
|
746
|
+
- name: subscriptionId
|
|
747
|
+
in: path
|
|
748
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
749
|
+
required: true
|
|
750
|
+
style: simple
|
|
751
|
+
schema:
|
|
752
|
+
type: string
|
|
753
|
+
- name: resourceGroupName
|
|
754
|
+
in: path
|
|
755
|
+
description: The name of the resource group.
|
|
756
|
+
required: true
|
|
757
|
+
style: simple
|
|
758
|
+
schema:
|
|
759
|
+
minLength: 1
|
|
760
|
+
type: string
|
|
761
|
+
- name: resourceName
|
|
762
|
+
in: path
|
|
763
|
+
description: The name of the managed cluster resource.
|
|
764
|
+
required: true
|
|
765
|
+
style: simple
|
|
766
|
+
schema:
|
|
767
|
+
maxLength: 63
|
|
768
|
+
minLength: 1
|
|
769
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
770
|
+
type: string
|
|
771
|
+
requestBody:
|
|
772
|
+
description: Parameters supplied to the Reset Service Principal Profile operation for a Managed Cluster.
|
|
773
|
+
content:
|
|
774
|
+
application/json:
|
|
775
|
+
schema:
|
|
776
|
+
allOf:
|
|
777
|
+
- $ref: '#/components/schemas/SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetServicePrincipalProfileRequest'
|
|
778
|
+
- description: Parameters supplied to the Reset Service Principal Profile operation for a Managed Cluster.
|
|
779
|
+
required: true
|
|
780
|
+
responses:
|
|
781
|
+
'200':
|
|
782
|
+
description: OK
|
|
783
|
+
headers: {}
|
|
784
|
+
content: {}
|
|
785
|
+
'202':
|
|
786
|
+
description: Accepted
|
|
787
|
+
headers: {}
|
|
788
|
+
content: {}
|
|
789
|
+
default:
|
|
790
|
+
description: Error response describing why the operation failed. If the cluster doesn't exist, 404 (Not found) is returned.
|
|
791
|
+
headers: {}
|
|
792
|
+
content:
|
|
793
|
+
application/json:
|
|
794
|
+
schema:
|
|
795
|
+
allOf:
|
|
796
|
+
- $ref: '#/components/schemas/CloudError'
|
|
797
|
+
- description: An error response from the Container service.
|
|
798
|
+
deprecated: false
|
|
799
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/rotateClusterCertificates
|
|
800
|
+
: post:
|
|
801
|
+
tags:
|
|
802
|
+
- ManagedClusters
|
|
803
|
+
summary: ManagedClusters_RotateClusterCertificates
|
|
804
|
+
description: Rotate certificates of a managed cluster.
|
|
805
|
+
operationId: ManagedClusters_RotateClusterCertificates
|
|
806
|
+
parameters:
|
|
807
|
+
- name: api-version
|
|
808
|
+
in: query
|
|
809
|
+
description: Client Api Version.
|
|
810
|
+
required: true
|
|
811
|
+
style: form
|
|
812
|
+
explode: true
|
|
813
|
+
schema:
|
|
814
|
+
type: string
|
|
815
|
+
- name: subscriptionId
|
|
816
|
+
in: path
|
|
817
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
818
|
+
required: true
|
|
819
|
+
style: simple
|
|
820
|
+
schema:
|
|
821
|
+
type: string
|
|
822
|
+
- name: resourceGroupName
|
|
823
|
+
in: path
|
|
824
|
+
description: The name of the resource group.
|
|
825
|
+
required: true
|
|
826
|
+
style: simple
|
|
827
|
+
schema:
|
|
828
|
+
minLength: 1
|
|
829
|
+
type: string
|
|
830
|
+
- name: resourceName
|
|
831
|
+
in: path
|
|
832
|
+
description: The name of the managed cluster resource.
|
|
833
|
+
required: true
|
|
834
|
+
style: simple
|
|
835
|
+
schema:
|
|
836
|
+
maxLength: 63
|
|
837
|
+
minLength: 1
|
|
838
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
839
|
+
type: string
|
|
840
|
+
responses:
|
|
841
|
+
'202':
|
|
842
|
+
description: Accepted
|
|
843
|
+
headers: {}
|
|
844
|
+
content: {}
|
|
845
|
+
'204':
|
|
846
|
+
description: NoContent
|
|
847
|
+
headers: {}
|
|
848
|
+
content: {}
|
|
849
|
+
default:
|
|
850
|
+
description: Error response describing why the operation failed. If the cluster doesn't exist, 404 (Not found) is returned.
|
|
851
|
+
headers: {}
|
|
852
|
+
content:
|
|
853
|
+
application/json:
|
|
854
|
+
schema:
|
|
855
|
+
allOf:
|
|
856
|
+
- $ref: '#/components/schemas/CloudError'
|
|
857
|
+
- description: An error response from the Container service.
|
|
858
|
+
deprecated: false
|
|
859
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/upgradeProfiles/default
|
|
860
|
+
: get:
|
|
861
|
+
tags:
|
|
862
|
+
- ManagedClusters
|
|
863
|
+
summary: ManagedClusters_GetUpgradeProfile
|
|
864
|
+
description: Gets the details of the upgrade profile for a managed cluster with a specified resource group and name.
|
|
865
|
+
operationId: ManagedClusters_GetUpgradeProfile
|
|
866
|
+
parameters:
|
|
867
|
+
- name: api-version
|
|
868
|
+
in: query
|
|
869
|
+
description: Client Api Version.
|
|
870
|
+
required: true
|
|
871
|
+
style: form
|
|
872
|
+
explode: true
|
|
873
|
+
schema:
|
|
874
|
+
type: string
|
|
875
|
+
- name: subscriptionId
|
|
876
|
+
in: path
|
|
877
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
878
|
+
required: true
|
|
879
|
+
style: simple
|
|
880
|
+
schema:
|
|
881
|
+
type: string
|
|
882
|
+
- name: resourceGroupName
|
|
883
|
+
in: path
|
|
884
|
+
description: The name of the resource group.
|
|
885
|
+
required: true
|
|
886
|
+
style: simple
|
|
887
|
+
schema:
|
|
888
|
+
minLength: 1
|
|
889
|
+
type: string
|
|
890
|
+
- name: resourceName
|
|
891
|
+
in: path
|
|
892
|
+
description: The name of the managed cluster resource.
|
|
893
|
+
required: true
|
|
894
|
+
style: simple
|
|
895
|
+
schema:
|
|
896
|
+
maxLength: 63
|
|
897
|
+
minLength: 1
|
|
898
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
899
|
+
type: string
|
|
900
|
+
responses:
|
|
901
|
+
'200':
|
|
902
|
+
description: OK
|
|
903
|
+
headers: {}
|
|
904
|
+
content:
|
|
905
|
+
application/json:
|
|
906
|
+
schema:
|
|
907
|
+
allOf:
|
|
908
|
+
- $ref: '#/components/schemas/ManagedClusterUpgradeProfile'
|
|
909
|
+
- description: The list of available upgrades for compute pools.
|
|
910
|
+
default:
|
|
911
|
+
description: Error response describing why the operation failed.
|
|
912
|
+
headers: {}
|
|
913
|
+
content:
|
|
914
|
+
application/json:
|
|
915
|
+
schema:
|
|
916
|
+
allOf:
|
|
917
|
+
- $ref: '#/components/schemas/CloudError'
|
|
918
|
+
- description: An error response from the Container service.
|
|
919
|
+
deprecated: false
|
|
920
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools
|
|
921
|
+
: get:
|
|
922
|
+
tags:
|
|
923
|
+
- AgentPools
|
|
924
|
+
summary: AgentPools_List
|
|
925
|
+
description: Gets a list of agent pools in the specified managed cluster. The operation returns properties of each agent pool.
|
|
926
|
+
operationId: AgentPools_List
|
|
927
|
+
parameters:
|
|
928
|
+
- name: api-version
|
|
929
|
+
in: query
|
|
930
|
+
description: Client Api Version.
|
|
931
|
+
required: true
|
|
932
|
+
style: form
|
|
933
|
+
explode: true
|
|
934
|
+
schema:
|
|
935
|
+
type: string
|
|
936
|
+
- name: subscriptionId
|
|
937
|
+
in: path
|
|
938
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
939
|
+
required: true
|
|
940
|
+
style: simple
|
|
941
|
+
schema:
|
|
942
|
+
type: string
|
|
943
|
+
- name: resourceGroupName
|
|
944
|
+
in: path
|
|
945
|
+
description: The name of the resource group.
|
|
946
|
+
required: true
|
|
947
|
+
style: simple
|
|
948
|
+
schema:
|
|
949
|
+
minLength: 1
|
|
950
|
+
type: string
|
|
951
|
+
- name: resourceName
|
|
952
|
+
in: path
|
|
953
|
+
description: The name of the managed cluster resource.
|
|
954
|
+
required: true
|
|
955
|
+
style: simple
|
|
956
|
+
schema:
|
|
957
|
+
maxLength: 63
|
|
958
|
+
minLength: 1
|
|
959
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
960
|
+
type: string
|
|
961
|
+
responses:
|
|
962
|
+
'200':
|
|
963
|
+
description: OK
|
|
964
|
+
headers: {}
|
|
965
|
+
content:
|
|
966
|
+
application/json:
|
|
967
|
+
schema:
|
|
968
|
+
allOf:
|
|
969
|
+
- $ref: '#/components/schemas/AgentPoolListResult'
|
|
970
|
+
- description: The response from the List Agent Pools operation.
|
|
971
|
+
default:
|
|
972
|
+
description: Error response describing why the operation failed.
|
|
973
|
+
headers: {}
|
|
974
|
+
content:
|
|
975
|
+
application/json:
|
|
976
|
+
schema:
|
|
977
|
+
allOf:
|
|
978
|
+
- $ref: '#/components/schemas/CloudError'
|
|
979
|
+
- description: An error response from the Container service.
|
|
980
|
+
deprecated: false
|
|
981
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}
|
|
982
|
+
: delete:
|
|
983
|
+
tags:
|
|
984
|
+
- AgentPools
|
|
985
|
+
summary: AgentPools_Delete
|
|
986
|
+
description: Deletes the agent pool in the specified managed cluster.
|
|
987
|
+
operationId: AgentPools_Delete
|
|
988
|
+
parameters:
|
|
989
|
+
- name: api-version
|
|
990
|
+
in: query
|
|
991
|
+
description: Client Api Version.
|
|
992
|
+
required: true
|
|
993
|
+
style: form
|
|
994
|
+
explode: true
|
|
995
|
+
schema:
|
|
996
|
+
type: string
|
|
997
|
+
- name: subscriptionId
|
|
998
|
+
in: path
|
|
999
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
1000
|
+
required: true
|
|
1001
|
+
style: simple
|
|
1002
|
+
schema:
|
|
1003
|
+
type: string
|
|
1004
|
+
- name: resourceGroupName
|
|
1005
|
+
in: path
|
|
1006
|
+
description: The name of the resource group.
|
|
1007
|
+
required: true
|
|
1008
|
+
style: simple
|
|
1009
|
+
schema:
|
|
1010
|
+
minLength: 1
|
|
1011
|
+
type: string
|
|
1012
|
+
- name: resourceName
|
|
1013
|
+
in: path
|
|
1014
|
+
description: The name of the managed cluster resource.
|
|
1015
|
+
required: true
|
|
1016
|
+
style: simple
|
|
1017
|
+
schema:
|
|
1018
|
+
maxLength: 63
|
|
1019
|
+
minLength: 1
|
|
1020
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
1021
|
+
type: string
|
|
1022
|
+
- name: agentPoolName
|
|
1023
|
+
in: path
|
|
1024
|
+
description: The name of the agent pool.
|
|
1025
|
+
required: true
|
|
1026
|
+
style: simple
|
|
1027
|
+
schema:
|
|
1028
|
+
type: string
|
|
1029
|
+
responses:
|
|
1030
|
+
'202':
|
|
1031
|
+
description: Accepted
|
|
1032
|
+
headers: {}
|
|
1033
|
+
content: {}
|
|
1034
|
+
'204':
|
|
1035
|
+
description: NoContent
|
|
1036
|
+
headers: {}
|
|
1037
|
+
content: {}
|
|
1038
|
+
default:
|
|
1039
|
+
description: Error response describing why the operation failed.
|
|
1040
|
+
headers: {}
|
|
1041
|
+
content:
|
|
1042
|
+
application/json:
|
|
1043
|
+
schema:
|
|
1044
|
+
allOf:
|
|
1045
|
+
- $ref: '#/components/schemas/CloudError'
|
|
1046
|
+
- description: An error response from the Container service.
|
|
1047
|
+
deprecated: false
|
|
1048
|
+
get:
|
|
1049
|
+
tags:
|
|
1050
|
+
- AgentPools
|
|
1051
|
+
summary: AgentPools_Get
|
|
1052
|
+
description: Gets the details of the agent pool by managed cluster and resource group.
|
|
1053
|
+
operationId: AgentPools_Get
|
|
1054
|
+
parameters:
|
|
1055
|
+
- name: api-version
|
|
1056
|
+
in: query
|
|
1057
|
+
description: Client Api Version.
|
|
1058
|
+
required: true
|
|
1059
|
+
style: form
|
|
1060
|
+
explode: true
|
|
1061
|
+
schema:
|
|
1062
|
+
type: string
|
|
1063
|
+
- name: subscriptionId
|
|
1064
|
+
in: path
|
|
1065
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
1066
|
+
required: true
|
|
1067
|
+
style: simple
|
|
1068
|
+
schema:
|
|
1069
|
+
type: string
|
|
1070
|
+
- name: resourceGroupName
|
|
1071
|
+
in: path
|
|
1072
|
+
description: The name of the resource group.
|
|
1073
|
+
required: true
|
|
1074
|
+
style: simple
|
|
1075
|
+
schema:
|
|
1076
|
+
minLength: 1
|
|
1077
|
+
type: string
|
|
1078
|
+
- name: resourceName
|
|
1079
|
+
in: path
|
|
1080
|
+
description: The name of the managed cluster resource.
|
|
1081
|
+
required: true
|
|
1082
|
+
style: simple
|
|
1083
|
+
schema:
|
|
1084
|
+
maxLength: 63
|
|
1085
|
+
minLength: 1
|
|
1086
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
1087
|
+
type: string
|
|
1088
|
+
- name: agentPoolName
|
|
1089
|
+
in: path
|
|
1090
|
+
description: The name of the agent pool.
|
|
1091
|
+
required: true
|
|
1092
|
+
style: simple
|
|
1093
|
+
schema:
|
|
1094
|
+
type: string
|
|
1095
|
+
responses:
|
|
1096
|
+
'200':
|
|
1097
|
+
description: OK
|
|
1098
|
+
headers: {}
|
|
1099
|
+
content:
|
|
1100
|
+
application/json:
|
|
1101
|
+
schema:
|
|
1102
|
+
allOf:
|
|
1103
|
+
- $ref: '#/components/schemas/AgentPool'
|
|
1104
|
+
- description: Agent Pool.
|
|
1105
|
+
default:
|
|
1106
|
+
description: Error response describing why the operation failed.
|
|
1107
|
+
headers: {}
|
|
1108
|
+
content:
|
|
1109
|
+
application/json:
|
|
1110
|
+
schema:
|
|
1111
|
+
allOf:
|
|
1112
|
+
- $ref: '#/components/schemas/CloudError'
|
|
1113
|
+
- description: An error response from the Container service.
|
|
1114
|
+
deprecated: false
|
|
1115
|
+
put:
|
|
1116
|
+
tags:
|
|
1117
|
+
- AgentPools
|
|
1118
|
+
summary: AgentPools_CreateOrUpdate
|
|
1119
|
+
description: Creates or updates an agent pool in the specified managed cluster.
|
|
1120
|
+
operationId: AgentPools_CreateOrUpdate
|
|
1121
|
+
parameters:
|
|
1122
|
+
- name: api-version
|
|
1123
|
+
in: query
|
|
1124
|
+
description: Client Api Version.
|
|
1125
|
+
required: true
|
|
1126
|
+
style: form
|
|
1127
|
+
explode: true
|
|
1128
|
+
schema:
|
|
1129
|
+
type: string
|
|
1130
|
+
- name: subscriptionId
|
|
1131
|
+
in: path
|
|
1132
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
1133
|
+
required: true
|
|
1134
|
+
style: simple
|
|
1135
|
+
schema:
|
|
1136
|
+
type: string
|
|
1137
|
+
- name: resourceGroupName
|
|
1138
|
+
in: path
|
|
1139
|
+
description: The name of the resource group.
|
|
1140
|
+
required: true
|
|
1141
|
+
style: simple
|
|
1142
|
+
schema:
|
|
1143
|
+
minLength: 1
|
|
1144
|
+
type: string
|
|
1145
|
+
- name: resourceName
|
|
1146
|
+
in: path
|
|
1147
|
+
description: The name of the managed cluster resource.
|
|
1148
|
+
required: true
|
|
1149
|
+
style: simple
|
|
1150
|
+
schema:
|
|
1151
|
+
maxLength: 63
|
|
1152
|
+
minLength: 1
|
|
1153
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
1154
|
+
type: string
|
|
1155
|
+
- name: agentPoolName
|
|
1156
|
+
in: path
|
|
1157
|
+
description: The name of the agent pool.
|
|
1158
|
+
required: true
|
|
1159
|
+
style: simple
|
|
1160
|
+
schema:
|
|
1161
|
+
type: string
|
|
1162
|
+
requestBody:
|
|
1163
|
+
description: Parameters supplied to the Create or Update an agent pool operation.
|
|
1164
|
+
content:
|
|
1165
|
+
application/json:
|
|
1166
|
+
schema:
|
|
1167
|
+
allOf:
|
|
1168
|
+
- $ref: '#/components/schemas/SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameAgentPoolsAgentPoolNameRequest'
|
|
1169
|
+
- description: Parameters supplied to the Create or Update an agent pool operation.
|
|
1170
|
+
required: true
|
|
1171
|
+
responses:
|
|
1172
|
+
'200':
|
|
1173
|
+
description: OK
|
|
1174
|
+
headers: {}
|
|
1175
|
+
content:
|
|
1176
|
+
application/json:
|
|
1177
|
+
schema:
|
|
1178
|
+
allOf:
|
|
1179
|
+
- $ref: '#/components/schemas/AgentPool'
|
|
1180
|
+
- description: Agent Pool.
|
|
1181
|
+
'201':
|
|
1182
|
+
description: Created
|
|
1183
|
+
headers: {}
|
|
1184
|
+
content:
|
|
1185
|
+
application/json:
|
|
1186
|
+
schema:
|
|
1187
|
+
allOf:
|
|
1188
|
+
- $ref: '#/components/schemas/AgentPool'
|
|
1189
|
+
- description: Agent Pool.
|
|
1190
|
+
default:
|
|
1191
|
+
description: Error response describing why the operation failed.
|
|
1192
|
+
headers: {}
|
|
1193
|
+
content:
|
|
1194
|
+
application/json:
|
|
1195
|
+
schema:
|
|
1196
|
+
allOf:
|
|
1197
|
+
- $ref: '#/components/schemas/CloudError'
|
|
1198
|
+
- description: An error response from the Container service.
|
|
1199
|
+
deprecated: false
|
|
1200
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/agentPools/{agentPoolName}/upgradeProfiles/default
|
|
1201
|
+
: get:
|
|
1202
|
+
tags:
|
|
1203
|
+
- AgentPools
|
|
1204
|
+
summary: AgentPools_GetUpgradeProfile
|
|
1205
|
+
description: Gets the details of the upgrade profile for an agent pool with a specified resource group and managed cluster name.
|
|
1206
|
+
operationId: AgentPools_GetUpgradeProfile
|
|
1207
|
+
parameters:
|
|
1208
|
+
- name: api-version
|
|
1209
|
+
in: query
|
|
1210
|
+
description: Client Api Version.
|
|
1211
|
+
required: true
|
|
1212
|
+
style: form
|
|
1213
|
+
explode: true
|
|
1214
|
+
schema:
|
|
1215
|
+
type: string
|
|
1216
|
+
- name: subscriptionId
|
|
1217
|
+
in: path
|
|
1218
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
1219
|
+
required: true
|
|
1220
|
+
style: simple
|
|
1221
|
+
schema:
|
|
1222
|
+
type: string
|
|
1223
|
+
- name: resourceGroupName
|
|
1224
|
+
in: path
|
|
1225
|
+
description: The name of the resource group.
|
|
1226
|
+
required: true
|
|
1227
|
+
style: simple
|
|
1228
|
+
schema:
|
|
1229
|
+
minLength: 1
|
|
1230
|
+
type: string
|
|
1231
|
+
- name: resourceName
|
|
1232
|
+
in: path
|
|
1233
|
+
description: The name of the managed cluster resource.
|
|
1234
|
+
required: true
|
|
1235
|
+
style: simple
|
|
1236
|
+
schema:
|
|
1237
|
+
maxLength: 63
|
|
1238
|
+
minLength: 1
|
|
1239
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
1240
|
+
type: string
|
|
1241
|
+
- name: agentPoolName
|
|
1242
|
+
in: path
|
|
1243
|
+
description: The name of the agent pool.
|
|
1244
|
+
required: true
|
|
1245
|
+
style: simple
|
|
1246
|
+
schema:
|
|
1247
|
+
type: string
|
|
1248
|
+
responses:
|
|
1249
|
+
'200':
|
|
1250
|
+
description: OK
|
|
1251
|
+
headers: {}
|
|
1252
|
+
content:
|
|
1253
|
+
application/json:
|
|
1254
|
+
schema:
|
|
1255
|
+
allOf:
|
|
1256
|
+
- $ref: '#/components/schemas/AgentPoolUpgradeProfile'
|
|
1257
|
+
- description: The list of available upgrades for an agent pool.
|
|
1258
|
+
default:
|
|
1259
|
+
description: Error response describing why the operation failed.
|
|
1260
|
+
headers: {}
|
|
1261
|
+
content:
|
|
1262
|
+
application/json:
|
|
1263
|
+
schema:
|
|
1264
|
+
allOf:
|
|
1265
|
+
- $ref: '#/components/schemas/CloudError'
|
|
1266
|
+
- description: An error response from the Container service.
|
|
1267
|
+
deprecated: false
|
|
1268
|
+
? /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ContainerService/managedClusters/{resourceName}/availableAgentPoolVersions
|
|
1269
|
+
: get:
|
|
1270
|
+
tags:
|
|
1271
|
+
- AgentPools
|
|
1272
|
+
summary: AgentPools_GetAvailableAgentPoolVersions
|
|
1273
|
+
description: Gets a list of supported versions for the specified agent pool.
|
|
1274
|
+
operationId: AgentPools_GetAvailableAgentPoolVersions
|
|
1275
|
+
parameters:
|
|
1276
|
+
- name: api-version
|
|
1277
|
+
in: query
|
|
1278
|
+
description: Client Api Version.
|
|
1279
|
+
required: true
|
|
1280
|
+
style: form
|
|
1281
|
+
explode: true
|
|
1282
|
+
schema:
|
|
1283
|
+
type: string
|
|
1284
|
+
- name: subscriptionId
|
|
1285
|
+
in: path
|
|
1286
|
+
description: Subscription credentials which uniquely identify Microsoft Azure subscription. The subscription ID forms part of the URI for every service call.
|
|
1287
|
+
required: true
|
|
1288
|
+
style: simple
|
|
1289
|
+
schema:
|
|
1290
|
+
type: string
|
|
1291
|
+
- name: resourceGroupName
|
|
1292
|
+
in: path
|
|
1293
|
+
description: The name of the resource group.
|
|
1294
|
+
required: true
|
|
1295
|
+
style: simple
|
|
1296
|
+
schema:
|
|
1297
|
+
minLength: 1
|
|
1298
|
+
type: string
|
|
1299
|
+
- name: resourceName
|
|
1300
|
+
in: path
|
|
1301
|
+
description: The name of the managed cluster resource.
|
|
1302
|
+
required: true
|
|
1303
|
+
style: simple
|
|
1304
|
+
schema:
|
|
1305
|
+
maxLength: 63
|
|
1306
|
+
minLength: 1
|
|
1307
|
+
pattern: ^[a-zA-Z0-9]$|^[a-zA-Z0-9][-_a-zA-Z0-9]{0,61}[a-zA-Z0-9]$
|
|
1308
|
+
type: string
|
|
1309
|
+
responses:
|
|
1310
|
+
'200':
|
|
1311
|
+
description: OK
|
|
1312
|
+
headers: {}
|
|
1313
|
+
content:
|
|
1314
|
+
application/json:
|
|
1315
|
+
schema:
|
|
1316
|
+
allOf:
|
|
1317
|
+
- $ref: '#/components/schemas/AgentPoolAvailableVersions'
|
|
1318
|
+
- description: The list of available versions for an agent pool.
|
|
1319
|
+
deprecated: false
|
|
1320
|
+
components:
|
|
1321
|
+
schemas:
|
|
1322
|
+
AccessProfile:
|
|
1323
|
+
title: AccessProfile
|
|
1324
|
+
type: object
|
|
1325
|
+
properties:
|
|
1326
|
+
kubeConfig:
|
|
1327
|
+
type: string
|
|
1328
|
+
description: Base64-encoded Kubernetes configuration file.
|
|
1329
|
+
description: Profile for enabling a user to access a managed cluster.
|
|
1330
|
+
AgentPool:
|
|
1331
|
+
title: AgentPool
|
|
1332
|
+
type: object
|
|
1333
|
+
properties:
|
|
1334
|
+
id:
|
|
1335
|
+
type: string
|
|
1336
|
+
description: Resource ID.
|
|
1337
|
+
readOnly: true
|
|
1338
|
+
name:
|
|
1339
|
+
type: string
|
|
1340
|
+
description: The name of the resource that is unique within a resource group. This name can be used to access the resource.
|
|
1341
|
+
readOnly: true
|
|
1342
|
+
type:
|
|
1343
|
+
type: string
|
|
1344
|
+
description: Resource type
|
|
1345
|
+
readOnly: true
|
|
1346
|
+
properties:
|
|
1347
|
+
$ref: '#/components/schemas/Properties'
|
|
1348
|
+
description: Agent Pool.
|
|
1349
|
+
AgentPoolAvailableVersions:
|
|
1350
|
+
title: AgentPoolAvailableVersions
|
|
1351
|
+
required:
|
|
1352
|
+
- properties
|
|
1353
|
+
type: object
|
|
1354
|
+
properties:
|
|
1355
|
+
id:
|
|
1356
|
+
type: string
|
|
1357
|
+
description: Id of the agent pool available versions.
|
|
1358
|
+
readOnly: true
|
|
1359
|
+
name:
|
|
1360
|
+
type: string
|
|
1361
|
+
description: Name of the agent pool available versions.
|
|
1362
|
+
readOnly: true
|
|
1363
|
+
properties:
|
|
1364
|
+
$ref: '#/components/schemas/Properties1'
|
|
1365
|
+
type:
|
|
1366
|
+
type: string
|
|
1367
|
+
description: Type of the agent pool available versions.
|
|
1368
|
+
readOnly: true
|
|
1369
|
+
description: The list of available versions for an agent pool.
|
|
1370
|
+
AgentPoolAvailableVersionsProperties:
|
|
1371
|
+
title: AgentPoolAvailableVersionsProperties
|
|
1372
|
+
type: object
|
|
1373
|
+
properties:
|
|
1374
|
+
agentPoolVersions:
|
|
1375
|
+
type: array
|
|
1376
|
+
items:
|
|
1377
|
+
$ref: '#/components/schemas/AgentPoolVersion'
|
|
1378
|
+
description: List of versions available for agent pool.
|
|
1379
|
+
description: The list of available agent pool versions.
|
|
1380
|
+
AgentPoolListResult:
|
|
1381
|
+
title: AgentPoolListResult
|
|
1382
|
+
type: object
|
|
1383
|
+
properties:
|
|
1384
|
+
nextLink:
|
|
1385
|
+
type: string
|
|
1386
|
+
description: The URL to get the next set of agent pool results.
|
|
1387
|
+
readOnly: true
|
|
1388
|
+
value:
|
|
1389
|
+
type: array
|
|
1390
|
+
items:
|
|
1391
|
+
$ref: '#/components/schemas/AgentPool'
|
|
1392
|
+
description: The list of agent pools.
|
|
1393
|
+
description: The response from the List Agent Pools operation.
|
|
1394
|
+
AgentPoolType:
|
|
1395
|
+
title: AgentPoolType
|
|
1396
|
+
enum:
|
|
1397
|
+
- VirtualMachineScaleSets
|
|
1398
|
+
- AvailabilitySet
|
|
1399
|
+
type: string
|
|
1400
|
+
description: AgentPoolType represents types of an agent pool.
|
|
1401
|
+
AgentPoolUpgradeProfile:
|
|
1402
|
+
title: AgentPoolUpgradeProfile
|
|
1403
|
+
required:
|
|
1404
|
+
- properties
|
|
1405
|
+
type: object
|
|
1406
|
+
properties:
|
|
1407
|
+
id:
|
|
1408
|
+
type: string
|
|
1409
|
+
description: Id of the agent pool upgrade profile.
|
|
1410
|
+
readOnly: true
|
|
1411
|
+
name:
|
|
1412
|
+
type: string
|
|
1413
|
+
description: Name of the agent pool upgrade profile.
|
|
1414
|
+
readOnly: true
|
|
1415
|
+
properties:
|
|
1416
|
+
$ref: '#/components/schemas/Properties2'
|
|
1417
|
+
type:
|
|
1418
|
+
type: string
|
|
1419
|
+
description: Type of the agent pool upgrade profile.
|
|
1420
|
+
readOnly: true
|
|
1421
|
+
description: The list of available upgrades for an agent pool.
|
|
1422
|
+
AgentPoolUpgradeProfileProperties:
|
|
1423
|
+
title: AgentPoolUpgradeProfileProperties
|
|
1424
|
+
required:
|
|
1425
|
+
- kubernetesVersion
|
|
1426
|
+
- osType
|
|
1427
|
+
type: object
|
|
1428
|
+
properties:
|
|
1429
|
+
kubernetesVersion:
|
|
1430
|
+
type: string
|
|
1431
|
+
description: Kubernetes version (major, minor, patch).
|
|
1432
|
+
osType:
|
|
1433
|
+
$ref: '#/components/schemas/OSType'
|
|
1434
|
+
upgrades:
|
|
1435
|
+
type: array
|
|
1436
|
+
items:
|
|
1437
|
+
$ref: '#/components/schemas/Upgrade'
|
|
1438
|
+
description: List of orchestrator types and versions available for upgrade.
|
|
1439
|
+
description: The list of available upgrade versions.
|
|
1440
|
+
CloudError:
|
|
1441
|
+
title: CloudError
|
|
1442
|
+
type: object
|
|
1443
|
+
properties:
|
|
1444
|
+
error:
|
|
1445
|
+
$ref: '#/components/schemas/Error'
|
|
1446
|
+
description: An error response from the Container service.
|
|
1447
|
+
CloudErrorBody:
|
|
1448
|
+
title: CloudErrorBody
|
|
1449
|
+
type: object
|
|
1450
|
+
properties:
|
|
1451
|
+
code:
|
|
1452
|
+
type: string
|
|
1453
|
+
description: An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
|
|
1454
|
+
details:
|
|
1455
|
+
type: array
|
|
1456
|
+
items:
|
|
1457
|
+
$ref: '#/components/schemas/CloudErrorBody'
|
|
1458
|
+
description: A list of additional details about the error.
|
|
1459
|
+
message:
|
|
1460
|
+
type: string
|
|
1461
|
+
description: A message describing the error, intended to be suitable for display in a user interface.
|
|
1462
|
+
target:
|
|
1463
|
+
type: string
|
|
1464
|
+
description: The target of the particular error. For example, the name of the property in error.
|
|
1465
|
+
description: An error response from the Container service.
|
|
1466
|
+
ContainerServiceDiagnosticsProfile:
|
|
1467
|
+
title: ContainerServiceDiagnosticsProfile
|
|
1468
|
+
required:
|
|
1469
|
+
- vmDiagnostics
|
|
1470
|
+
type: object
|
|
1471
|
+
properties:
|
|
1472
|
+
vmDiagnostics:
|
|
1473
|
+
$ref: '#/components/schemas/VmDiagnostics'
|
|
1474
|
+
description: Profile for diagnostics on the container service cluster.
|
|
1475
|
+
ContainerServiceLinuxProfile:
|
|
1476
|
+
title: ContainerServiceLinuxProfile
|
|
1477
|
+
required:
|
|
1478
|
+
- adminUsername
|
|
1479
|
+
- ssh
|
|
1480
|
+
type: object
|
|
1481
|
+
properties:
|
|
1482
|
+
adminUsername:
|
|
1483
|
+
pattern: ^[A-Za-z][-A-Za-z0-9_]*$
|
|
1484
|
+
type: string
|
|
1485
|
+
description: The administrator username to use for Linux VMs.
|
|
1486
|
+
ssh:
|
|
1487
|
+
$ref: '#/components/schemas/Ssh'
|
|
1488
|
+
description: Profile for Linux VMs in the container service cluster.
|
|
1489
|
+
ContainerServiceMasterProfile:
|
|
1490
|
+
title: ContainerServiceMasterProfile
|
|
1491
|
+
required:
|
|
1492
|
+
- dnsPrefix
|
|
1493
|
+
- vmSize
|
|
1494
|
+
type: object
|
|
1495
|
+
properties:
|
|
1496
|
+
count:
|
|
1497
|
+
$ref: '#/components/schemas/Count'
|
|
1498
|
+
dnsPrefix:
|
|
1499
|
+
type: string
|
|
1500
|
+
description: DNS prefix to be used to create the FQDN for the master pool.
|
|
1501
|
+
firstConsecutiveStaticIP:
|
|
1502
|
+
type: string
|
|
1503
|
+
description: FirstConsecutiveStaticIP used to specify the first static ip of masters.
|
|
1504
|
+
default: 10.240.255.5
|
|
1505
|
+
fqdn:
|
|
1506
|
+
type: string
|
|
1507
|
+
description: FQDN for the master pool.
|
|
1508
|
+
readOnly: true
|
|
1509
|
+
osDiskSizeGB:
|
|
1510
|
+
maximum: 1023
|
|
1511
|
+
minimum: 0
|
|
1512
|
+
type: integer
|
|
1513
|
+
description: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
1514
|
+
format: int32
|
|
1515
|
+
storageProfile:
|
|
1516
|
+
$ref: '#/components/schemas/ContainerServiceStorageProfile'
|
|
1517
|
+
vmSize:
|
|
1518
|
+
$ref: '#/components/schemas/ContainerServiceVMSize'
|
|
1519
|
+
vnetSubnetID:
|
|
1520
|
+
type: string
|
|
1521
|
+
description: VNet SubnetID specifies the VNet's subnet identifier.
|
|
1522
|
+
description: Profile for the container service master.
|
|
1523
|
+
ContainerServiceNetworkProfile:
|
|
1524
|
+
title: ContainerServiceNetworkProfile
|
|
1525
|
+
type: object
|
|
1526
|
+
properties:
|
|
1527
|
+
dnsServiceIP:
|
|
1528
|
+
pattern: ^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$
|
|
1529
|
+
type: string
|
|
1530
|
+
description: An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
|
|
1531
|
+
default: 10.0.0.10
|
|
1532
|
+
dockerBridgeCidr:
|
|
1533
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
1534
|
+
type: string
|
|
1535
|
+
description: A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
|
|
1536
|
+
default: 172.17.0.1/16
|
|
1537
|
+
loadBalancerProfile:
|
|
1538
|
+
$ref: '#/components/schemas/LoadBalancerProfile'
|
|
1539
|
+
loadBalancerSku:
|
|
1540
|
+
$ref: '#/components/schemas/LoadBalancerSku'
|
|
1541
|
+
networkPlugin:
|
|
1542
|
+
$ref: '#/components/schemas/NetworkPlugin'
|
|
1543
|
+
networkPolicy:
|
|
1544
|
+
$ref: '#/components/schemas/NetworkPolicy'
|
|
1545
|
+
outboundType:
|
|
1546
|
+
$ref: '#/components/schemas/OutboundType'
|
|
1547
|
+
podCidr:
|
|
1548
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
1549
|
+
type: string
|
|
1550
|
+
description: A CIDR notation IP range from which to assign pod IPs when kubenet is used.
|
|
1551
|
+
default: 10.244.0.0/16
|
|
1552
|
+
serviceCidr:
|
|
1553
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
1554
|
+
type: string
|
|
1555
|
+
description: A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
|
|
1556
|
+
default: 10.0.0.0/16
|
|
1557
|
+
description: Profile of network configuration.
|
|
1558
|
+
ContainerServiceSshConfiguration:
|
|
1559
|
+
title: ContainerServiceSshConfiguration
|
|
1560
|
+
required:
|
|
1561
|
+
- publicKeys
|
|
1562
|
+
type: object
|
|
1563
|
+
properties:
|
|
1564
|
+
publicKeys:
|
|
1565
|
+
type: array
|
|
1566
|
+
items:
|
|
1567
|
+
$ref: '#/components/schemas/ContainerServiceSshPublicKey'
|
|
1568
|
+
description: The list of SSH public keys used to authenticate with Linux-based VMs. Only expect one key specified.
|
|
1569
|
+
description: SSH configuration for Linux-based VMs running on Azure.
|
|
1570
|
+
ContainerServiceSshPublicKey:
|
|
1571
|
+
title: ContainerServiceSshPublicKey
|
|
1572
|
+
required:
|
|
1573
|
+
- keyData
|
|
1574
|
+
type: object
|
|
1575
|
+
properties:
|
|
1576
|
+
keyData:
|
|
1577
|
+
type: string
|
|
1578
|
+
description: Certificate public key used to authenticate with VMs through SSH. The certificate must be in PEM format with or without headers.
|
|
1579
|
+
description: Contains information about SSH certificate public key data.
|
|
1580
|
+
ContainerServiceStorageProfile:
|
|
1581
|
+
title: ContainerServiceStorageProfile
|
|
1582
|
+
enum:
|
|
1583
|
+
- StorageAccount
|
|
1584
|
+
- ManagedDisks
|
|
1585
|
+
type: string
|
|
1586
|
+
description: Storage profile specifies what kind of storage used. Choose from StorageAccount and ManagedDisks. Leave it empty, we will choose for you based on the orchestrator choice.
|
|
1587
|
+
ContainerServiceVMDiagnostics:
|
|
1588
|
+
title: ContainerServiceVMDiagnostics
|
|
1589
|
+
required:
|
|
1590
|
+
- enabled
|
|
1591
|
+
type: object
|
|
1592
|
+
properties:
|
|
1593
|
+
enabled:
|
|
1594
|
+
type: boolean
|
|
1595
|
+
description: Whether the VM diagnostic agent is provisioned on the VM.
|
|
1596
|
+
storageUri:
|
|
1597
|
+
type: string
|
|
1598
|
+
description: The URI of the storage account where diagnostics are stored.
|
|
1599
|
+
readOnly: true
|
|
1600
|
+
description: Profile for diagnostics on the container service VMs.
|
|
1601
|
+
ContainerServiceVMSize:
|
|
1602
|
+
title: ContainerServiceVMSize
|
|
1603
|
+
enum:
|
|
1604
|
+
- Standard_A1
|
|
1605
|
+
- Standard_A10
|
|
1606
|
+
- Standard_A11
|
|
1607
|
+
- Standard_A1_v2
|
|
1608
|
+
- Standard_A2
|
|
1609
|
+
- Standard_A2_v2
|
|
1610
|
+
- Standard_A2m_v2
|
|
1611
|
+
- Standard_A3
|
|
1612
|
+
- Standard_A4
|
|
1613
|
+
- Standard_A4_v2
|
|
1614
|
+
- Standard_A4m_v2
|
|
1615
|
+
- Standard_A5
|
|
1616
|
+
- Standard_A6
|
|
1617
|
+
- Standard_A7
|
|
1618
|
+
- Standard_A8
|
|
1619
|
+
- Standard_A8_v2
|
|
1620
|
+
- Standard_A8m_v2
|
|
1621
|
+
- Standard_A9
|
|
1622
|
+
- Standard_B2ms
|
|
1623
|
+
- Standard_B2s
|
|
1624
|
+
- Standard_B4ms
|
|
1625
|
+
- Standard_B8ms
|
|
1626
|
+
- Standard_D1
|
|
1627
|
+
- Standard_D11
|
|
1628
|
+
- Standard_D11_v2
|
|
1629
|
+
- Standard_D11_v2_Promo
|
|
1630
|
+
- Standard_D12
|
|
1631
|
+
- Standard_D12_v2
|
|
1632
|
+
- Standard_D12_v2_Promo
|
|
1633
|
+
- Standard_D13
|
|
1634
|
+
- Standard_D13_v2
|
|
1635
|
+
- Standard_D13_v2_Promo
|
|
1636
|
+
- Standard_D14
|
|
1637
|
+
- Standard_D14_v2
|
|
1638
|
+
- Standard_D14_v2_Promo
|
|
1639
|
+
- Standard_D15_v2
|
|
1640
|
+
- Standard_D16_v3
|
|
1641
|
+
- Standard_D16s_v3
|
|
1642
|
+
- Standard_D1_v2
|
|
1643
|
+
- Standard_D2
|
|
1644
|
+
- Standard_D2_v2
|
|
1645
|
+
- Standard_D2_v2_Promo
|
|
1646
|
+
- Standard_D2_v3
|
|
1647
|
+
- Standard_D2s_v3
|
|
1648
|
+
- Standard_D3
|
|
1649
|
+
- Standard_D32_v3
|
|
1650
|
+
- Standard_D32s_v3
|
|
1651
|
+
- Standard_D3_v2
|
|
1652
|
+
- Standard_D3_v2_Promo
|
|
1653
|
+
- Standard_D4
|
|
1654
|
+
- Standard_D4_v2
|
|
1655
|
+
- Standard_D4_v2_Promo
|
|
1656
|
+
- Standard_D4_v3
|
|
1657
|
+
- Standard_D4s_v3
|
|
1658
|
+
- Standard_D5_v2
|
|
1659
|
+
- Standard_D5_v2_Promo
|
|
1660
|
+
- Standard_D64_v3
|
|
1661
|
+
- Standard_D64s_v3
|
|
1662
|
+
- Standard_D8_v3
|
|
1663
|
+
- Standard_D8s_v3
|
|
1664
|
+
- Standard_DS1
|
|
1665
|
+
- Standard_DS11
|
|
1666
|
+
- Standard_DS11_v2
|
|
1667
|
+
- Standard_DS11_v2_Promo
|
|
1668
|
+
- Standard_DS12
|
|
1669
|
+
- Standard_DS12_v2
|
|
1670
|
+
- Standard_DS12_v2_Promo
|
|
1671
|
+
- Standard_DS13
|
|
1672
|
+
- Standard_DS13-2_v2
|
|
1673
|
+
- Standard_DS13-4_v2
|
|
1674
|
+
- Standard_DS13_v2
|
|
1675
|
+
- Standard_DS13_v2_Promo
|
|
1676
|
+
- Standard_DS14
|
|
1677
|
+
- Standard_DS14-4_v2
|
|
1678
|
+
- Standard_DS14-8_v2
|
|
1679
|
+
- Standard_DS14_v2
|
|
1680
|
+
- Standard_DS14_v2_Promo
|
|
1681
|
+
- Standard_DS15_v2
|
|
1682
|
+
- Standard_DS1_v2
|
|
1683
|
+
- Standard_DS2
|
|
1684
|
+
- Standard_DS2_v2
|
|
1685
|
+
- Standard_DS2_v2_Promo
|
|
1686
|
+
- Standard_DS3
|
|
1687
|
+
- Standard_DS3_v2
|
|
1688
|
+
- Standard_DS3_v2_Promo
|
|
1689
|
+
- Standard_DS4
|
|
1690
|
+
- Standard_DS4_v2
|
|
1691
|
+
- Standard_DS4_v2_Promo
|
|
1692
|
+
- Standard_DS5_v2
|
|
1693
|
+
- Standard_DS5_v2_Promo
|
|
1694
|
+
- Standard_E16_v3
|
|
1695
|
+
- Standard_E16s_v3
|
|
1696
|
+
- Standard_E2_v3
|
|
1697
|
+
- Standard_E2s_v3
|
|
1698
|
+
- Standard_E32-16s_v3
|
|
1699
|
+
- Standard_E32-8s_v3
|
|
1700
|
+
- Standard_E32_v3
|
|
1701
|
+
- Standard_E32s_v3
|
|
1702
|
+
- Standard_E4_v3
|
|
1703
|
+
- Standard_E4s_v3
|
|
1704
|
+
- Standard_E64-16s_v3
|
|
1705
|
+
- Standard_E64-32s_v3
|
|
1706
|
+
- Standard_E64_v3
|
|
1707
|
+
- Standard_E64s_v3
|
|
1708
|
+
- Standard_E8_v3
|
|
1709
|
+
- Standard_E8s_v3
|
|
1710
|
+
- Standard_F1
|
|
1711
|
+
- Standard_F16
|
|
1712
|
+
- Standard_F16s
|
|
1713
|
+
- Standard_F16s_v2
|
|
1714
|
+
- Standard_F1s
|
|
1715
|
+
- Standard_F2
|
|
1716
|
+
- Standard_F2s
|
|
1717
|
+
- Standard_F2s_v2
|
|
1718
|
+
- Standard_F32s_v2
|
|
1719
|
+
- Standard_F4
|
|
1720
|
+
- Standard_F4s
|
|
1721
|
+
- Standard_F4s_v2
|
|
1722
|
+
- Standard_F64s_v2
|
|
1723
|
+
- Standard_F72s_v2
|
|
1724
|
+
- Standard_F8
|
|
1725
|
+
- Standard_F8s
|
|
1726
|
+
- Standard_F8s_v2
|
|
1727
|
+
- Standard_G1
|
|
1728
|
+
- Standard_G2
|
|
1729
|
+
- Standard_G3
|
|
1730
|
+
- Standard_G4
|
|
1731
|
+
- Standard_G5
|
|
1732
|
+
- Standard_GS1
|
|
1733
|
+
- Standard_GS2
|
|
1734
|
+
- Standard_GS3
|
|
1735
|
+
- Standard_GS4
|
|
1736
|
+
- Standard_GS4-4
|
|
1737
|
+
- Standard_GS4-8
|
|
1738
|
+
- Standard_GS5
|
|
1739
|
+
- Standard_GS5-16
|
|
1740
|
+
- Standard_GS5-8
|
|
1741
|
+
- Standard_H16
|
|
1742
|
+
- Standard_H16m
|
|
1743
|
+
- Standard_H16mr
|
|
1744
|
+
- Standard_H16r
|
|
1745
|
+
- Standard_H8
|
|
1746
|
+
- Standard_H8m
|
|
1747
|
+
- Standard_L16s
|
|
1748
|
+
- Standard_L32s
|
|
1749
|
+
- Standard_L4s
|
|
1750
|
+
- Standard_L8s
|
|
1751
|
+
- Standard_M128-32ms
|
|
1752
|
+
- Standard_M128-64ms
|
|
1753
|
+
- Standard_M128ms
|
|
1754
|
+
- Standard_M128s
|
|
1755
|
+
- Standard_M64-16ms
|
|
1756
|
+
- Standard_M64-32ms
|
|
1757
|
+
- Standard_M64ms
|
|
1758
|
+
- Standard_M64s
|
|
1759
|
+
- Standard_NC12
|
|
1760
|
+
- Standard_NC12s_v2
|
|
1761
|
+
- Standard_NC12s_v3
|
|
1762
|
+
- Standard_NC24
|
|
1763
|
+
- Standard_NC24r
|
|
1764
|
+
- Standard_NC24rs_v2
|
|
1765
|
+
- Standard_NC24rs_v3
|
|
1766
|
+
- Standard_NC24s_v2
|
|
1767
|
+
- Standard_NC24s_v3
|
|
1768
|
+
- Standard_NC6
|
|
1769
|
+
- Standard_NC6s_v2
|
|
1770
|
+
- Standard_NC6s_v3
|
|
1771
|
+
- Standard_ND12s
|
|
1772
|
+
- Standard_ND24rs
|
|
1773
|
+
- Standard_ND24s
|
|
1774
|
+
- Standard_ND6s
|
|
1775
|
+
- Standard_NV12
|
|
1776
|
+
- Standard_NV24
|
|
1777
|
+
- Standard_NV6
|
|
1778
|
+
type: string
|
|
1779
|
+
description: Size of agent VMs.
|
|
1780
|
+
CredentialResult:
|
|
1781
|
+
title: CredentialResult
|
|
1782
|
+
type: object
|
|
1783
|
+
properties:
|
|
1784
|
+
name:
|
|
1785
|
+
type: string
|
|
1786
|
+
description: The name of the credential.
|
|
1787
|
+
readOnly: true
|
|
1788
|
+
value:
|
|
1789
|
+
type: string
|
|
1790
|
+
description: Base64-encoded Kubernetes configuration file.
|
|
1791
|
+
readOnly: true
|
|
1792
|
+
description: The credential result response.
|
|
1793
|
+
CredentialResults:
|
|
1794
|
+
title: CredentialResults
|
|
1795
|
+
type: object
|
|
1796
|
+
properties:
|
|
1797
|
+
kubeconfigs:
|
|
1798
|
+
type: array
|
|
1799
|
+
items:
|
|
1800
|
+
$ref: '#/components/schemas/CredentialResult'
|
|
1801
|
+
description: Base64-encoded Kubernetes configuration file.
|
|
1802
|
+
readOnly: true
|
|
1803
|
+
description: The list of credential result response.
|
|
1804
|
+
ManagedCluster:
|
|
1805
|
+
title: ManagedCluster
|
|
1806
|
+
required:
|
|
1807
|
+
- location
|
|
1808
|
+
type: object
|
|
1809
|
+
properties:
|
|
1810
|
+
id:
|
|
1811
|
+
type: string
|
|
1812
|
+
description: Resource Id
|
|
1813
|
+
readOnly: true
|
|
1814
|
+
location:
|
|
1815
|
+
type: string
|
|
1816
|
+
description: Resource location
|
|
1817
|
+
name:
|
|
1818
|
+
type: string
|
|
1819
|
+
description: Resource name
|
|
1820
|
+
readOnly: true
|
|
1821
|
+
tags:
|
|
1822
|
+
type: object
|
|
1823
|
+
additionalProperties:
|
|
1824
|
+
type: string
|
|
1825
|
+
description: Resource tags
|
|
1826
|
+
type:
|
|
1827
|
+
type: string
|
|
1828
|
+
description: Resource type
|
|
1829
|
+
readOnly: true
|
|
1830
|
+
identity:
|
|
1831
|
+
$ref: '#/components/schemas/Identity'
|
|
1832
|
+
properties:
|
|
1833
|
+
$ref: '#/components/schemas/Properties3'
|
|
1834
|
+
description: Managed cluster.
|
|
1835
|
+
ManagedClusterAADProfile:
|
|
1836
|
+
title: ManagedClusterAADProfile
|
|
1837
|
+
required:
|
|
1838
|
+
- clientAppID
|
|
1839
|
+
- serverAppID
|
|
1840
|
+
type: object
|
|
1841
|
+
properties:
|
|
1842
|
+
clientAppID:
|
|
1843
|
+
type: string
|
|
1844
|
+
description: The client AAD application ID.
|
|
1845
|
+
serverAppID:
|
|
1846
|
+
type: string
|
|
1847
|
+
description: The server AAD application ID.
|
|
1848
|
+
serverAppSecret:
|
|
1849
|
+
type: string
|
|
1850
|
+
description: The server AAD application secret.
|
|
1851
|
+
tenantID:
|
|
1852
|
+
type: string
|
|
1853
|
+
description: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
|
|
1854
|
+
description: AADProfile specifies attributes for Azure Active Directory integration.
|
|
1855
|
+
ManagedClusterAPIServerAccessProfile:
|
|
1856
|
+
title: ManagedClusterAPIServerAccessProfile
|
|
1857
|
+
type: object
|
|
1858
|
+
properties:
|
|
1859
|
+
authorizedIPRanges:
|
|
1860
|
+
type: array
|
|
1861
|
+
items:
|
|
1862
|
+
type: string
|
|
1863
|
+
description: Authorized IP Ranges to kubernetes API server.
|
|
1864
|
+
enablePrivateCluster:
|
|
1865
|
+
type: boolean
|
|
1866
|
+
description: Whether to create the cluster as a private cluster or not.
|
|
1867
|
+
description: Access profile for managed cluster API server.
|
|
1868
|
+
ManagedClusterAccessProfile:
|
|
1869
|
+
title: ManagedClusterAccessProfile
|
|
1870
|
+
required:
|
|
1871
|
+
- location
|
|
1872
|
+
type: object
|
|
1873
|
+
properties:
|
|
1874
|
+
id:
|
|
1875
|
+
type: string
|
|
1876
|
+
description: Resource Id
|
|
1877
|
+
readOnly: true
|
|
1878
|
+
location:
|
|
1879
|
+
type: string
|
|
1880
|
+
description: Resource location
|
|
1881
|
+
name:
|
|
1882
|
+
type: string
|
|
1883
|
+
description: Resource name
|
|
1884
|
+
readOnly: true
|
|
1885
|
+
tags:
|
|
1886
|
+
type: object
|
|
1887
|
+
additionalProperties:
|
|
1888
|
+
type: string
|
|
1889
|
+
description: Resource tags
|
|
1890
|
+
type:
|
|
1891
|
+
type: string
|
|
1892
|
+
description: Resource type
|
|
1893
|
+
readOnly: true
|
|
1894
|
+
properties:
|
|
1895
|
+
$ref: '#/components/schemas/Properties4'
|
|
1896
|
+
description: Managed cluster Access Profile.
|
|
1897
|
+
ManagedClusterAddonProfile:
|
|
1898
|
+
title: ManagedClusterAddonProfile
|
|
1899
|
+
required:
|
|
1900
|
+
- enabled
|
|
1901
|
+
type: object
|
|
1902
|
+
properties:
|
|
1903
|
+
config:
|
|
1904
|
+
type: object
|
|
1905
|
+
additionalProperties:
|
|
1906
|
+
type: string
|
|
1907
|
+
description: Key-value pairs for configuring an add-on.
|
|
1908
|
+
enabled:
|
|
1909
|
+
type: boolean
|
|
1910
|
+
description: Whether the add-on is enabled or not.
|
|
1911
|
+
identity:
|
|
1912
|
+
allOf:
|
|
1913
|
+
- $ref: '#/components/schemas/UserAssignedIdentity'
|
|
1914
|
+
- {}
|
|
1915
|
+
readOnly: true
|
|
1916
|
+
description: A Kubernetes add-on profile for a managed cluster.
|
|
1917
|
+
ManagedClusterAgentPoolProfile:
|
|
1918
|
+
title: ManagedClusterAgentPoolProfile
|
|
1919
|
+
required:
|
|
1920
|
+
- count
|
|
1921
|
+
- vmSize
|
|
1922
|
+
- name
|
|
1923
|
+
type: object
|
|
1924
|
+
properties:
|
|
1925
|
+
availabilityZones:
|
|
1926
|
+
type: array
|
|
1927
|
+
items:
|
|
1928
|
+
type: string
|
|
1929
|
+
description: Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
|
|
1930
|
+
count:
|
|
1931
|
+
maximum: 100
|
|
1932
|
+
minimum: 1
|
|
1933
|
+
type: integer
|
|
1934
|
+
description: Number of agents (VMs) to host docker containers. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.
|
|
1935
|
+
format: int32
|
|
1936
|
+
enableAutoScaling:
|
|
1937
|
+
type: boolean
|
|
1938
|
+
description: Whether to enable auto-scaler
|
|
1939
|
+
enableNodePublicIP:
|
|
1940
|
+
type: boolean
|
|
1941
|
+
description: Enable public IP for nodes
|
|
1942
|
+
maxCount:
|
|
1943
|
+
type: integer
|
|
1944
|
+
description: Maximum number of nodes for auto-scaling
|
|
1945
|
+
format: int32
|
|
1946
|
+
maxPods:
|
|
1947
|
+
type: integer
|
|
1948
|
+
description: Maximum number of pods that can run on a node.
|
|
1949
|
+
format: int32
|
|
1950
|
+
minCount:
|
|
1951
|
+
type: integer
|
|
1952
|
+
description: Minimum number of nodes for auto-scaling
|
|
1953
|
+
format: int32
|
|
1954
|
+
nodeLabels:
|
|
1955
|
+
type: object
|
|
1956
|
+
additionalProperties:
|
|
1957
|
+
type: string
|
|
1958
|
+
description: Agent pool node labels to be persisted across all nodes in agent pool.
|
|
1959
|
+
nodeTaints:
|
|
1960
|
+
type: array
|
|
1961
|
+
items:
|
|
1962
|
+
type: string
|
|
1963
|
+
description: Taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
1964
|
+
orchestratorVersion:
|
|
1965
|
+
type: string
|
|
1966
|
+
description: Version of orchestrator specified when creating the managed cluster.
|
|
1967
|
+
osDiskSizeGB:
|
|
1968
|
+
maximum: 1023
|
|
1969
|
+
minimum: 0
|
|
1970
|
+
type: integer
|
|
1971
|
+
description: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
1972
|
+
format: int32
|
|
1973
|
+
osType:
|
|
1974
|
+
$ref: '#/components/schemas/OSType'
|
|
1975
|
+
provisioningState:
|
|
1976
|
+
type: string
|
|
1977
|
+
description: The current deployment or provisioning state, which only appears in the response.
|
|
1978
|
+
readOnly: true
|
|
1979
|
+
scaleSetEvictionPolicy:
|
|
1980
|
+
$ref: '#/components/schemas/ScaleSetEvictionPolicy'
|
|
1981
|
+
scaleSetPriority:
|
|
1982
|
+
$ref: '#/components/schemas/ScaleSetPriority'
|
|
1983
|
+
tags:
|
|
1984
|
+
type: object
|
|
1985
|
+
additionalProperties:
|
|
1986
|
+
type: string
|
|
1987
|
+
description: Agent pool tags to be persisted on the agent pool virtual machine scale set.
|
|
1988
|
+
type:
|
|
1989
|
+
$ref: '#/components/schemas/AgentPoolType'
|
|
1990
|
+
vmSize:
|
|
1991
|
+
$ref: '#/components/schemas/ContainerServiceVMSize'
|
|
1992
|
+
vnetSubnetID:
|
|
1993
|
+
type: string
|
|
1994
|
+
description: VNet SubnetID specifies the VNet's subnet identifier.
|
|
1995
|
+
name:
|
|
1996
|
+
pattern: ^[a-z][a-z0-9]{0,11}$
|
|
1997
|
+
type: string
|
|
1998
|
+
description: Unique name of the agent pool profile in the context of the subscription and resource group.
|
|
1999
|
+
description: Profile for the container service agent pool.
|
|
2000
|
+
ManagedClusterAgentPoolProfileProperties:
|
|
2001
|
+
title: ManagedClusterAgentPoolProfileProperties
|
|
2002
|
+
required:
|
|
2003
|
+
- count
|
|
2004
|
+
- vmSize
|
|
2005
|
+
type: object
|
|
2006
|
+
properties:
|
|
2007
|
+
availabilityZones:
|
|
2008
|
+
type: array
|
|
2009
|
+
items:
|
|
2010
|
+
type: string
|
|
2011
|
+
description: Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
|
|
2012
|
+
count:
|
|
2013
|
+
maximum: 100
|
|
2014
|
+
minimum: 1
|
|
2015
|
+
type: integer
|
|
2016
|
+
description: Number of agents (VMs) to host docker containers. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.
|
|
2017
|
+
format: int32
|
|
2018
|
+
enableAutoScaling:
|
|
2019
|
+
type: boolean
|
|
2020
|
+
description: Whether to enable auto-scaler
|
|
2021
|
+
enableNodePublicIP:
|
|
2022
|
+
type: boolean
|
|
2023
|
+
description: Enable public IP for nodes
|
|
2024
|
+
maxCount:
|
|
2025
|
+
type: integer
|
|
2026
|
+
description: Maximum number of nodes for auto-scaling
|
|
2027
|
+
format: int32
|
|
2028
|
+
maxPods:
|
|
2029
|
+
type: integer
|
|
2030
|
+
description: Maximum number of pods that can run on a node.
|
|
2031
|
+
format: int32
|
|
2032
|
+
minCount:
|
|
2033
|
+
type: integer
|
|
2034
|
+
description: Minimum number of nodes for auto-scaling
|
|
2035
|
+
format: int32
|
|
2036
|
+
nodeLabels:
|
|
2037
|
+
type: object
|
|
2038
|
+
additionalProperties:
|
|
2039
|
+
type: string
|
|
2040
|
+
description: Agent pool node labels to be persisted across all nodes in agent pool.
|
|
2041
|
+
nodeTaints:
|
|
2042
|
+
type: array
|
|
2043
|
+
items:
|
|
2044
|
+
type: string
|
|
2045
|
+
description: Taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
2046
|
+
orchestratorVersion:
|
|
2047
|
+
type: string
|
|
2048
|
+
description: Version of orchestrator specified when creating the managed cluster.
|
|
2049
|
+
osDiskSizeGB:
|
|
2050
|
+
maximum: 1023
|
|
2051
|
+
minimum: 0
|
|
2052
|
+
type: integer
|
|
2053
|
+
description: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
2054
|
+
format: int32
|
|
2055
|
+
osType:
|
|
2056
|
+
$ref: '#/components/schemas/OSType'
|
|
2057
|
+
provisioningState:
|
|
2058
|
+
type: string
|
|
2059
|
+
description: The current deployment or provisioning state, which only appears in the response.
|
|
2060
|
+
readOnly: true
|
|
2061
|
+
scaleSetEvictionPolicy:
|
|
2062
|
+
$ref: '#/components/schemas/ScaleSetEvictionPolicy'
|
|
2063
|
+
scaleSetPriority:
|
|
2064
|
+
$ref: '#/components/schemas/ScaleSetPriority'
|
|
2065
|
+
tags:
|
|
2066
|
+
type: object
|
|
2067
|
+
additionalProperties:
|
|
2068
|
+
type: string
|
|
2069
|
+
description: Agent pool tags to be persisted on the agent pool virtual machine scale set.
|
|
2070
|
+
type:
|
|
2071
|
+
$ref: '#/components/schemas/AgentPoolType'
|
|
2072
|
+
vmSize:
|
|
2073
|
+
$ref: '#/components/schemas/ContainerServiceVMSize'
|
|
2074
|
+
vnetSubnetID:
|
|
2075
|
+
type: string
|
|
2076
|
+
description: VNet SubnetID specifies the VNet's subnet identifier.
|
|
2077
|
+
description: Properties for the container service agent pool profile.
|
|
2078
|
+
ManagedClusterIdentity:
|
|
2079
|
+
title: ManagedClusterIdentity
|
|
2080
|
+
type: object
|
|
2081
|
+
properties:
|
|
2082
|
+
principalId:
|
|
2083
|
+
type: string
|
|
2084
|
+
description: The principal id of the system assigned identity which is used by master components.
|
|
2085
|
+
readOnly: true
|
|
2086
|
+
tenantId:
|
|
2087
|
+
type: string
|
|
2088
|
+
description: The tenant id of the system assigned identity which is used by master components.
|
|
2089
|
+
readOnly: true
|
|
2090
|
+
type:
|
|
2091
|
+
$ref: '#/components/schemas/Type'
|
|
2092
|
+
description: Identity for the managed cluster.
|
|
2093
|
+
ManagedClusterListResult:
|
|
2094
|
+
title: ManagedClusterListResult
|
|
2095
|
+
type: object
|
|
2096
|
+
properties:
|
|
2097
|
+
nextLink:
|
|
2098
|
+
type: string
|
|
2099
|
+
description: The URL to get the next set of managed cluster results.
|
|
2100
|
+
readOnly: true
|
|
2101
|
+
value:
|
|
2102
|
+
type: array
|
|
2103
|
+
items:
|
|
2104
|
+
$ref: '#/components/schemas/ManagedCluster'
|
|
2105
|
+
description: The list of managed clusters.
|
|
2106
|
+
description: The response from the List Managed Clusters operation.
|
|
2107
|
+
ManagedClusterLoadBalancerProfile:
|
|
2108
|
+
title: ManagedClusterLoadBalancerProfile
|
|
2109
|
+
type: object
|
|
2110
|
+
properties:
|
|
2111
|
+
allocatedOutboundPorts:
|
|
2112
|
+
maximum: 64000
|
|
2113
|
+
minimum: 0
|
|
2114
|
+
type: integer
|
|
2115
|
+
description: Desired number of allocated SNAT ports per VM. Allowed values must be in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports.
|
|
2116
|
+
format: int32
|
|
2117
|
+
default: 0
|
|
2118
|
+
effectiveOutboundIPs:
|
|
2119
|
+
type: array
|
|
2120
|
+
items:
|
|
2121
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2122
|
+
description: The effective outbound IP resources of the cluster load balancer.
|
|
2123
|
+
idleTimeoutInMinutes:
|
|
2124
|
+
maximum: 120
|
|
2125
|
+
minimum: 4
|
|
2126
|
+
type: integer
|
|
2127
|
+
description: Desired outbound flow idle timeout in minutes. Allowed values must be in the range of 4 to 120 (inclusive). The default value is 30 minutes.
|
|
2128
|
+
format: int32
|
|
2129
|
+
default: 30
|
|
2130
|
+
managedOutboundIPs:
|
|
2131
|
+
$ref: '#/components/schemas/ManagedOutboundIPs2'
|
|
2132
|
+
outboundIPPrefixes:
|
|
2133
|
+
$ref: '#/components/schemas/OutboundIPPrefixes2'
|
|
2134
|
+
outboundIPs:
|
|
2135
|
+
$ref: '#/components/schemas/OutboundIPs2'
|
|
2136
|
+
description: Profile of the managed cluster load balancer.
|
|
2137
|
+
ManagedClusterPoolUpgradeProfile:
|
|
2138
|
+
title: ManagedClusterPoolUpgradeProfile
|
|
2139
|
+
required:
|
|
2140
|
+
- kubernetesVersion
|
|
2141
|
+
- osType
|
|
2142
|
+
type: object
|
|
2143
|
+
properties:
|
|
2144
|
+
kubernetesVersion:
|
|
2145
|
+
type: string
|
|
2146
|
+
description: Kubernetes version (major, minor, patch).
|
|
2147
|
+
name:
|
|
2148
|
+
type: string
|
|
2149
|
+
description: Pool name.
|
|
2150
|
+
osType:
|
|
2151
|
+
$ref: '#/components/schemas/OSType'
|
|
2152
|
+
upgrades:
|
|
2153
|
+
type: array
|
|
2154
|
+
items:
|
|
2155
|
+
$ref: '#/components/schemas/Upgrade'
|
|
2156
|
+
description: List of orchestrator types and versions available for upgrade.
|
|
2157
|
+
description: The list of available upgrade versions.
|
|
2158
|
+
ManagedClusterProperties:
|
|
2159
|
+
title: ManagedClusterProperties
|
|
2160
|
+
type: object
|
|
2161
|
+
properties:
|
|
2162
|
+
aadProfile:
|
|
2163
|
+
$ref: '#/components/schemas/AadProfile'
|
|
2164
|
+
addonProfiles:
|
|
2165
|
+
type: object
|
|
2166
|
+
additionalProperties:
|
|
2167
|
+
$ref: '#/components/schemas/ManagedClusterAddonProfile'
|
|
2168
|
+
description: Profile of managed cluster add-on.
|
|
2169
|
+
agentPoolProfiles:
|
|
2170
|
+
type: array
|
|
2171
|
+
items:
|
|
2172
|
+
$ref: '#/components/schemas/ManagedClusterAgentPoolProfile'
|
|
2173
|
+
description: Properties of the agent pool.
|
|
2174
|
+
apiServerAccessProfile:
|
|
2175
|
+
$ref: '#/components/schemas/ApiServerAccessProfile'
|
|
2176
|
+
diskEncryptionSetID:
|
|
2177
|
+
type: string
|
|
2178
|
+
description: ResourceId of the disk encryption set to use for enabling encryption at rest.
|
|
2179
|
+
dnsPrefix:
|
|
2180
|
+
type: string
|
|
2181
|
+
description: DNS prefix specified when creating the managed cluster.
|
|
2182
|
+
enablePodSecurityPolicy:
|
|
2183
|
+
type: boolean
|
|
2184
|
+
description: (PREVIEW) Whether to enable Kubernetes Pod security policy.
|
|
2185
|
+
enableRBAC:
|
|
2186
|
+
type: boolean
|
|
2187
|
+
description: Whether to enable Kubernetes Role-Based Access Control.
|
|
2188
|
+
fqdn:
|
|
2189
|
+
type: string
|
|
2190
|
+
description: FQDN for the master pool.
|
|
2191
|
+
readOnly: true
|
|
2192
|
+
identityProfile:
|
|
2193
|
+
type: object
|
|
2194
|
+
additionalProperties:
|
|
2195
|
+
$ref: '#/components/schemas/UserAssignedIdentity'
|
|
2196
|
+
description: Identities associated with the cluster.
|
|
2197
|
+
kubernetesVersion:
|
|
2198
|
+
type: string
|
|
2199
|
+
description: Version of Kubernetes specified when creating the managed cluster.
|
|
2200
|
+
linuxProfile:
|
|
2201
|
+
$ref: '#/components/schemas/LinuxProfile'
|
|
2202
|
+
maxAgentPools:
|
|
2203
|
+
type: integer
|
|
2204
|
+
description: The max number of agent pools for the managed cluster.
|
|
2205
|
+
format: int32
|
|
2206
|
+
readOnly: true
|
|
2207
|
+
networkProfile:
|
|
2208
|
+
$ref: '#/components/schemas/NetworkProfile'
|
|
2209
|
+
nodeResourceGroup:
|
|
2210
|
+
type: string
|
|
2211
|
+
description: Name of the resource group containing agent pool nodes.
|
|
2212
|
+
privateFQDN:
|
|
2213
|
+
type: string
|
|
2214
|
+
description: FQDN of private cluster.
|
|
2215
|
+
readOnly: true
|
|
2216
|
+
provisioningState:
|
|
2217
|
+
type: string
|
|
2218
|
+
description: The current deployment or provisioning state, which only appears in the response.
|
|
2219
|
+
readOnly: true
|
|
2220
|
+
servicePrincipalProfile:
|
|
2221
|
+
$ref: '#/components/schemas/ServicePrincipalProfile'
|
|
2222
|
+
windowsProfile:
|
|
2223
|
+
$ref: '#/components/schemas/WindowsProfile'
|
|
2224
|
+
description: Properties of the managed cluster.
|
|
2225
|
+
ManagedClusterServicePrincipalProfile:
|
|
2226
|
+
title: ManagedClusterServicePrincipalProfile
|
|
2227
|
+
required:
|
|
2228
|
+
- clientId
|
|
2229
|
+
type: object
|
|
2230
|
+
properties:
|
|
2231
|
+
clientId:
|
|
2232
|
+
type: string
|
|
2233
|
+
description: The ID for the service principal.
|
|
2234
|
+
secret:
|
|
2235
|
+
type: string
|
|
2236
|
+
description: The secret password associated with the service principal in plain text.
|
|
2237
|
+
description: Information about a service principal identity for the cluster to use for manipulating Azure APIs.
|
|
2238
|
+
ManagedClusterUpgradeProfile:
|
|
2239
|
+
title: ManagedClusterUpgradeProfile
|
|
2240
|
+
required:
|
|
2241
|
+
- properties
|
|
2242
|
+
type: object
|
|
2243
|
+
properties:
|
|
2244
|
+
id:
|
|
2245
|
+
type: string
|
|
2246
|
+
description: Id of upgrade profile.
|
|
2247
|
+
readOnly: true
|
|
2248
|
+
name:
|
|
2249
|
+
type: string
|
|
2250
|
+
description: Name of upgrade profile.
|
|
2251
|
+
readOnly: true
|
|
2252
|
+
properties:
|
|
2253
|
+
$ref: '#/components/schemas/Properties5'
|
|
2254
|
+
type:
|
|
2255
|
+
type: string
|
|
2256
|
+
description: Type of upgrade profile.
|
|
2257
|
+
readOnly: true
|
|
2258
|
+
description: The list of available upgrades for compute pools.
|
|
2259
|
+
ManagedClusterUpgradeProfileProperties:
|
|
2260
|
+
title: ManagedClusterUpgradeProfileProperties
|
|
2261
|
+
required:
|
|
2262
|
+
- agentPoolProfiles
|
|
2263
|
+
- controlPlaneProfile
|
|
2264
|
+
type: object
|
|
2265
|
+
properties:
|
|
2266
|
+
agentPoolProfiles:
|
|
2267
|
+
type: array
|
|
2268
|
+
items:
|
|
2269
|
+
$ref: '#/components/schemas/ManagedClusterPoolUpgradeProfile'
|
|
2270
|
+
description: The list of available upgrade versions for agent pools.
|
|
2271
|
+
controlPlaneProfile:
|
|
2272
|
+
$ref: '#/components/schemas/ControlPlaneProfile'
|
|
2273
|
+
description: Control plane and agent pool upgrade profiles.
|
|
2274
|
+
ManagedClusterWindowsProfile:
|
|
2275
|
+
title: ManagedClusterWindowsProfile
|
|
2276
|
+
required:
|
|
2277
|
+
- adminUsername
|
|
2278
|
+
type: object
|
|
2279
|
+
properties:
|
|
2280
|
+
adminPassword:
|
|
2281
|
+
pattern: ^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\^&\*\(\)])[a-zA-Z\d!@#$%\^&\*\(\)]{12,123}$
|
|
2282
|
+
type: string
|
|
2283
|
+
description: The administrator password to use for Windows VMs.
|
|
2284
|
+
adminUsername:
|
|
2285
|
+
pattern: ^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$
|
|
2286
|
+
type: string
|
|
2287
|
+
description: The administrator username to use for Windows VMs.
|
|
2288
|
+
description: Profile for Windows VMs in the container service cluster.
|
|
2289
|
+
OSType:
|
|
2290
|
+
title: OSType
|
|
2291
|
+
enum:
|
|
2292
|
+
- Linux
|
|
2293
|
+
- Windows
|
|
2294
|
+
type: string
|
|
2295
|
+
description: OsType to be used to specify os type. Choose from Linux and Windows. Default to Linux.
|
|
2296
|
+
OperationListResult:
|
|
2297
|
+
title: OperationListResult
|
|
2298
|
+
type: object
|
|
2299
|
+
properties:
|
|
2300
|
+
value:
|
|
2301
|
+
type: array
|
|
2302
|
+
items:
|
|
2303
|
+
$ref: '#/components/schemas/OperationValue'
|
|
2304
|
+
description: The list of compute operations
|
|
2305
|
+
readOnly: true
|
|
2306
|
+
description: The List Compute Operation operation response.
|
|
2307
|
+
OperationValue:
|
|
2308
|
+
title: OperationValue
|
|
2309
|
+
type: object
|
|
2310
|
+
properties:
|
|
2311
|
+
display:
|
|
2312
|
+
$ref: '#/components/schemas/Display'
|
|
2313
|
+
name:
|
|
2314
|
+
type: string
|
|
2315
|
+
description: The name of the compute operation.
|
|
2316
|
+
readOnly: true
|
|
2317
|
+
origin:
|
|
2318
|
+
type: string
|
|
2319
|
+
description: The origin of the compute operation.
|
|
2320
|
+
readOnly: true
|
|
2321
|
+
description: Describes the properties of a Compute Operation value.
|
|
2322
|
+
OperationValueDisplay:
|
|
2323
|
+
title: OperationValueDisplay
|
|
2324
|
+
type: object
|
|
2325
|
+
properties:
|
|
2326
|
+
description:
|
|
2327
|
+
type: string
|
|
2328
|
+
description: The description of the operation.
|
|
2329
|
+
readOnly: true
|
|
2330
|
+
operation:
|
|
2331
|
+
type: string
|
|
2332
|
+
description: The display name of the compute operation.
|
|
2333
|
+
readOnly: true
|
|
2334
|
+
provider:
|
|
2335
|
+
type: string
|
|
2336
|
+
description: The resource provider for the operation.
|
|
2337
|
+
readOnly: true
|
|
2338
|
+
resource:
|
|
2339
|
+
type: string
|
|
2340
|
+
description: The display name of the resource the operation applies to.
|
|
2341
|
+
readOnly: true
|
|
2342
|
+
description: Describes the properties of a Compute Operation Value Display.
|
|
2343
|
+
Resource:
|
|
2344
|
+
title: Resource
|
|
2345
|
+
required:
|
|
2346
|
+
- location
|
|
2347
|
+
type: object
|
|
2348
|
+
properties:
|
|
2349
|
+
id:
|
|
2350
|
+
type: string
|
|
2351
|
+
description: Resource Id
|
|
2352
|
+
readOnly: true
|
|
2353
|
+
location:
|
|
2354
|
+
type: string
|
|
2355
|
+
description: Resource location
|
|
2356
|
+
name:
|
|
2357
|
+
type: string
|
|
2358
|
+
description: Resource name
|
|
2359
|
+
readOnly: true
|
|
2360
|
+
tags:
|
|
2361
|
+
type: object
|
|
2362
|
+
additionalProperties:
|
|
2363
|
+
type: string
|
|
2364
|
+
description: Resource tags
|
|
2365
|
+
type:
|
|
2366
|
+
type: string
|
|
2367
|
+
description: Resource type
|
|
2368
|
+
readOnly: true
|
|
2369
|
+
description: The Resource model definition.
|
|
2370
|
+
ResourceReference:
|
|
2371
|
+
title: ResourceReference
|
|
2372
|
+
type: object
|
|
2373
|
+
properties:
|
|
2374
|
+
id:
|
|
2375
|
+
type: string
|
|
2376
|
+
description: The fully qualified Azure resource id.
|
|
2377
|
+
description: A reference to an Azure resource.
|
|
2378
|
+
ScaleSetEvictionPolicy:
|
|
2379
|
+
title: ScaleSetEvictionPolicy
|
|
2380
|
+
enum:
|
|
2381
|
+
- Delete
|
|
2382
|
+
- Deallocate
|
|
2383
|
+
type: string
|
|
2384
|
+
description: ScaleSetEvictionPolicy to be used to specify eviction policy for low priority virtual machine scale set. Default to Delete.
|
|
2385
|
+
ScaleSetPriority:
|
|
2386
|
+
title: ScaleSetPriority
|
|
2387
|
+
enum:
|
|
2388
|
+
- Low
|
|
2389
|
+
- Regular
|
|
2390
|
+
type: string
|
|
2391
|
+
description: ScaleSetPriority to be used to specify virtual machine scale set priority. Default to regular.
|
|
2392
|
+
SubResource:
|
|
2393
|
+
title: SubResource
|
|
2394
|
+
type: object
|
|
2395
|
+
properties:
|
|
2396
|
+
id:
|
|
2397
|
+
type: string
|
|
2398
|
+
description: Resource ID.
|
|
2399
|
+
readOnly: true
|
|
2400
|
+
name:
|
|
2401
|
+
type: string
|
|
2402
|
+
description: The name of the resource that is unique within a resource group. This name can be used to access the resource.
|
|
2403
|
+
readOnly: true
|
|
2404
|
+
type:
|
|
2405
|
+
type: string
|
|
2406
|
+
description: Resource type
|
|
2407
|
+
readOnly: true
|
|
2408
|
+
description: Reference to another subresource.
|
|
2409
|
+
TagsObject:
|
|
2410
|
+
title: TagsObject
|
|
2411
|
+
type: object
|
|
2412
|
+
properties:
|
|
2413
|
+
tags:
|
|
2414
|
+
type: object
|
|
2415
|
+
additionalProperties:
|
|
2416
|
+
type: string
|
|
2417
|
+
description: Resource tags.
|
|
2418
|
+
description: Tags object for patch operations.
|
|
2419
|
+
UserAssignedIdentity:
|
|
2420
|
+
title: UserAssignedIdentity
|
|
2421
|
+
type: object
|
|
2422
|
+
properties:
|
|
2423
|
+
clientId:
|
|
2424
|
+
type: string
|
|
2425
|
+
description: The client id of the user assigned identity.
|
|
2426
|
+
objectId:
|
|
2427
|
+
type: string
|
|
2428
|
+
description: The object id of the user assigned identity.
|
|
2429
|
+
resourceId:
|
|
2430
|
+
type: string
|
|
2431
|
+
description: The resource id of the user assigned identity.
|
|
2432
|
+
AgentPoolVersion:
|
|
2433
|
+
title: AgentPoolVersion
|
|
2434
|
+
type: object
|
|
2435
|
+
properties:
|
|
2436
|
+
default:
|
|
2437
|
+
type: boolean
|
|
2438
|
+
description: Whether this version is the default agent pool version.
|
|
2439
|
+
isPreview:
|
|
2440
|
+
type: boolean
|
|
2441
|
+
description: Whether Kubernetes version is currently in preview.
|
|
2442
|
+
kubernetesVersion:
|
|
2443
|
+
type: string
|
|
2444
|
+
description: Kubernetes version (major, minor, patch).
|
|
2445
|
+
Count:
|
|
2446
|
+
title: Count
|
|
2447
|
+
enum:
|
|
2448
|
+
- 1
|
|
2449
|
+
- 3
|
|
2450
|
+
- 5
|
|
2451
|
+
type: integer
|
|
2452
|
+
description: Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1.
|
|
2453
|
+
LoadBalancerSku:
|
|
2454
|
+
title: LoadBalancerSku
|
|
2455
|
+
enum:
|
|
2456
|
+
- standard
|
|
2457
|
+
- basic
|
|
2458
|
+
type: string
|
|
2459
|
+
description: The load balancer sku for the managed cluster.
|
|
2460
|
+
ManagedOutboundIPs:
|
|
2461
|
+
title: ManagedOutboundIPs
|
|
2462
|
+
type: object
|
|
2463
|
+
properties:
|
|
2464
|
+
count:
|
|
2465
|
+
maximum: 100
|
|
2466
|
+
minimum: 1
|
|
2467
|
+
type: integer
|
|
2468
|
+
description: Desired number of outbound IP created/managed by Azure for the cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.
|
|
2469
|
+
format: int32
|
|
2470
|
+
default: 1
|
|
2471
|
+
description: Desired managed outbound IPs for the cluster load balancer.
|
|
2472
|
+
NetworkPlugin:
|
|
2473
|
+
title: NetworkPlugin
|
|
2474
|
+
enum:
|
|
2475
|
+
- azure
|
|
2476
|
+
- kubenet
|
|
2477
|
+
type: string
|
|
2478
|
+
description: Network plugin used for building Kubernetes network.
|
|
2479
|
+
NetworkPolicy:
|
|
2480
|
+
title: NetworkPolicy
|
|
2481
|
+
enum:
|
|
2482
|
+
- calico
|
|
2483
|
+
- azure
|
|
2484
|
+
type: string
|
|
2485
|
+
description: Network policy used for building Kubernetes network.
|
|
2486
|
+
OutboundIPPrefixes:
|
|
2487
|
+
title: OutboundIPPrefixes
|
|
2488
|
+
type: object
|
|
2489
|
+
properties:
|
|
2490
|
+
publicIPPrefixes:
|
|
2491
|
+
type: array
|
|
2492
|
+
items:
|
|
2493
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2494
|
+
description: A list of public IP prefix resources.
|
|
2495
|
+
description: Desired outbound IP Prefix resources for the cluster load balancer.
|
|
2496
|
+
OutboundIPs:
|
|
2497
|
+
title: OutboundIPs
|
|
2498
|
+
type: object
|
|
2499
|
+
properties:
|
|
2500
|
+
publicIPs:
|
|
2501
|
+
type: array
|
|
2502
|
+
items:
|
|
2503
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2504
|
+
description: A list of public IP resources.
|
|
2505
|
+
description: Desired outbound IP resources for the cluster load balancer.
|
|
2506
|
+
OutboundType:
|
|
2507
|
+
title: OutboundType
|
|
2508
|
+
enum:
|
|
2509
|
+
- loadBalancer
|
|
2510
|
+
- userDefinedRouting
|
|
2511
|
+
type: string
|
|
2512
|
+
description: The outbound (egress) routing method.
|
|
2513
|
+
Type:
|
|
2514
|
+
title: Type
|
|
2515
|
+
enum:
|
|
2516
|
+
- SystemAssigned
|
|
2517
|
+
- None
|
|
2518
|
+
type: string
|
|
2519
|
+
description: The type of identity used for the managed cluster. Type 'SystemAssigned' will use an implicitly created identity in master components and an auto-created user assigned identity in MC_ resource group in agent nodes. Type 'None' will not use MSI for the managed cluster, service principal will be used instead.
|
|
2520
|
+
Upgrade:
|
|
2521
|
+
title: Upgrade
|
|
2522
|
+
type: object
|
|
2523
|
+
properties:
|
|
2524
|
+
isPreview:
|
|
2525
|
+
type: boolean
|
|
2526
|
+
description: Whether Kubernetes version is currently in preview.
|
|
2527
|
+
kubernetesVersion:
|
|
2528
|
+
type: string
|
|
2529
|
+
description: Kubernetes version (major, minor, patch).
|
|
2530
|
+
AadProfile:
|
|
2531
|
+
title: AadProfile
|
|
2532
|
+
required:
|
|
2533
|
+
- clientAppID
|
|
2534
|
+
- serverAppID
|
|
2535
|
+
type: object
|
|
2536
|
+
properties:
|
|
2537
|
+
clientAppID:
|
|
2538
|
+
type: string
|
|
2539
|
+
description: The client AAD application ID.
|
|
2540
|
+
serverAppID:
|
|
2541
|
+
type: string
|
|
2542
|
+
description: The server AAD application ID.
|
|
2543
|
+
serverAppSecret:
|
|
2544
|
+
type: string
|
|
2545
|
+
description: The server AAD application secret.
|
|
2546
|
+
tenantID:
|
|
2547
|
+
type: string
|
|
2548
|
+
description: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
|
|
2549
|
+
ApiServerAccessProfile:
|
|
2550
|
+
title: ApiServerAccessProfile
|
|
2551
|
+
type: object
|
|
2552
|
+
properties:
|
|
2553
|
+
authorizedIPRanges:
|
|
2554
|
+
type: array
|
|
2555
|
+
items:
|
|
2556
|
+
type: string
|
|
2557
|
+
description: Authorized IP Ranges to kubernetes API server.
|
|
2558
|
+
enablePrivateCluster:
|
|
2559
|
+
type: boolean
|
|
2560
|
+
description: Whether to create the cluster as a private cluster or not.
|
|
2561
|
+
ControlPlaneProfile:
|
|
2562
|
+
title: ControlPlaneProfile
|
|
2563
|
+
required:
|
|
2564
|
+
- kubernetesVersion
|
|
2565
|
+
- osType
|
|
2566
|
+
type: object
|
|
2567
|
+
properties:
|
|
2568
|
+
kubernetesVersion:
|
|
2569
|
+
type: string
|
|
2570
|
+
description: Kubernetes version (major, minor, patch).
|
|
2571
|
+
name:
|
|
2572
|
+
type: string
|
|
2573
|
+
description: Pool name.
|
|
2574
|
+
osType:
|
|
2575
|
+
$ref: '#/components/schemas/OSType'
|
|
2576
|
+
upgrades:
|
|
2577
|
+
type: array
|
|
2578
|
+
items:
|
|
2579
|
+
$ref: '#/components/schemas/Upgrade'
|
|
2580
|
+
description: List of orchestrator types and versions available for upgrade.
|
|
2581
|
+
Display:
|
|
2582
|
+
title: Display
|
|
2583
|
+
type: object
|
|
2584
|
+
properties:
|
|
2585
|
+
description:
|
|
2586
|
+
type: string
|
|
2587
|
+
description: The description of the operation.
|
|
2588
|
+
readOnly: true
|
|
2589
|
+
operation:
|
|
2590
|
+
type: string
|
|
2591
|
+
description: The display name of the compute operation.
|
|
2592
|
+
readOnly: true
|
|
2593
|
+
provider:
|
|
2594
|
+
type: string
|
|
2595
|
+
description: The resource provider for the operation.
|
|
2596
|
+
readOnly: true
|
|
2597
|
+
resource:
|
|
2598
|
+
type: string
|
|
2599
|
+
description: The display name of the resource the operation applies to.
|
|
2600
|
+
readOnly: true
|
|
2601
|
+
Error:
|
|
2602
|
+
title: Error
|
|
2603
|
+
type: object
|
|
2604
|
+
properties:
|
|
2605
|
+
code:
|
|
2606
|
+
type: string
|
|
2607
|
+
description: An identifier for the error. Codes are invariant and are intended to be consumed programmatically.
|
|
2608
|
+
details:
|
|
2609
|
+
type: array
|
|
2610
|
+
items:
|
|
2611
|
+
$ref: '#/components/schemas/CloudErrorBody'
|
|
2612
|
+
description: A list of additional details about the error.
|
|
2613
|
+
message:
|
|
2614
|
+
type: string
|
|
2615
|
+
description: A message describing the error, intended to be suitable for display in a user interface.
|
|
2616
|
+
target:
|
|
2617
|
+
type: string
|
|
2618
|
+
description: The target of the particular error. For example, the name of the property in error.
|
|
2619
|
+
Identity:
|
|
2620
|
+
title: Identity
|
|
2621
|
+
type: object
|
|
2622
|
+
properties:
|
|
2623
|
+
principalId:
|
|
2624
|
+
type: string
|
|
2625
|
+
description: The principal id of the system assigned identity which is used by master components.
|
|
2626
|
+
readOnly: true
|
|
2627
|
+
tenantId:
|
|
2628
|
+
type: string
|
|
2629
|
+
description: The tenant id of the system assigned identity which is used by master components.
|
|
2630
|
+
readOnly: true
|
|
2631
|
+
type:
|
|
2632
|
+
$ref: '#/components/schemas/Type'
|
|
2633
|
+
LinuxProfile:
|
|
2634
|
+
title: LinuxProfile
|
|
2635
|
+
required:
|
|
2636
|
+
- adminUsername
|
|
2637
|
+
- ssh
|
|
2638
|
+
type: object
|
|
2639
|
+
properties:
|
|
2640
|
+
adminUsername:
|
|
2641
|
+
pattern: ^[A-Za-z][-A-Za-z0-9_]*$
|
|
2642
|
+
type: string
|
|
2643
|
+
description: The administrator username to use for Linux VMs.
|
|
2644
|
+
ssh:
|
|
2645
|
+
$ref: '#/components/schemas/Ssh'
|
|
2646
|
+
LoadBalancerProfile:
|
|
2647
|
+
title: LoadBalancerProfile
|
|
2648
|
+
type: object
|
|
2649
|
+
properties:
|
|
2650
|
+
allocatedOutboundPorts:
|
|
2651
|
+
maximum: 64000
|
|
2652
|
+
minimum: 0
|
|
2653
|
+
type: integer
|
|
2654
|
+
description: Desired number of allocated SNAT ports per VM. Allowed values must be in the range of 0 to 64000 (inclusive). The default value is 0 which results in Azure dynamically allocating ports.
|
|
2655
|
+
format: int32
|
|
2656
|
+
default: 0
|
|
2657
|
+
effectiveOutboundIPs:
|
|
2658
|
+
type: array
|
|
2659
|
+
items:
|
|
2660
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2661
|
+
description: The effective outbound IP resources of the cluster load balancer.
|
|
2662
|
+
idleTimeoutInMinutes:
|
|
2663
|
+
maximum: 120
|
|
2664
|
+
minimum: 4
|
|
2665
|
+
type: integer
|
|
2666
|
+
description: Desired outbound flow idle timeout in minutes. Allowed values must be in the range of 4 to 120 (inclusive). The default value is 30 minutes.
|
|
2667
|
+
format: int32
|
|
2668
|
+
default: 30
|
|
2669
|
+
managedOutboundIPs:
|
|
2670
|
+
$ref: '#/components/schemas/ManagedOutboundIPs2'
|
|
2671
|
+
outboundIPPrefixes:
|
|
2672
|
+
$ref: '#/components/schemas/OutboundIPPrefixes2'
|
|
2673
|
+
outboundIPs:
|
|
2674
|
+
$ref: '#/components/schemas/OutboundIPs2'
|
|
2675
|
+
ManagedOutboundIPs2:
|
|
2676
|
+
title: ManagedOutboundIPs2
|
|
2677
|
+
type: object
|
|
2678
|
+
properties:
|
|
2679
|
+
count:
|
|
2680
|
+
maximum: 100
|
|
2681
|
+
minimum: 1
|
|
2682
|
+
type: integer
|
|
2683
|
+
description: Desired number of outbound IP created/managed by Azure for the cluster load balancer. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.
|
|
2684
|
+
format: int32
|
|
2685
|
+
default: 1
|
|
2686
|
+
NetworkProfile:
|
|
2687
|
+
title: NetworkProfile
|
|
2688
|
+
type: object
|
|
2689
|
+
properties:
|
|
2690
|
+
dnsServiceIP:
|
|
2691
|
+
pattern: ^(?:(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)\.){3}(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)$
|
|
2692
|
+
type: string
|
|
2693
|
+
description: An IP address assigned to the Kubernetes DNS service. It must be within the Kubernetes service address range specified in serviceCidr.
|
|
2694
|
+
default: 10.0.0.10
|
|
2695
|
+
dockerBridgeCidr:
|
|
2696
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
2697
|
+
type: string
|
|
2698
|
+
description: A CIDR notation IP range assigned to the Docker bridge network. It must not overlap with any Subnet IP ranges or the Kubernetes service address range.
|
|
2699
|
+
default: 172.17.0.1/16
|
|
2700
|
+
loadBalancerProfile:
|
|
2701
|
+
$ref: '#/components/schemas/LoadBalancerProfile'
|
|
2702
|
+
loadBalancerSku:
|
|
2703
|
+
$ref: '#/components/schemas/LoadBalancerSku'
|
|
2704
|
+
networkPlugin:
|
|
2705
|
+
$ref: '#/components/schemas/NetworkPlugin'
|
|
2706
|
+
networkPolicy:
|
|
2707
|
+
$ref: '#/components/schemas/NetworkPolicy'
|
|
2708
|
+
outboundType:
|
|
2709
|
+
$ref: '#/components/schemas/OutboundType'
|
|
2710
|
+
podCidr:
|
|
2711
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
2712
|
+
type: string
|
|
2713
|
+
description: A CIDR notation IP range from which to assign pod IPs when kubenet is used.
|
|
2714
|
+
default: 10.244.0.0/16
|
|
2715
|
+
serviceCidr:
|
|
2716
|
+
pattern: ^([0-9]{1,3}\.){3}[0-9]{1,3}(\/([0-9]|[1-2][0-9]|3[0-2]))?$
|
|
2717
|
+
type: string
|
|
2718
|
+
description: A CIDR notation IP range from which to assign service cluster IPs. It must not overlap with any Subnet IP ranges.
|
|
2719
|
+
default: 10.0.0.0/16
|
|
2720
|
+
OutboundIPPrefixes2:
|
|
2721
|
+
title: OutboundIPPrefixes2
|
|
2722
|
+
type: object
|
|
2723
|
+
properties:
|
|
2724
|
+
publicIPPrefixes:
|
|
2725
|
+
type: array
|
|
2726
|
+
items:
|
|
2727
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2728
|
+
description: A list of public IP prefix resources.
|
|
2729
|
+
OutboundIPs2:
|
|
2730
|
+
title: OutboundIPs2
|
|
2731
|
+
type: object
|
|
2732
|
+
properties:
|
|
2733
|
+
publicIPs:
|
|
2734
|
+
type: array
|
|
2735
|
+
items:
|
|
2736
|
+
$ref: '#/components/schemas/ResourceReference'
|
|
2737
|
+
description: A list of public IP resources.
|
|
2738
|
+
Properties:
|
|
2739
|
+
title: Properties
|
|
2740
|
+
required:
|
|
2741
|
+
- count
|
|
2742
|
+
- vmSize
|
|
2743
|
+
type: object
|
|
2744
|
+
properties:
|
|
2745
|
+
availabilityZones:
|
|
2746
|
+
type: array
|
|
2747
|
+
items:
|
|
2748
|
+
type: string
|
|
2749
|
+
description: Availability zones for nodes. Must use VirtualMachineScaleSets AgentPoolType.
|
|
2750
|
+
count:
|
|
2751
|
+
maximum: 100
|
|
2752
|
+
minimum: 1
|
|
2753
|
+
type: integer
|
|
2754
|
+
description: Number of agents (VMs) to host docker containers. Allowed values must be in the range of 1 to 100 (inclusive). The default value is 1.
|
|
2755
|
+
format: int32
|
|
2756
|
+
enableAutoScaling:
|
|
2757
|
+
type: boolean
|
|
2758
|
+
description: Whether to enable auto-scaler
|
|
2759
|
+
enableNodePublicIP:
|
|
2760
|
+
type: boolean
|
|
2761
|
+
description: Enable public IP for nodes
|
|
2762
|
+
maxCount:
|
|
2763
|
+
type: integer
|
|
2764
|
+
description: Maximum number of nodes for auto-scaling
|
|
2765
|
+
format: int32
|
|
2766
|
+
maxPods:
|
|
2767
|
+
type: integer
|
|
2768
|
+
description: Maximum number of pods that can run on a node.
|
|
2769
|
+
format: int32
|
|
2770
|
+
minCount:
|
|
2771
|
+
type: integer
|
|
2772
|
+
description: Minimum number of nodes for auto-scaling
|
|
2773
|
+
format: int32
|
|
2774
|
+
nodeLabels:
|
|
2775
|
+
type: object
|
|
2776
|
+
additionalProperties:
|
|
2777
|
+
type: string
|
|
2778
|
+
description: Agent pool node labels to be persisted across all nodes in agent pool.
|
|
2779
|
+
nodeTaints:
|
|
2780
|
+
type: array
|
|
2781
|
+
items:
|
|
2782
|
+
type: string
|
|
2783
|
+
description: Taints added to new nodes during node pool create and scale. For example, key=value:NoSchedule.
|
|
2784
|
+
orchestratorVersion:
|
|
2785
|
+
type: string
|
|
2786
|
+
description: Version of orchestrator specified when creating the managed cluster.
|
|
2787
|
+
osDiskSizeGB:
|
|
2788
|
+
maximum: 1023
|
|
2789
|
+
minimum: 0
|
|
2790
|
+
type: integer
|
|
2791
|
+
description: OS Disk Size in GB to be used to specify the disk size for every machine in this master/agent pool. If you specify 0, it will apply the default osDisk size according to the vmSize specified.
|
|
2792
|
+
format: int32
|
|
2793
|
+
osType:
|
|
2794
|
+
$ref: '#/components/schemas/OSType'
|
|
2795
|
+
provisioningState:
|
|
2796
|
+
type: string
|
|
2797
|
+
description: The current deployment or provisioning state, which only appears in the response.
|
|
2798
|
+
readOnly: true
|
|
2799
|
+
scaleSetEvictionPolicy:
|
|
2800
|
+
$ref: '#/components/schemas/ScaleSetEvictionPolicy'
|
|
2801
|
+
scaleSetPriority:
|
|
2802
|
+
$ref: '#/components/schemas/ScaleSetPriority'
|
|
2803
|
+
tags:
|
|
2804
|
+
type: object
|
|
2805
|
+
additionalProperties:
|
|
2806
|
+
type: string
|
|
2807
|
+
description: Agent pool tags to be persisted on the agent pool virtual machine scale set.
|
|
2808
|
+
type:
|
|
2809
|
+
$ref: '#/components/schemas/AgentPoolType'
|
|
2810
|
+
vmSize:
|
|
2811
|
+
$ref: '#/components/schemas/ContainerServiceVMSize'
|
|
2812
|
+
vnetSubnetID:
|
|
2813
|
+
type: string
|
|
2814
|
+
description: VNet SubnetID specifies the VNet's subnet identifier.
|
|
2815
|
+
Properties1:
|
|
2816
|
+
title: Properties1
|
|
2817
|
+
type: object
|
|
2818
|
+
properties:
|
|
2819
|
+
agentPoolVersions:
|
|
2820
|
+
type: array
|
|
2821
|
+
items:
|
|
2822
|
+
$ref: '#/components/schemas/AgentPoolVersion'
|
|
2823
|
+
description: List of versions available for agent pool.
|
|
2824
|
+
Properties2:
|
|
2825
|
+
title: Properties2
|
|
2826
|
+
required:
|
|
2827
|
+
- kubernetesVersion
|
|
2828
|
+
- osType
|
|
2829
|
+
type: object
|
|
2830
|
+
properties:
|
|
2831
|
+
kubernetesVersion:
|
|
2832
|
+
type: string
|
|
2833
|
+
description: Kubernetes version (major, minor, patch).
|
|
2834
|
+
osType:
|
|
2835
|
+
$ref: '#/components/schemas/OSType'
|
|
2836
|
+
upgrades:
|
|
2837
|
+
type: array
|
|
2838
|
+
items:
|
|
2839
|
+
$ref: '#/components/schemas/Upgrade'
|
|
2840
|
+
description: List of orchestrator types and versions available for upgrade.
|
|
2841
|
+
Properties3:
|
|
2842
|
+
title: Properties3
|
|
2843
|
+
type: object
|
|
2844
|
+
properties:
|
|
2845
|
+
aadProfile:
|
|
2846
|
+
$ref: '#/components/schemas/AadProfile'
|
|
2847
|
+
addonProfiles:
|
|
2848
|
+
type: object
|
|
2849
|
+
additionalProperties:
|
|
2850
|
+
$ref: '#/components/schemas/ManagedClusterAddonProfile'
|
|
2851
|
+
description: Profile of managed cluster add-on.
|
|
2852
|
+
agentPoolProfiles:
|
|
2853
|
+
type: array
|
|
2854
|
+
items:
|
|
2855
|
+
$ref: '#/components/schemas/ManagedClusterAgentPoolProfile'
|
|
2856
|
+
description: Properties of the agent pool.
|
|
2857
|
+
apiServerAccessProfile:
|
|
2858
|
+
$ref: '#/components/schemas/ApiServerAccessProfile'
|
|
2859
|
+
diskEncryptionSetID:
|
|
2860
|
+
type: string
|
|
2861
|
+
description: ResourceId of the disk encryption set to use for enabling encryption at rest.
|
|
2862
|
+
dnsPrefix:
|
|
2863
|
+
type: string
|
|
2864
|
+
description: DNS prefix specified when creating the managed cluster.
|
|
2865
|
+
enablePodSecurityPolicy:
|
|
2866
|
+
type: boolean
|
|
2867
|
+
description: (PREVIEW) Whether to enable Kubernetes Pod security policy.
|
|
2868
|
+
enableRBAC:
|
|
2869
|
+
type: boolean
|
|
2870
|
+
description: Whether to enable Kubernetes Role-Based Access Control.
|
|
2871
|
+
fqdn:
|
|
2872
|
+
type: string
|
|
2873
|
+
description: FQDN for the master pool.
|
|
2874
|
+
readOnly: true
|
|
2875
|
+
identityProfile:
|
|
2876
|
+
type: object
|
|
2877
|
+
additionalProperties:
|
|
2878
|
+
$ref: '#/components/schemas/UserAssignedIdentity'
|
|
2879
|
+
description: Identities associated with the cluster.
|
|
2880
|
+
kubernetesVersion:
|
|
2881
|
+
type: string
|
|
2882
|
+
description: Version of Kubernetes specified when creating the managed cluster.
|
|
2883
|
+
linuxProfile:
|
|
2884
|
+
$ref: '#/components/schemas/LinuxProfile'
|
|
2885
|
+
maxAgentPools:
|
|
2886
|
+
type: integer
|
|
2887
|
+
description: The max number of agent pools for the managed cluster.
|
|
2888
|
+
format: int32
|
|
2889
|
+
readOnly: true
|
|
2890
|
+
networkProfile:
|
|
2891
|
+
$ref: '#/components/schemas/NetworkProfile'
|
|
2892
|
+
nodeResourceGroup:
|
|
2893
|
+
type: string
|
|
2894
|
+
description: Name of the resource group containing agent pool nodes.
|
|
2895
|
+
privateFQDN:
|
|
2896
|
+
type: string
|
|
2897
|
+
description: FQDN of private cluster.
|
|
2898
|
+
readOnly: true
|
|
2899
|
+
provisioningState:
|
|
2900
|
+
type: string
|
|
2901
|
+
description: The current deployment or provisioning state, which only appears in the response.
|
|
2902
|
+
readOnly: true
|
|
2903
|
+
servicePrincipalProfile:
|
|
2904
|
+
$ref: '#/components/schemas/ServicePrincipalProfile'
|
|
2905
|
+
windowsProfile:
|
|
2906
|
+
$ref: '#/components/schemas/WindowsProfile'
|
|
2907
|
+
Properties4:
|
|
2908
|
+
title: Properties4
|
|
2909
|
+
type: object
|
|
2910
|
+
properties:
|
|
2911
|
+
kubeConfig:
|
|
2912
|
+
type: string
|
|
2913
|
+
description: Base64-encoded Kubernetes configuration file.
|
|
2914
|
+
Properties5:
|
|
2915
|
+
title: Properties5
|
|
2916
|
+
required:
|
|
2917
|
+
- agentPoolProfiles
|
|
2918
|
+
- controlPlaneProfile
|
|
2919
|
+
type: object
|
|
2920
|
+
properties:
|
|
2921
|
+
agentPoolProfiles:
|
|
2922
|
+
type: array
|
|
2923
|
+
items:
|
|
2924
|
+
$ref: '#/components/schemas/ManagedClusterPoolUpgradeProfile'
|
|
2925
|
+
description: The list of available upgrade versions for agent pools.
|
|
2926
|
+
controlPlaneProfile:
|
|
2927
|
+
$ref: '#/components/schemas/ControlPlaneProfile'
|
|
2928
|
+
ServicePrincipalProfile:
|
|
2929
|
+
title: ServicePrincipalProfile
|
|
2930
|
+
required:
|
|
2931
|
+
- clientId
|
|
2932
|
+
type: object
|
|
2933
|
+
properties:
|
|
2934
|
+
clientId:
|
|
2935
|
+
type: string
|
|
2936
|
+
description: The ID for the service principal.
|
|
2937
|
+
secret:
|
|
2938
|
+
type: string
|
|
2939
|
+
description: The secret password associated with the service principal in plain text.
|
|
2940
|
+
Ssh:
|
|
2941
|
+
title: Ssh
|
|
2942
|
+
required:
|
|
2943
|
+
- publicKeys
|
|
2944
|
+
type: object
|
|
2945
|
+
properties:
|
|
2946
|
+
publicKeys:
|
|
2947
|
+
type: array
|
|
2948
|
+
items:
|
|
2949
|
+
$ref: '#/components/schemas/ContainerServiceSshPublicKey'
|
|
2950
|
+
description: The list of SSH public keys used to authenticate with Linux-based VMs. Only expect one key specified.
|
|
2951
|
+
SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameAgentPoolsAgentPoolNameRequest:
|
|
2952
|
+
title: SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameAgentPoolsAgentPoolNameRequest
|
|
2953
|
+
type: object
|
|
2954
|
+
properties:
|
|
2955
|
+
id:
|
|
2956
|
+
type: string
|
|
2957
|
+
description: Resource ID.
|
|
2958
|
+
readOnly: true
|
|
2959
|
+
name:
|
|
2960
|
+
type: string
|
|
2961
|
+
description: The name of the resource that is unique within a resource group. This name can be used to access the resource.
|
|
2962
|
+
readOnly: true
|
|
2963
|
+
type:
|
|
2964
|
+
type: string
|
|
2965
|
+
description: Resource type
|
|
2966
|
+
readOnly: true
|
|
2967
|
+
properties:
|
|
2968
|
+
$ref: '#/components/schemas/Properties'
|
|
2969
|
+
SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest:
|
|
2970
|
+
title: SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest
|
|
2971
|
+
type: object
|
|
2972
|
+
properties:
|
|
2973
|
+
tags:
|
|
2974
|
+
type: object
|
|
2975
|
+
additionalProperties:
|
|
2976
|
+
type: string
|
|
2977
|
+
description: Resource tags.
|
|
2978
|
+
SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest1:
|
|
2979
|
+
title: SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameRequest1
|
|
2980
|
+
required:
|
|
2981
|
+
- location
|
|
2982
|
+
type: object
|
|
2983
|
+
properties:
|
|
2984
|
+
id:
|
|
2985
|
+
type: string
|
|
2986
|
+
description: Resource Id
|
|
2987
|
+
readOnly: true
|
|
2988
|
+
location:
|
|
2989
|
+
type: string
|
|
2990
|
+
description: Resource location
|
|
2991
|
+
name:
|
|
2992
|
+
type: string
|
|
2993
|
+
description: Resource name
|
|
2994
|
+
readOnly: true
|
|
2995
|
+
tags:
|
|
2996
|
+
type: object
|
|
2997
|
+
additionalProperties:
|
|
2998
|
+
type: string
|
|
2999
|
+
description: Resource tags
|
|
3000
|
+
type:
|
|
3001
|
+
type: string
|
|
3002
|
+
description: Resource type
|
|
3003
|
+
readOnly: true
|
|
3004
|
+
identity:
|
|
3005
|
+
$ref: '#/components/schemas/Identity'
|
|
3006
|
+
properties:
|
|
3007
|
+
$ref: '#/components/schemas/Properties3'
|
|
3008
|
+
SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetAADProfileRequest:
|
|
3009
|
+
title: SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetAADProfileRequest
|
|
3010
|
+
required:
|
|
3011
|
+
- clientAppID
|
|
3012
|
+
- serverAppID
|
|
3013
|
+
type: object
|
|
3014
|
+
properties:
|
|
3015
|
+
clientAppID:
|
|
3016
|
+
type: string
|
|
3017
|
+
description: The client AAD application ID.
|
|
3018
|
+
serverAppID:
|
|
3019
|
+
type: string
|
|
3020
|
+
description: The server AAD application ID.
|
|
3021
|
+
serverAppSecret:
|
|
3022
|
+
type: string
|
|
3023
|
+
description: The server AAD application secret.
|
|
3024
|
+
tenantID:
|
|
3025
|
+
type: string
|
|
3026
|
+
description: The AAD tenant ID to use for authentication. If not specified, will use the tenant of the deployment subscription.
|
|
3027
|
+
SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetServicePrincipalProfileRequest:
|
|
3028
|
+
title: SubscriptionsResourceGroupsProvidersMicrosoftContainerServiceManagedClustersResourceNameResetServicePrincipalProfileRequest
|
|
3029
|
+
required:
|
|
3030
|
+
- clientId
|
|
3031
|
+
type: object
|
|
3032
|
+
properties:
|
|
3033
|
+
clientId:
|
|
3034
|
+
type: string
|
|
3035
|
+
description: The ID for the service principal.
|
|
3036
|
+
secret:
|
|
3037
|
+
type: string
|
|
3038
|
+
description: The secret password associated with the service principal in plain text.
|
|
3039
|
+
VmDiagnostics:
|
|
3040
|
+
title: VmDiagnostics
|
|
3041
|
+
required:
|
|
3042
|
+
- enabled
|
|
3043
|
+
type: object
|
|
3044
|
+
properties:
|
|
3045
|
+
enabled:
|
|
3046
|
+
type: boolean
|
|
3047
|
+
description: Whether the VM diagnostic agent is provisioned on the VM.
|
|
3048
|
+
storageUri:
|
|
3049
|
+
type: string
|
|
3050
|
+
description: The URI of the storage account where diagnostics are stored.
|
|
3051
|
+
readOnly: true
|
|
3052
|
+
WindowsProfile:
|
|
3053
|
+
title: WindowsProfile
|
|
3054
|
+
required:
|
|
3055
|
+
- adminUsername
|
|
3056
|
+
type: object
|
|
3057
|
+
properties:
|
|
3058
|
+
adminPassword:
|
|
3059
|
+
pattern: ^(?=.*[a-z])(?=.*[A-Z])(?=.*[!@#$%\^&\*\(\)])[a-zA-Z\d!@#$%\^&\*\(\)]{12,123}$
|
|
3060
|
+
type: string
|
|
3061
|
+
description: The administrator password to use for Windows VMs.
|
|
3062
|
+
adminUsername:
|
|
3063
|
+
pattern: ^[a-zA-Z0-9]+([._]?[a-zA-Z0-9]+)*$
|
|
3064
|
+
type: string
|
|
3065
|
+
description: The administrator username to use for Windows VMs.
|
|
3066
|
+
securitySchemes:
|
|
3067
|
+
azure_auth:
|
|
3068
|
+
type: oauth2
|
|
3069
|
+
description: Azure Active Directory OAuth2 Flow
|
|
3070
|
+
flows:
|
|
3071
|
+
implicit:
|
|
3072
|
+
authorizationUrl: https://management.azure.com/authorize
|
|
3073
|
+
scopes:
|
|
3074
|
+
user_impersonation: impersonate your user account
|
|
3075
|
+
security:
|
|
3076
|
+
- azure_auth:
|
|
3077
|
+
- user_impersonation
|
|
3078
|
+
tags:
|
|
3079
|
+
- name: managedClusters
|
|
3080
|
+
description: ''
|
|
3081
|
+
- name: ManagedClusters
|
|
3082
|
+
description: ''
|
|
3083
|
+
- name: AgentPools
|
|
3084
|
+
description: ''
|