Skip to content

Commit c82a473

Browse files
Merge pull request #6 from Azure/master
merge into douge for review
2 parents 200fe0f + 886231c commit c82a473

41 files changed

Lines changed: 10328 additions & 4564 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

arm-authorization/2015-07-01/swagger/authorization.json

Lines changed: 139 additions & 133 deletions
Large diffs are not rendered by default.

arm-batch/2015-12-01/swagger/BatchManagement.json

Lines changed: 216 additions & 42 deletions
Large diffs are not rendered by default.

arm-cdn/2016-10-02/swagger/cdn.json

Lines changed: 133 additions & 103 deletions
Large diffs are not rendered by default.

arm-compute/2016-03-30/swagger/compute.json

Lines changed: 177 additions & 162 deletions
Large diffs are not rendered by default.

arm-compute/2016-09-30/swagger/containerService.json

Lines changed: 22 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
],
2424
"operationId": "ContainerServices_List",
2525
"summary": "Gets a list of container services in the specified subscription.",
26-
"description":"Gets a list of container services in the specified subscription. The operation returns properties of each container service including state, number of masters and agents, and FQDNs of masters and agents.",
26+
"description":"Gets a list of container services in the specified subscription. The operation returns properties of each container service including state, orchestrator, number of masters and agents, and FQDNs of masters and agents.",
2727
"parameters": [
2828
{
2929
"$ref": "#/parameters/ApiVersionParameter"
@@ -111,8 +111,8 @@
111111
"ContainerService"
112112
],
113113
"operationId": "ContainerServices_Get",
114-
"summary":"Gets the specified container service.",
115-
"description": "Gets the specified container service in the specified subscription and resource group. The operation returns the properties for the specified container service including state, number of masters and agents, and FQDNs of masters and agents. ",
114+
"summary":"Gets the properties of the specified container service.",
115+
"description": "Gets the properties of the specified container service in the specified subscription and resource group. The operation returns the properties including state, orchestrator, number of masters and agents, and FQDNs of masters and agents. ",
116116
"parameters": [
117117
{
118118
"name": "resourceGroupName",
@@ -191,7 +191,7 @@
191191
],
192192
"operationId": "ContainerServices_ListByResourceGroup",
193193
"summary": "Gets a list of container services in the specified resource group.",
194-
"description": "Gets a list of container services in the specified subscription and resource group. The operation returns properties of each container service including state, number of masters and agents, and FQDNs of masters and agents.",
194+
"description": "Gets a list of container services in the specified subscription and resource group. The operation returns properties of each container service including state, orchestrator, number of masters and agents, and FQDNs of masters and agents.",
195195
"parameters": [
196196
{
197197
"name": "resourceGroupName",
@@ -264,7 +264,7 @@
264264
"description": "The name of the custom orchestrator to use."
265265
}
266266
},
267-
"description": "Properties to configure custom clusters.",
267+
"description": "Properties to configure a custom container service cluster.",
268268
"required": ["orchestrator"]
269269
},
270270
"ContainerServiceServicePrincipalProfile": {
@@ -291,16 +291,17 @@
291291
"enum": [
292292
"Swarm",
293293
"DCOS",
294-
"Custom"
294+
"Custom",
295+
"Kubernetes"
295296
],
296297
"x-ms-enum": {
297298
"name": "ContainerServiceOchestratorTypes",
298299
"modelAsString": false
299300
},
300-
"description": "Specifies the orchestrator to use to manage container service cluster resources."
301+
"description": "The orchestrator to use to manage container service cluster resources. Valid values are Swarm, DCOS, and Custom."
301302
}
302303
},
303-
"description": "Profile for orchestrator.",
304+
"description": "Profile for the container service orchestrator.",
304305
"required": [ "orchestratorType" ]
305306
},
306307
"ContainerServiceMasterProfile": {
@@ -313,12 +314,12 @@
313314
3,
314315
5
315316
],
316-
"description": "Number of masters (VMs) in the container service cluster.",
317+
"description": "Number of masters (VMs) in the container service cluster. Allowed values are 1, 3, and 5. The default value is 1.",
317318
"default": 1
318319
},
319320
"dnsPrefix": {
320321
"type": "string",
321-
"description": "DNS prefix to be used to create FQDN for master."
322+
"description": "DNS prefix to be used to create the FQDN for master."
322323
},
323324
"fqdn": {
324325
"readOnly": true,
@@ -329,20 +330,20 @@
329330
"required": [
330331
"dnsPrefix"
331332
],
332-
"description": "Profile for container service master."
333+
"description": "Profile for the container service master."
333334
},
334335
"ContainerServiceAgentPoolProfile": {
335336
"properties": {
336337
"name": {
337338
"type": "string",
338-
"description": "Unique name of the agent pool profile within the context of the subscription and resource group"
339+
"description": "Unique name of the agent pool profile in the context of the subscription and resource group."
339340
},
340341
"count": {
341342
"type": "integer",
342343
"format": "int32",
343344
"maximum": 100,
344345
"minimum": 1,
345-
"description": "Number of agents (VMs) to host docker containers"
346+
"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. "
346347
},
347348
"vmSize": {
348349
"type": "string",
@@ -417,7 +418,7 @@
417418
"count",
418419
"vmSize"
419420
],
420-
"description": "Profile for container service agent pool."
421+
"description": "Profile for the container service agent pool."
421422
},
422423
"ContainerServiceWindowsProfile": {
423424
"properties": {
@@ -436,7 +437,7 @@
436437
"adminUsername",
437438
"adminPassword"
438439
],
439-
"description": "Profile for Windows VMs."
440+
"description": "Profile for Windows VMs in the container service cluster."
440441
},
441442
"ContainerServiceLinuxProfile": {
442443
"properties": {
@@ -454,7 +455,7 @@
454455
"adminUsername",
455456
"ssh"
456457
],
457-
"description": "Profile for Linux VMs."
458+
"description": "Profile for Linux VMs in the container service cluster."
458459
},
459460
"ContainerServiceSshConfiguration": {
460461
"properties": {
@@ -494,15 +495,15 @@
494495
"properties": {
495496
"enabled": {
496497
"type": "boolean",
497-
"description": "Whether the VM diagnostic agent should be provisioned on the VM."
498+
"description": "Whether the VM diagnostic agent is provisioned on the VM."
498499
},
499500
"storageUri": {
500501
"readOnly": true,
501502
"type": "string",
502503
"description": "The URI of the storage account where diagnostics are stored."
503504
}
504505
},
505-
"description": "Describes VM diagnostics.",
506+
"description": "Profile for diagnostics on the container service VMs.",
506507
"required": [
507508
"enabled"
508509
]
@@ -535,14 +536,14 @@
535536
"description": "The URL to get the next set of container service results."
536537
}
537538
},
538-
"description": "The List Container Service operation response."
539+
"description": "The response from the List Container Services operation."
539540
},
540541
"ContainerServiceProperties": {
541542
"properties": {
542543
"provisioningState": {
543544
"readOnly": true,
544545
"type": "string",
545-
"description": "The provisioning state, which only appears in the response."
546+
"description": "The current deployment or provisioning state, which only appears in the response."
546547
},
547548
"orchestratorProfile": {
548549
"$ref": "#/definitions/ContainerServiceOrchestratorProfile",
@@ -565,7 +566,7 @@
565566
"items": {
566567
"$ref": "#/definitions/ContainerServiceAgentPoolProfile"
567568
},
568-
"description": "Properties of agent pools."
569+
"description": "Properties of the agent pool."
569570
},
570571
"windowsProfile": {
571572
"$ref": "#/definitions/ContainerServiceWindowsProfile",

0 commit comments

Comments
 (0)