Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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 @@ -10,17 +10,7 @@
}
},
"responses": {
"200": {
"body": {
"id": "subscriptions/00000000-0000-0000-0000-000000000000/resourceGroups/testRP/providers/Microsoft.Notebooks/NotebookProxies/testResource",
"name": "testResource",
"type": "Microsoft.Notebooks/NotebookProxies",
"properties": {
"resourceId": "acc07b62291e4a4a800f71ff252e0654",
"hostname": "Azure Notebooks"
}
}
},
"200": {},
"204": {}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -196,10 +196,7 @@
],
"responses": {
"200": {
"description": "OK",
"schema": {
"$ref": "#/definitions/NotebookProxy"
}
"description": "Success"
},
"204": {
"description": "No Content"
Expand Down Expand Up @@ -503,6 +500,18 @@
"hostname": {
"description": "The friendly string identifier of the creator of the NotebookProxy resource.",
"type": "string"
},
"region": {
"description": "The region of the NotebookProxy resource.",
"type": "string"
},
"secondaryAppId": {
"description": "The alternate application ID used for auth token request in the data plane",
"type": "string"
},
"publicDns": {
"description": "The public DNS name",
"type": "string"
}
}
},
Expand Down Expand Up @@ -632,17 +641,70 @@
"readOnly": true,
"type": "string",
"description": "The type of the resource. Ex- Microsoft.Storage/storageAccounts or Microsoft.Notebooks/notebookProxies."
},
"systemData": {
"$ref": "#/definitions/NotebookResourceSystemData"
}
},
"x-ms-azure-resource": true
},
"NotebookResourceSystemData": {
"type": "object",
"description": "System data for notebook resource",
"properties": {
"createdBy": {
"type": "string"
},
"createdByType": {
"$ref": "#/definitions/IdentityType"
},
"createdAt": {
"format": "date-time",
"type": "string"
},
"lastModifiedBy": {
"type": "string"
},
"lastModifiedByType": {
"$ref": "#/definitions/IdentityType"
},
"lastModifiedAt": {
"format": "date-time",
"type": "string"
}
}
},
"IdentityType": {
"enum": [
"User",
"Application",
"ManagedIdentity",
"Key"
],
"type": "string"
},
"CloudError": {
"type": "object",
"description": "Wrapper for error response to follow ARM guidelines.",
"properties": {
"error": {
"description": "The error response.",
"$ref": "#/definitions/ErrorResponse"
},
"code": {
"type": "string",
"description": "[DEPRECATED] Error code."
},
"message": {
"type": "string",
"description": "[DEPRECATED] Error message."
},
"details": {
"type": "array",
"description": "[DEPRECATED] An array of error detail objects.",
"items": {
"$ref": "#/definitions/ErrorDetail"
}
}
}
},
Expand Down Expand Up @@ -697,8 +759,12 @@
"description": "Operation name: {provider}/{resource}/{operation}",
"type": "string"
},
"isDataAction": {
"description": "Indicates whether the operation applies to data-plane. True is for data-plane operations and false is for ARM/control-plane operations.",
"type": "boolean"
},
"display": {
"description": "Display name of operation",
"description": "Display properties of the operation",
"properties": {
"provider": {
"description": "The resource provider name: Microsoft.Notebooks",
Expand Down