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

[Hub Generated] Review request for Microsoft.BotService to add version preview/2021-05-01-preview #15182

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 @@ -1616,6 +1616,14 @@
"schemaTransformationVersion": {
"type": "string",
"description": "The channel schema transformation version for the bot"
},
"privateEndpointConnections": {
"type": "array",
"readOnly": true,
"description": "List of Private Endpoint Connections configured for the bot",
"items": {
"$ref": "./privatelinks.json#/definitions/PrivateEndpointConnection"
}
}
},
"description": "The parameters to provide for the Bot.",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,8 +41,24 @@
"isCmekEnabled": true,
"cmekKeyVaultUrl": "https://myCmekKey",
"isIsolated": false,
"schemaTransformationVersion": "1.0",
"disableLocalAuth": true,
"schemaTransformationVersion": "1.0"
"privateEndpointConnections": [
{
"id": "/subscriptions/subscription-id/resourceGroups/OneResourceGroupName/providers/Microsoft.BotService/botServices/samplebotname/privateEndpointConnections/privatelink",
"properties": {
"provisioningState": "Succeeded",
"privateEndpoint": {
"id": "/subscriptions/subscription-id/resourceGroups/OneResourceGroupName/providers/Microsoft.Network/privateEndpoints/privatelink"
},
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionsRequired": "None"
}
}
}
]
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionRequired": "None"
"actionsRequired": "None"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionRequired": "None"
"actionsRequired": "None"
}
}
},
Expand All @@ -37,7 +37,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionRequired": "None"
"actionsRequired": "None"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"privateLinkServiceConnectionState": {
"status": "Approved",
"description": "Auto-Approved",
"actionRequired": "None"
"actionsRequired": "None"
}
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@
"type": "string",
"description": "The reason for approval/rejection of the connection."
},
"actionRequired": {
"actionsRequired": {
swagatmishra2007 marked this conversation as resolved.
Show resolved Hide resolved
"type": "string",
"description": "A message indicating if changes on the service provider require any updates on the consumer."
}
Expand Down