Skip to content
Closed
Changes from 1 commit
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 @@ -8517,12 +8517,6 @@
"name": "scheduleId",
"description": "The scheduled id for listing the job triggered from",
"type": "string"
},
{
"in": "query",
"name": "properties",
"description": "Comma-separated list of user property names (and optionally values). Example: prop1,prop2=value2",
"type": "string"
}
],
"responses": {
Expand Down Expand Up @@ -14232,6 +14226,22 @@
"x-ms-discriminator-value": "Command",
"additionalProperties": false
},
"ComponentConfiguration": {
"description": "Used for sweep over component",
"type": "object",
"properties": {
"settings": {

Copy link
Copy Markdown

Choose a reason for hiding this comment

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

Should this be called pipeline_settings? As defined in the spec: https://github.com/Azure/azureml_run_specification/pull/916

Copy link
Copy Markdown
Contributor Author

Choose a reason for hiding this comment

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

Fixed

"description": "Pipeline settings, for things like ContinueRunOnStepFailure etc.",
"type": "object",
"x-ms-mutability": [
"create",
"read"
],
"x-nullable": true
}
},
"additionalProperties": false
},
"ComponentContainer": {
"description": "Component container definition.\r\n<see href=\"https://docs.microsoft.com/en-us/azure/machine-learning/reference-yaml-component-command\" />",
"type": "object",
Expand Down Expand Up @@ -25486,8 +25496,7 @@
"required": [
"objective",
"samplingAlgorithm",
"searchSpace",
"trial"
"searchSpace"
],
"type": "object",
"allOf": [
Expand All @@ -25496,6 +25505,15 @@
}
],
"properties": {
"componentConfiguration": {
"description": "Component Configuration for sweep over component",
"$ref": "#/definitions/ComponentConfiguration",
"x-ms-mutability": [
"create",
"read"
],
"x-nullable": true
},
"earlyTermination": {
"description": "Early termination policies enable canceling poor-performing runs before they complete",
"$ref": "#/definitions/EarlyTerminationPolicy",
Expand Down Expand Up @@ -25569,8 +25587,9 @@
"type": "object"
},
"trial": {
"description": "[Required] Trial component definition.",
"$ref": "#/definitions/TrialComponent"
"description": "Trial component definition.",
"$ref": "#/definitions/TrialComponent",
"x-nullable": true
}
},
"x-ms-discriminator-value": "Sweep",
Expand Down