Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

NSP related comments #28950

Merged
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 @@ -203,6 +203,7 @@
"provisioningState": {
"description": "Provisioning state of Network Security Perimeter configuration propagation",
"enum": [
"Creating",
"Accepted",
"Succeeded",
"Failed",
Expand Down Expand Up @@ -261,12 +262,13 @@
"type": "object",
"properties": {
"name": {
"description": "Name of the resource",
"description": "Name of the profile",
"type": "string"
},
"accessRulesVersion": {
"description": "Current access rules version",
"type": "number"
"type": "integer",
"format": "int32"
},
"accessRules": {
"description": "List of Access Rules",
Expand All @@ -280,7 +282,8 @@
},
"diagnosticSettingsVersion": {
"description": "Diagnostic settings version",
"type": "number"
"type": "integer",
"format": "int32"
},
"enabledLogCategories": {
"description": "Enabled logging categories",
Expand Down Expand Up @@ -411,20 +414,22 @@
}
},
"NetworkSecurityPerimeter": {
"description": "NetworkSecurityPerimeter related information",
"description": "Information about Network Security Perimeter",
"type": "object",
"readOnly": true,
"properties": {
"id": {
"description": "The ARM identifier of the resource",
"type": "string"
"readOnly": true,
"type": "string",
"format": "arm-id",
"description": "Fully qualified resource ID for the resource. E.g. \"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}\""
},
"perimeterGuid": {
"description": "Guid of the resource",
"description": "Guid of the Network Security Perimeter",
"type": "string"
},
"location": {
"description": "Location of the resource",
"description": "Location of the Network Security Perimeter",
"type": "string"
}
}
Expand Down