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
Expand Up @@ -6,6 +6,7 @@
"resourceGroupName": "rg1",
"networkSecurityPerimeterName": "nsp1",
"profileName": "profile1",
"accessRuleName": "accessRule1",
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This change is done to fix model validation check . No change is made in its API swagger.

"parameters": {
"properties": {}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"provisioningState": "Succeeded",
"autoApprovedRemotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"provisioningState": "Succeeded",
"autoApprovedRemotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
"provisioningState": "Succeeded",
"autoApprovedRemotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand All @@ -48,6 +49,7 @@
"provisioningState": "Succeeded",
"autoApprovedRemotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp2",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
"provisioningState": "Succeeded",
"remotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@
"provisioningState": "Succeeded",
"remotePerimeterResourceId": "/subscriptions/subId/resourceGroups/rg1/providers/Microsoft.Network/networkSecurityPerimeters/nsp1",
"remotePerimeterGuid": "guid",
"remotePerimeterLocation": "westus2",
"localInboundProfiles": [
"*"
],
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1736,6 +1736,24 @@
"modelAsString": true
}
},
"NSPLinkProvisioningState": {
"type": "string",
"readOnly": true,
"description": "The current provisioning state of NSP Link/LinkReference.",
"enum": [
"Succeeded",
"Creating",
"Updating",
"Deleting",
"Accepted",
"Failed",
"WaitForRemoteCompletion"
],
"x-ms-enum": {
"name": "nspLinkProvisioningState",
"modelAsString": true
}
},
"NspAccessRuleReconcile": {
"type": "object",
"properties": {},
Expand Down Expand Up @@ -1779,7 +1797,7 @@
"properties": {
"provisioningState": {
"readOnly": true,
"$ref": "#/definitions/NSPProvisioningState",
"$ref": "#/definitions/NSPLinkProvisioningState",
"description": "The provisioning state of the NSP Link resource."
},
"autoApprovedRemotePerimeterResourceId": {
Expand All @@ -1795,6 +1813,11 @@
"type": "string",
"description": "Remote NSP Guid with which the link gets created."
},
"remotePerimeterLocation": {
"readOnly": true,
"type": "string",
"description": "Remote NSP location with which the link gets created."
},
"localInboundProfiles": {
"type": "array",
"items": {
Expand Down Expand Up @@ -1889,7 +1912,7 @@
"properties": {
"provisioningState": {
"readOnly": true,
"$ref": "#/definitions/NSPProvisioningState",
"$ref": "#/definitions/NSPLinkProvisioningState",
"description": "The provisioning state of the NSP LinkReference resource."
},
"remotePerimeterResourceId": {
Expand All @@ -1902,6 +1925,11 @@
"type": "string",
"description": "Remote NSP Guid with which the link is created."
},
"remotePerimeterLocation": {
"readOnly": true,
"type": "string",
"description": "Remote NSP location with which the link gets created."
},
"localInboundProfiles": {
"type": "array",
"items": {
Expand Down