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

Review request for Microsoft.BotService to update version stable/2021-03-01 #16377

Merged
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 @@ -1562,6 +1562,24 @@
"readOnly": true,
"description": "The bot's endpoint version"
},
"allSettings": {
"description": "Contains resource all settings defined as key/value pairs.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"parameters": {
"description": "Contains resource parameters defined as key/value pairs.",
"type": "object",
"additionalProperties": {
"type": "string"
}
},
"manifestUrl": {
"type": "string",
"description": "The bot's manifest url"
},
"msaAppType": {
"type": "string",
"description": "Microsoft App Type for the bot",
Expand Down Expand Up @@ -1634,10 +1652,18 @@
"type": "string",
"description": "The CMK Url"
},
"cmekEncryptionStatus": {
"type": "string",
"description": "The CMK encryption status"
},
"isIsolated": {
"type": "boolean",
"description": "Whether the bot is in an isolated network"
},
"isStreamingSupported": {
"type": "boolean",
"description": "Whether the bot is streaming supported"
},
"isDeveloperAppInsightsApiKeySet": {
"type": "boolean",
"description": "Whether the bot is developerAppInsightsApiKey set"
Expand Down Expand Up @@ -1670,6 +1696,15 @@
"appPasswordHint": {
"type": "string",
"description": "The hint (e.g. keyVault secret resourceId) on how to fetch the app secret"
},
"provisioningState": {
"type": "string",
"readOnly": true,
"description": "Provisioning state of the resource"
},
"publishingCredentials": {
"type": "string",
"description": "Publishing credentials of the resource"
}
},
"description": "The parameters to provide for the Bot.",
Expand Down Expand Up @@ -1746,6 +1781,11 @@
"etag": {
"type": "string",
"description": "Entity Tag of the resource"
},
"provisioningState": {
"type": "string",
"readOnly": true,
"description": "Provisioning state of the resource"
}
}
},
Expand Down Expand Up @@ -1923,6 +1963,10 @@
"provisioningState": {
"type": "string",
"description": "Provisioning state of the resource"
},
"location": {
"type": "string",
"description": "Location of the resource"
}
}
},
Expand All @@ -1943,6 +1987,14 @@
"incomingCallRoute": {
"type": "string",
"description": "Webhook for Microsoft Teams channel calls"
},
"deploymentEnvironment": {
"type": "string",
"description": "Deployment environment for Microsoft Teams channel calls"
},
"acceptedTerms": {
"type": "boolean",
"description": "Whether this channel accepted terms"
}
},
"description": "The parameters to provide for the Microsoft Teams channel.",
Expand Down Expand Up @@ -2077,6 +2129,10 @@
"type": "string",
"description": "Location of the resource"
},
"provisioningState": {
"type": "string",
"description": "Provisioning state of the resource"
},
"etag": {
"type": "string",
"description": "Entity Tag of the resource"
Expand Down Expand Up @@ -2124,6 +2180,10 @@
"provisioningState": {
"type": "string",
"description": "Provisioning state of the resource"
},
"location": {
"type": "string",
"description": "Location of the resource"
}
}
},
Expand Down Expand Up @@ -2656,6 +2716,10 @@
"items": {
"$ref": "#/definitions/ConnectionSettingParameter"
}
},
"provisioningState": {
"type": "string",
"description": "Provisioning state of the resource"
}
},
"description": "Properties for a Connection Setting Item"
Expand Down Expand Up @@ -2740,6 +2804,23 @@
"type": "string",
"description": "Default Name for the Service Provider",
"readOnly": true
},
"metadata": {
"type": "object",
"description": "Meta data for the Service Provider",
"readOnly": true,
"properties": {
"constraints": {
"description": "the constraints of the bot meta data.",
"type": "object",
"properties": {
"required": {
"description": "Whether required the constraints of the bot meta data.",
"type": "boolean"
}
}
}
}
}
},
"description": "Extra Parameters specific to each Service Provider"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,7 @@
"properties": {
"channelName": "FacebookChannel",
"properties": {
"verifyToken": "othertoken",
"appId": "id",
"appSecret": null,
"callbackUrl": "appid",
"isEnabled": true,
"pages": [
Expand Down
Loading