Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,127 @@
{
"swagger": "2.0",
"info": {
"title": "NetworkManagementClient",
"description": "The Microsoft Azure Network management API provides a RESTful set of web services that interact with Microsoft Azure Networks service to manage your network resources. The API has entities that capture the relationship between an end user and the Microsoft Azure Networks service.",
"version": "2017-06-01"
},
"host": "management.azure.com",
"schemes": [
"https"
],
"consumes": [
"application/json"
],
"produces": [
"application/json"
],
"security": [
{
"azure_auth": [
"user_impersonation"
]
}
],
"securityDefinitions": {
"azure_auth": {
"type": "oauth2",
"authorizationUrl": "https://login.microsoftonline.com/common/oauth2/authorize",
"flow": "implicit",
"description": "Azure Active Directory OAuth2 Flow",
"scopes": {
"user_impersonation": "impersonate your user account"
}
}
},
"paths": {
"/subscriptions/{subscriptionId}/providers/Microsoft.Network/locations/{location}/virtualNetworkAvailableEndpointServices": {
"get": {
"operationId": "AvailableEndpointServices_List",
"description": "List what values of endpoint services are available for use.",
"parameters": [
{
"name": "location",
"in": "path",
"required": true,
"type": "string",
"description": "The location to check available endpoint services."
},
{
"$ref": "#/parameters/ApiVersionParameter"
},
{
"$ref": "#/parameters/SubscriptionIdParameter"
}
],
"responses": {
"200": {
"description": "Request successful. Returns list of available endpoint services.",
"schema": {
"$ref": "#/definitions/EndpointServicesListResult"
}
}
},
"x-ms-pageable": {
"nextLinkName": "nextLink"
},
"x-ms-examples": {
"EndpointServicesList": { "$ref": "./examples/EndpointServicesList.json" }
}
}
}
},
"definitions": {
"EndpointServicesListResult": {
"properties": {
"value": {
"type": "array",
"items": {
"$ref": "#/definitions/EndpointServiceResult"
},
"description": "List of available endpoint services in a region."
},
"nextLink": {
"type": "string",
"description": "The URL to get the next set of results."
}
},
"description": "Response for the ListAvailableEndpointServices API service call."
},
"EndpointServiceResult": {
"properties": {
"name": {
"type": "string",
"description": "Name of the endpoint service.",
"readOnly": true
},
"type": {
"type": "string",
"description": "Type of the endpoint service.",
"readOnly": true
}
},
"allOf": [
{
"$ref": "./network.json#/definitions/SubResource"
}
],
"description": "Endpoint service."
}
},
"parameters": {
"SubscriptionIdParameter": {
"name": "subscriptionId",
"in": "path",
"required": true,
"type": "string",
"description": "The subscription credentials which uniquely identify the Microsoft Azure subscription. The subscription ID forms part of the URI for every service call."
},
"ApiVersionParameter": {
"name": "api-version",
"in": "query",
"required": true,
"type": "string",
"description": "Client API version."
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
{
"parameters": {
"location": "westus",
"api-version": "2017-06-01",
"subscriptionId": "subid"
},
"responses": {
"200": {
"body": {
"value": [
{
"name": "Microsoft.Storage",
"id": "/subscriptions/subid/providers/Microsoft.Network/virtualNetworkEndpointServices/Microsoft.Storage",
"type": "Microsoft.Network/virtualNetworkEndpointServices"
},
{
"name": "Microsoft.Sql",
"id": "/subscriptions/subid/providers/Microsoft.Network/virtualNetworkEndpointServices/Microsoft.Sql",
"type": "Microsoft.Network/virtualNetworkEndpointServices"
},
{
"name": "Microsoft.AzureActiveDirectory",
"id": "/subscriptions/subid/providers/Microsoft.Network/virtualNetworkEndpointServices/Microsoft.AzureActiveDirectory",
"type": "Microsoft.Network/virtualNetworkEndpointServices"
}
]
}
}
}
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
{
"parameters": {
"subnetName": "subnet1",
"virtualNetworkName": "vnetname",
"resourceGroupName": "subnet-test",
"api-version": "2017-06-01",
"subscriptionId": "subid",
"subnetParameters": {
"properties": {
"addressPrefix": "10.0.0.0/16",
"serviceEndpoints": [
{ "service": "Microsoft.Storage" }
]
}
}
},
"responses": {
"200": {
"body": {
"id": "/subscriptions/subid/resourceGroups/subnet-test/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnet1",
"name": "subnet1",
"properties": {
"addressPrefix": "10.0.0.0/16",
"serviceEndpoints": [{
"service": "Microsoft.Storage",
"locations": [
"eastus2(stage)",
"usnorth(stage)"
],
"provisioningState": "Succeeded"
}],
"provisioningState": "Succeeded"
}
}
},
"201": {
"body": {
"id": "/subscriptions/subid/resourceGroups/subnet-test/providers/Microsoft.Network/virtualNetworks/vnetname/subnets/subnet1",
"name": "subnet1",
"properties": {
"addressPrefix": "10.0.0.0/16",
"serviceEndpoints": [{
"service": "Microsoft.Storage",
"locations": [
"eastus2(stage)",
"usnorth(stage)"
],
"provisioningState": "Succeeded"
}],
"provisioningState": "Succeeded"
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,8 @@
},
"x-ms-long-running-operation": true,
"x-ms-examples": {
"Create subnet": { "$ref": "./examples/SubnetCreate.json" }
"Create subnet": { "$ref": "./examples/SubnetCreate.json" },
"Create subnet with service endpoints": { "$ref": "./examples/SubnetCreateServiceEndpoint.json" }
}
}
},
Expand Down Expand Up @@ -825,6 +826,13 @@
"$ref": "./routeTable.json#/definitions/RouteTable",
"description": "The reference of the RouteTable resource."
},
"serviceEndpoints": {
Copy link
Copy Markdown
Contributor

@sergey-shandar sergey-shandar Aug 15, 2017

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@EvgenyAgafonchikov @ravbhatnagar this property is used in response which may introduce API breaking changes, or SDK breaking changes if it's used in GET-PUT scenario. If we don't plan to use it in such scenario, we should mark it as "read only".

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@amarzavery @salameer this is well documented and we are okay with the breaking change.
it is read-write property.

Copy link
Copy Markdown
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@ravbhatnagar can you sign off on this new additional property.

"type": "array",
"items": {
"$ref": "#/definitions/ServiceEndpointPropertiesFormat"
},
"description": "An array of service endpoints."
},
"ipConfigurations": {
"readOnly": true,
"type": "array",
Expand All @@ -847,6 +855,26 @@
},
"description": "Properties of the subnet."
},
"ServiceEndpointPropertiesFormat": {
"properties": {
"service": {
"type": "string",
"description": "The type of the endpoint service."
},
"locations": {
"type": "array",
"items": {
"type": "string"
},
"description": "A list of locations."
},
"provisioningState": {
"type": "string",
"description": "The provisioning state of the resource."
}
},
"description": "The service endpoint properties."
},
"VirtualNetworkPeeringPropertiesFormat": {
"properties": {
"allowVirtualNetworkAccess": {
Expand Down