Skip to content

Commit

Permalink
updating location capabilities for 2023-05-01-preview (#25539)
Browse files Browse the repository at this point in the history
Co-authored-by: Ray Boyd <[email protected]>
  • Loading branch information
rayboyd30 and Ray Boyd authored Sep 18, 2023
1 parent 29cf328 commit e770272
Show file tree
Hide file tree
Showing 2 changed files with 170 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,8 @@
"supportedElasticPoolEditions",
"supportedManagedInstanceVersions",
"supportedInstancePoolEditions",
"supportedManagedInstanceEditions"
"supportedManagedInstanceEditions",
"supportedJobAgentVersions"
],
"x-ms-enum": {
"name": "CapabilityGroup",
Expand Down Expand Up @@ -579,6 +580,119 @@
}
}
},
"JobAgentEditionCapability": {
"description": "The job agent edition capability.",
"type": "object",
"properties": {
"name": {
"description": "The job agent edition name.",
"type": "string",
"readOnly": true
},
"supportedServiceLevelObjectives": {
"description": "The list of supported service level objectives for the edition.",
"type": "array",
"items": {
"$ref": "#/definitions/JobAgentServiceLevelObjectiveCapability"
},
"readOnly": true,
"x-ms-identifiers": []
},
"status": {
"description": "The status of the capability.",
"enum": [
"Visible",
"Available",
"Default",
"Disabled"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "CapabilityStatus",
"modelAsString": false
}
},
"reason": {
"description": "The reason for the capability not being available.",
"type": "string"
}
}
},
"JobAgentServiceLevelObjectiveCapability": {
"description": "The job agent service level objective capability.",
"type": "object",
"properties": {
"name": {
"description": "The service objective name.",
"type": "string",
"readOnly": true
},
"sku": {
"$ref": "../../../common/v1/types.json#/definitions/Sku",
"description": "The sku.",
"readOnly": true
},
"status": {
"description": "The status of the capability.",
"enum": [
"Visible",
"Available",
"Default",
"Disabled"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "CapabilityStatus",
"modelAsString": false
}
},
"reason": {
"description": "The reason for the capability not being available.",
"type": "string"
}
}
},
"JobAgentVersionCapability": {
"description": "The job agent version capability.",
"type": "object",
"properties": {
"name": {
"description": "The job agent version name.",
"type": "string",
"readOnly": true
},
"supportedEditions": {
"description": "The list of supported editions.",
"type": "array",
"items": {
"$ref": "#/definitions/JobAgentEditionCapability"
},
"readOnly": true,
"x-ms-identifiers": []
},
"status": {
"description": "The status of the capability.",
"enum": [
"Visible",
"Available",
"Default",
"Disabled"
],
"type": "string",
"readOnly": true,
"x-ms-enum": {
"name": "CapabilityStatus",
"modelAsString": false
}
},
"reason": {
"description": "The reason for the capability not being available.",
"type": "string"
}
}
},
"LicenseTypeCapability": {
"description": "The license type capability",
"type": "object",
Expand Down Expand Up @@ -634,6 +748,15 @@
},
"readOnly": true
},
"supportedJobAgentVersions": {
"description": "The list of supported job agent versions.",
"type": "array",
"items": {
"$ref": "#/definitions/JobAgentVersionCapability"
},
"readOnly": true,
"x-ms-identifiers": []
},
"status": {
"description": "The status of the capability.",
"enum": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3203,6 +3203,52 @@
"status": "Default"
}
],
"supportedJobAgentVersions": [
{
"name": "1.0",
"status": "Default",
"supportedEditions": [
{
"name": "1.0",
"status": "Default",
"supportedServiceLevelObjectives": [
{
"name": "JA100",
"status": "Default",
"sku": {
"name": "JA100",
"capacity": 100
}
},
{
"name": "JA200",
"status": "Available",
"sku": {
"name": "JA200",
"capacity": 200
}
},
{
"name": "JA400",
"status": "Available",
"sku": {
"name": "JA400",
"capacity": 400
}
},
{
"name": "JA800",
"status": "Available",
"sku": {
"name": "JA800",
"capacity": 800
}
}
]
}
]
}
],
"status": "Available"
}
}
Expand Down

0 comments on commit e770272

Please sign in to comment.