Skip to content

Commit

Permalink
make compilationJobs name segment consistent and ARM spec conformant (#…
Browse files Browse the repository at this point in the history
…20588)

* make compilationJobs name segment consistent and ARM spec conformant

* update segment descriptions

* update examples for property rename
  • Loading branch information
jackofallops authored Sep 19, 2022
1 parent 5235257 commit 5dbdd7a
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@
"x-ms-odata": "#/definitions/DscCompilationJob"
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/compilationjobs/{jobId}/streams": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/compilationjobs/{compilationJobName}/streams": {
"get": {
"tags": [
"DscCompilationJob"
Expand All @@ -227,12 +227,12 @@
"$ref": "../../common/v1/definitions.json#/parameters/AutomationAccountNameParameter"
},
{
"name": "jobId",
"name": "compilationJobName",
"in": "path",
"required": true,
"type": "string",
"format": "uuid",
"description": "The job id."
"description": "The DSC configuration Id."
},
{
"$ref": "../../common/v1/definitions.json#/parameters/SubscriptionIdParameter"
Expand All @@ -257,7 +257,7 @@
}
}
},
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/compilationjobs/{jobId}/streams/{jobStreamId}": {
"/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.Automation/automationAccounts/{automationAccountName}/compilationjobs/{compilationJobName}/streams/{jobStreamId}": {
"get": {
"tags": [
"DscCompilationJob"
Expand All @@ -280,12 +280,12 @@
"$ref": "../../common/v1/definitions.json#/parameters/AutomationAccountNameParameter"
},
{
"name": "jobId",
"name": "compilationJobName",
"in": "path",
"required": true,
"type": "string",
"format": "uuid",
"description": "The job id."
"description": "The DSC configuration Id."
},
{
"name": "jobStreamId",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"resourceGroupName": "rg",
"automationAccountName": "myAutomationAccount33",
"api-version": "2019-06-01",
"jobId": "836d4e06-2d88-46b4-8500-7febd4906838",
"compilationJobName": "836d4e06-2d88-46b4-8500-7febd4906838",
"jobStreamId": "836d4e06-2d88-46b4-8500-7febd4906838_00636481062421684835_00000000000000000008"
},
"responses": {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"resourceGroupName": "rg",
"automationAccountName": "myAutomationAccount33",
"api-version": "2019-06-01",
"jobId": "836d4e06-2d88-46b4-8500-7febd4906838"
"compilationJobName": "836d4e06-2d88-46b4-8500-7febd4906838"
},
"responses": {
"200": {
Expand Down

0 comments on commit 5dbdd7a

Please sign in to comment.