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

Updating Microsoft.Security\Pricing API Documentation #19439

Merged
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 @@ -59,7 +59,11 @@
"type": "Microsoft.Security/pricings",
"properties": {
"pricingTier": "Free",
"freeTrialRemainingTime": "PT0S"
"freeTrialRemainingTime": "PT0S",
"deprecated": true,
"replacedBy": [
"Containers"
]
}
},
{
Expand All @@ -68,7 +72,11 @@
"type": "Microsoft.Security/pricings",
"properties": {
"pricingTier": "Free",
"freeTrialRemainingTime": "PT0S"
"freeTrialRemainingTime": "PT0S",
"deprecated": true,
"replacedBy": [
"Containers"
]
}
},
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,19 @@
"format": "duration",
"readOnly": true,
"description": "The duration left for the subscriptions free trial period - in ISO 8601 format (e.g. P3Y6M4DT12H30M5S)."
},
"deprecated": {
"type": "boolean",
"readOnly": true,
"description": "Optional. True if the plan is deprecated. If there are replacing plans they will appear in `replacedBy` property"
},
"replacedBy": {
"type": "array",
"items": {
"type": "string"
},
"readOnly": true,
"description": "Optional. List of plans that replace this plan. This property exists only if this plan is deprecated."
}
},
"required": [
Expand Down