Skip to content

Commit

Permalink
Added new onboarding modes and optinal-readonly evaluationEndTime pro…
Browse files Browse the repository at this point in the history
…perty (#15023)

Co-authored-by: Liran Chen <lirche@microsoft.com>
  • Loading branch information
liranc and Liran Chen authored Jun 30, 2021
1 parent 3f77ff7 commit 34342af
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -312,13 +312,21 @@
"type": "string",
"enum": [
"Default",
"MigratedToAzure"
"MigratedToAzure",
"Evaluation",
"Purchased"
],
"description": "The kind of onboarding for the subscription",
"x-ms-enum": {
"name": "OnboardingKind",
"modelAsString": true
}
},
"evaluationEndTime": {
"type": "string",
"format": "date-time",
"description": "End time of the evaluation period, if such exist",
"readOnly": true
}
},
"required": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Evaluation",
"evaluationEndTime": "2021-06-29T00:00:00.0000000Z"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,8 @@
"sentinelWorkspaceResourceIds": [
"/subscriptions/c4930e90-cd72-4aa5-93e9-2d081d129569/resourceGroups/myRg/providers/Microsoft.OperationalInsights/workspaces/myWorkspace1"
],
"onboardingKind": "Default"
"onboardingKind": "Evaluation",
"evaluationEndTime": "2021-06-29T00:00:00.0000000Z"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -312,13 +312,21 @@
"type": "string",
"enum": [
"Default",
"MigratedToAzure"
"MigratedToAzure",
"Evaluation",
"Purchased"
],
"description": "The kind of onboarding for the subscription",
"x-ms-enum": {
"name": "OnboardingKind",
"modelAsString": true
}
},
"evaluationEndTime": {
"type": "string",
"format": "date-time",
"description": "End time of the evaluation period, if such exist",
"readOnly": true
}
},
"required": [
Expand Down

0 comments on commit 34342af

Please sign in to comment.