Skip to content

Commit

Permalink
Merge pull request #4 from SubaMoorthy/fix-swagger-kpi-bugs
Browse files Browse the repository at this point in the history
fix small swagger bugs
  • Loading branch information
SubaMoorthy authored Mar 4, 2021
2 parents 36d6366 + 2818e5f commit 7daf6ea
Showing 1 changed file with 33 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2373,6 +2373,22 @@
"primaryUserAssignedIdentity": {
"description": "The user assigned identity resource id that represents the workspace identity.",
"type": "string"
},
"subscriptionState": {
"readOnly":true,
"$ref": "#/definitions/SubscriptionState"
},
"subscriptionStatusChangeTimeStampUtc": {
"type": "string",
"readOnly": true,
"format": "date-time",
"title": "Subscription state change time.",
"description": "The time at which the subscription state changed."
},
"tenantId": {
"description": "The tenant id associated with this workspace.",
"type": "string",
"readOnly": true
}
}
},
Expand Down Expand Up @@ -4102,6 +4118,22 @@
"modelAsString": true
}
},
"SubscriptionState": {
"type": "string",
"description": "The state AzureML workspace's subscription",
"enum": [
"suspended",
"active",
"expired",
"submitted",
"rejected",
"cancelled"
],
"x-ms-enum": {
"name": "SubscriptionState",
"modelAsString": false
}
},
"MachineLearningServiceError": {
"type": "object",
"description": "Wrapper for error response to follow ARM guidelines.",
Expand Down Expand Up @@ -4569,10 +4601,7 @@
"description": "The ArmId of the user assigned identity that will be used to access the customer managed key vault",
"type": "string"
}
},
"required": [
"userAssignedIdentity"
]
}
},
"ServiceResource": {
"type": "object",
Expand Down

0 comments on commit 7daf6ea

Please sign in to comment.