Skip to content

Commit

Permalink
Review request for Microsoft.BotService to update version stable/2021…
Browse files Browse the repository at this point in the history
…-03-01 (Azure#16377)

* fix api error

* update

* update

* update example

* prettier fix
  • Loading branch information
zhixzhan authored and LeiWang3 committed Mar 31, 2022
1 parent d12c298 commit a877b65
Show file tree
Hide file tree
Showing 5 changed files with 259 additions and 7 deletions.
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

0 comments on commit a877b65

Please sign in to comment.