Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixing Access Connector / Workspace Swagger Correctness #21783

Merged
merged 3 commits into from
Dec 13, 2022
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 @@ -318,6 +318,10 @@
"identity": {
"$ref": "#/definitions/IdentityData"
},
"systemData": {
"description": "The system metadata relating to this resource",
"$ref": "../../../../../common-types/resource-management/v3/types.json#/definitions/systemData"
},
"properties": {
"description": "Azure Databricks accessConnector properties",
"$ref": "#/definitions/AccessConnectorProperties"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -795,6 +795,7 @@
"$ref": "#/definitions/ManagedIdentityConfiguration"
},
"diskEncryptionSetId": {
"readOnly": true,
"type": "string",
"description": "The resource Id of the managed disk encryption set."
},
Expand Down Expand Up @@ -1413,7 +1414,7 @@
"description": "The object that represents the operation.",
"properties": {
"provider": {
"description": "Service provider: Microsoft.ResourceProvider",
"description": "Service provider: ex Microsoft.Databricks",
"type": "string"
},
"resource": {
Expand All @@ -1423,6 +1424,10 @@
"operation": {
"description": "Operation type: Read, write, delete, etc.",
"type": "string"
},
"description": {
"description": "Description for the resource operation.",
"type": "string"
}
}
}
Expand Down Expand Up @@ -1578,6 +1583,13 @@
"description": "Private endpoint",
"$ref": "#/definitions/PrivateEndpoint"
},
"groupIds": {
"type": "array",
"description": "GroupIds from the private link service resource.",
"items": {
"type": "string"
}
},
"privateLinkServiceConnectionState": {
"title": "Private link service service connection state",
"description": "Private endpoint connection state",
Expand Down Expand Up @@ -1625,7 +1637,7 @@
"type": "string",
"description": "The description for the current state of a private endpoint connection"
},
"actionRequired": {
"actionsRequired": {
"type": "string",
"description": "Actions required for a private endpoint connection"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by johndoe@company.com",
"actionRequired": "None"
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
"privateLinkServiceConnectionState": {
"status": "Pending",
"description": "Please approve my request!",
"actionRequired": "None"
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by databricksadmin@contoso.com",
"actionRequired": "None"
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
Expand All @@ -45,7 +45,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Approved by databricksadmin@contoso.com",
"actionRequired": "None"
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionRequired": "None"
"actionsRequired": "None"
},
"provisioningState": "Succeeded"
}
Expand Down