Skip to content

Commit

Permalink
Fix circular reference 2023-10-01 (#25879)
Browse files Browse the repository at this point in the history
* TriggerType->ComputeTriggerType

* RecurrenceFrequency->ComputeRecurrenceFrequency

* RecurrenceSchedule->ComputeRecurrenceSchedule

* description

---------

Co-authored-by: Kayla Ames <kaseager@microsoft.com>
  • Loading branch information
kseager and Kayla Ames authored Sep 22, 2023
1 parent cbdb264 commit 65f1653
Showing 1 changed file with 153 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -5508,7 +5508,7 @@
},
"triggerType": {
"description": "[Required] The schedule trigger type.",
"$ref": "./mfe.json#/definitions/TriggerType"
"$ref": "#/definitions/ComputeTriggerType"
},
"recurrence": {
"description": "Required if triggerType is Recurrence.",
Expand All @@ -5524,6 +5524,27 @@
}
}
},
"ComputeTriggerType": {
"enum": [
"Recurrence",
"Cron"
],
"description": "Is the trigger type recurrence or cron.",
"type": "string",
"x-ms-enum": {
"name": "ComputeTriggerType",
"modelAsString": true,
"values": [
{
"value": "Recurrence"
},
{
"value": "Cron"
}
]
},
"additionalProperties": false
},
"ScheduleBase": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -5605,7 +5626,7 @@
"properties": {
"frequency": {
"description": "[Required] The frequency to trigger schedule.",
"$ref": "./mfe.json#/definitions/RecurrenceFrequency"
"$ref": "#/definitions/ComputeRecurrenceFrequency"
},
"interval": {
"description": "[Required] Specifies schedule interval in conjunction with frequency",
Expand All @@ -5624,10 +5645,139 @@
},
"schedule": {
"description": "[Required] The recurrence schedule.",
"$ref": "./mfe.json#/definitions/RecurrenceSchedule"
"$ref": "#/definitions/ComputeRecurrenceSchedule"
}
}
},
"ComputeRecurrenceFrequency": {
"description": "Enum to describe the frequency of a compute recurrence schedule",
"enum": [
"Minute",
"Hour",
"Day",
"Week",
"Month"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeRecurrenceFrequency",
"modelAsString": true,
"values": [
{
"value": "Minute",
"description": "Minute frequency"
},
{
"value": "Hour",
"description": "Hour frequency"
},
{
"value": "Day",
"description": "Day frequency"
},
{
"value": "Week",
"description": "Week frequency"
},
{
"value": "Month",
"description": "Month frequency"
}
]
},
"additionalProperties": false
},
"ComputeRecurrenceSchedule": {
"required": [
"hours",
"minutes"
],
"type": "object",
"properties": {
"hours": {
"description": "[Required] List of hours for the schedule.",
"type": "array",
"items": {
"format": "int32",
"type": "integer"
}
},
"minutes": {
"description": "[Required] List of minutes for the schedule.",
"type": "array",
"items": {
"format": "int32",
"type": "integer"
}
},
"monthDays": {
"description": "List of month days for the schedule",
"type": "array",
"items": {
"format": "int32",
"type": "integer"
},
"x-nullable": true
},
"weekDays": {
"description": "List of days for the schedule.",
"type": "array",
"items": {
"$ref": "#/definitions/ComputeWeekDay"
},
"x-nullable": true
}
},
"additionalProperties": false
},
"ComputeWeekDay": {
"description": "Enum of weekday",
"enum": [
"Monday",
"Tuesday",
"Wednesday",
"Thursday",
"Friday",
"Saturday",
"Sunday"
],
"type": "string",
"x-ms-enum": {
"name": "ComputeWeekDay",
"modelAsString": true,
"values": [
{
"value": "Monday",
"description": "Monday weekday"
},
{
"value": "Tuesday",
"description": "Tuesday weekday"
},
{
"value": "Wednesday",
"description": "Wednesday weekday"
},
{
"value": "Thursday",
"description": "Thursday weekday"
},
{
"value": "Friday",
"description": "Friday weekday"
},
{
"value": "Saturday",
"description": "Saturday weekday"
},
{
"value": "Sunday",
"description": "Sunday weekday"
}
]
},
"additionalProperties": false
},
"Cron": {
"type": "object",
"description": "The workflow trigger cron for ComputeStartStop schedule type.",
Expand Down

0 comments on commit 65f1653

Please sign in to comment.