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 @@ -8,7 +8,7 @@
"name": "default",
"type": "Microsoft.Security/autoProvisioningSettings",
"properties": {
"provisioningSetting": "Automatic"
Copy link
Contributor

Choose a reason for hiding this comment

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

nit: _example for the file name unnecessarily increases the file path size, you could simply rename this as CreateAutoProvisioningSettingsSubscription.json
not a blocker

Copy link
Contributor Author

Choose a reason for hiding this comment

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

we have simultaneous PRs on this repo, in order to avoid conflicts we will change it after they will be completed 😄

"autoProvision": "On"
}
}
},
Expand All @@ -19,7 +19,7 @@
"name": "default",
"type": "Microsoft.Security/autoProvisioningSettings",
"properties": {
"provisioningSetting": "Automatic"
"autoProvision": "On"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "default",
"type": "Microsoft.Security/autoProvisioningSettings",
"properties": {
"provisioningSetting": "Automatic"
"autoProvision": "On"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
"name": "default",
"type": "Microsoft.Security/autoProvisioningSettings",
"properties": {
"provisioningSetting": "Automatic"
"autoProvision": "On"
}
}]
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -1020,15 +1020,15 @@
"type": "object",
"description": "describes properties of an auto provisioning setting",
"properties": {
"provisioningSetting": {
"autoProvision": {
"type": "string",
"description": "Describes what kind of security agent provisioning action to take",
"enum": ["Automatic", "Off"],
"enum": ["On", "Off"],
"x-ms-enum": {
"name": "provisioningSetting",
Copy link
Contributor

Choose a reason for hiding this comment

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

Please acknowledge that this will be a breaking change in the SDKs generated

Copy link
Contributor Author

Choose a reason for hiding this comment

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

we acknowledge

"name": "autoProvision",
"modelAsString": true,
"values": [{
"value": "Automatic",
"value": "On",
"description": "Install missing security agent on VMs automatically"
},
{
Expand All @@ -1040,7 +1040,7 @@
}
},
"required": [
"provisioningSetting"
"autoProvision"
]
},
"ComplianceList": {
Expand Down