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 @@ -31,7 +31,8 @@
"recommendationType": "IoT_SharedCredentials",
"status": "Disabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
},
Expand Down Expand Up @@ -143,7 +144,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
},
Expand Down Expand Up @@ -254,7 +256,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
},
{
Expand Down Expand Up @@ -224,7 +225,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -117,7 +117,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,8 @@
"name": "TLS cipher suite upgrade",
"status": "Enabled"
}
]
],
"unmaskedIpLoggingStatus": "Enabled"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -455,6 +455,29 @@
},
"recommendationsConfiguration": {
"$ref": "#/definitions/RecommendationConfigurationList"
},
"unmaskedIpLoggingStatus" : {
"description": "Unmasked IP address logging status",
"type": "string",
"enum": [
"Disabled",
"Enabled"
],
"default": "Disabled",
"x-ms-enum": {
"name": "UnmaskedIpLoggingStatus",
"modelAsString": true,
"values": [
{
"value": "Disabled",
"description": "Unmasked IP logging is disabled"
},
{
"value": "Enabled",
"description": "Unmasked IP logging is enabled"
}
]
}
}
},
"required": [
Expand Down