Skip to content

Commit c9e1bdd

Browse files
Add descriptions for SEO.
1 parent 50b4ae0 commit c9e1bdd

8 files changed

+10
-2
lines changed

articles/cloud-services/schema-cscfg-file.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Azure Cloud Services Definition Schema (.cscfg File) | Microsoft Docs
3+
description: A service configuration (.cscfg) file specifies how many role instances to deploy for each role, configuration values, and certificate thumbprints for a role.
34
services: cloud-services
45
ms.custom:
56
ms.date: 12/07/2016

articles/cloud-services/schema-cscfg-networkconfiguration.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Azure Cloud Services NetworkConfiguration Schema | Microsoft Docs
3+
description: Learn about the child elements of the NetworkConfiguration element of the service configuration file, which specifies Virtual Network and DNS values.
34
ms.custom:
45
ms.date: 12/07/2016
56
services: cloud-services

articles/cloud-services/schema-cscfg-role.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Azure Cloud Services Role Schema | Microsoft Docs
3+
description: The Role element of a service configuration file specifies how many role instances to deploy for each role, configuration values, and certificate thumbprints.
34
ms.custom:
45
ms.date: 12/07/2016
56
services: cloud-services

articles/cloud-services/schema-csdef-file.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Azure Cloud Services Definition Schema (.csdef File) | Microsoft Docs
3+
description: A service definition (.csdef) file defines a service model for an application, containing available roles, endpoints, and configuration values for the service.
34
ms.custom:
45
ms.date: 04/14/2015
56
services: cloud-services

articles/cloud-services/schema-csdef-loadbalancerprobe.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: Azure Cloud Services Def. LoadBalancerProbe Schema | Microsoft Docs
3+
description: The customer defined LoadBalancerProbe is a health probe of endpoints in role instances. It combines with web or worker roles in a service definition file.
34
ms.custom:
45
ms.date: 04/14/2015
56
services: cloud-services

articles/cloud-services/schema-csdef-networktrafficrules.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Azure Cloud Services Def. NetworkTrafficRules Schema | Microsoft Docs"
3+
description: Learn about NetworkTrafficRules, which limits the roles that can access the internal endpoints of a role. It combines with roles in a service definition file.
34
ms.custom: ""
45
ms.date: "04/14/2015"
56
services: cloud-services

articles/cloud-services/schema-csdef-webrole.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Azure Cloud Services Def. WebRole Schema | Microsoft Docs"
3+
description: Azure web role is customized for web application programming supporting ASP.NET, PHP, WCF, and FastCGI. Learn about service definition elements of a web role.
34
ms.custom: ""
45
ms.date: "04/14/2015"
56
services: cloud-services
@@ -218,7 +219,7 @@ The following table describes the attributes of the `InputEndpoint` element.
218219
|protocol|string|Required. The transport protocol for the external endpoint. For a web role, possible values are `HTTP`, `HTTPS`, `UDP`, or `TCP`.|
219220
|port|int|Required. The port for the external endpoint. You can specify any port number you choose, but the port numbers specified for each role in the service must be unique.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).|
220221
|certificate|string|Required for an HTTPS endpoint. The name of a certificate defined by a `Certificate` element.|
221-
|localPort|int|Optional. Specifies a port used for internal connections on the endpoint. The `localPort` attribute maps the external port on the endpoint to an internal port on a role. This is useful in scenarios where a role must communicate to an internal component on a port that different from the one that is exposed externally.<br /><br /> If not specified, the value of `localPort` is the same as the `port` attribute. Set the value of `localPort` to * to automatically assign an unallocated port that is discoverable using the runtime API.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).<br /><br /> The `localPort` attribute is only available using the Azure SDK version 1.3 or higher.|
222+
|localPort|int|Optional. Specifies a port used for internal connections on the endpoint. The `localPort` attribute maps the external port on the endpoint to an internal port on a role. This is useful in scenarios where a role must communicate to an internal component on a port that different from the one that is exposed externally.<br /><br /> If not specified, the value of `localPort` is the same as the `port` attribute. Set the value of `localPort` to "*" to automatically assign an unallocated port that is discoverable using the runtime API.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).<br /><br /> The `localPort` attribute is only available using the Azure SDK version 1.3 or higher.|
222223
|ignoreRoleInstanceStatus|boolean|Optional. When the value of this attribute is set to `true`, the status of a service is ignored and the endpoint will not be removed by the load balancer. Setting this value to `true` useful for debugging busy instances of a service. The default value is `false`. **Note:** An endpoint can still receive traffic even when the role is not in a Ready state.|
223224
|loadBalancerProbe|string|Optional. The name of the load balancer probe associated with the input endpoint. For more information, see [LoadBalancerProbe Schema](schema-csdef-loadbalancerprobe.md).|
224225

articles/cloud-services/schema-csdef-workerrole.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
---
22
title: "Azure Cloud Services Def. WorkerRole Schema | Microsoft Docs"
3+
description: The Azure worker role is used for generalized development and may perform background processing for a web role. Learn about the Azure worker role schema.
34
services: cloud-services
45
ms.custom: ""
56
ms.date: "04/14/2015"
@@ -204,7 +205,7 @@ The following table describes the attributes of the `InputEndpoint` element.
204205
|protocol|string|Required. The transport protocol for the external endpoint. For a worker role, possible values are `HTTP`, `HTTPS`, `UDP`, or `TCP`.|
205206
|port|int|Required. The port for the external endpoint. You can specify any port number you choose, but the port numbers specified for each role in the service must be unique.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).|
206207
|certificate|string|Required for an HTTPS endpoint. The name of a certificate defined by a `Certificate` element.|
207-
|localPort|int|Optional. Specifies a port used for internal connections on the endpoint. The `localPort` attribute maps the external port on the endpoint to an internal port on a role. This is useful in scenarios where a role must communicate to an internal component on a port that different from the one that is exposed externally.<br /><br /> If not specified, the value of `localPort` is the same as the `port` attribute. Set the value of `localPort` to * to automatically assign an unallocated port that is discoverable using the runtime API.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).<br /><br /> The `localPort` attribute is only available using the Azure SDK version 1.3 or higher.|
208+
|localPort|int|Optional. Specifies a port used for internal connections on the endpoint. The `localPort` attribute maps the external port on the endpoint to an internal port on a role. This is useful in scenarios where a role must communicate to an internal component on a port that different from the one that is exposed externally.<br /><br /> If not specified, the value of `localPort` is the same as the `port` attribute. Set the value of `localPort` to "*" to automatically assign an unallocated port that is discoverable using the runtime API.<br /><br /> Possible values range between 1 and 65535, inclusive (Azure SDK version 1.7 or higher).<br /><br /> The `localPort` attribute is only available using the Azure SDK version 1.3 or higher.|
208209
|ignoreRoleInstanceStatus|boolean|Optional. When the value of this attribute is set to `true`, the status of a service is ignored and the endpoint will not be removed by the load balancer. Setting this value to `true` useful for debugging busy instances of a service. The default value is `false`. **Note:** An endpoint can still receive traffic even when the role is not in a Ready state.|
209210
|loadBalancerProbe|string|Optional. The name of the load balancer probe associated with the input endpoint. For more information, see [LoadBalancerProbe Schema](schema-csdef-loadbalancerprobe.md).|
210211

0 commit comments

Comments
 (0)