Skip to content

Commit

Permalink
Add privateLinkConnectionProperties to network interface. (#7189)
Browse files Browse the repository at this point in the history
* Add privateLinkConnectionProperties to network interface on 2019-07-01.

* Small changes for descriptions in the property.

* make the new property to be read-only.
  • Loading branch information
bowen0106 authored and sergey-shandar committed Sep 13, 2019
1 parent c03bbe5 commit 36ef84e
Showing 1 changed file with 28 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -897,10 +897,38 @@
"provisioningState": {
"$ref": "./network.json#/definitions/ProvisioningState",
"description": "The provisioning state of the network interface IP configuration."
},
"privateLinkConnectionProperties": {
"$ref": "#/definitions/NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties",
"description": "PrivateLinkConnection properties for the network interface.",
"readOnly": true
}
},
"description": "Properties of IP configuration."
},
"NetworkInterfaceIPConfigurationPrivateLinkConnectionProperties": {
"properties": {
"groupId": {
"type": "string",
"readOnly": true,
"description": "The group ID for current private link connection."
},
"requiredMemberName": {
"type": "string",
"readOnly": true,
"description": "The required member name for current private link connection."
},
"fqdns": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"description": "List of FQDNs for current private link connection."
}
},
"description": "PrivateLinkConnection properties for the network interface."
},
"NetworkInterfaceIPConfiguration": {
"properties": {
"properties": {
Expand Down

0 comments on commit 36ef84e

Please sign in to comment.