Question 1easymultiple choice
Read the full Demonstrate the capabilities of Power Pages explanation →PL-900 Demonstrate the capabilities of Power Pages • Complete Question Bank
Complete PL-900 Demonstrate the capabilities of Power Pages question bank — all 0 questions with answers and detailed explanations.
Refer to the exhibit.
{
"authentication": {
"provider": "Microsoft Entra ID",
"tenantId": "contoso.onmicrosoft.com",
"requireHttps": true
}
}Refer to the exhibit.
<webrole name="Customer Support">
<permission type="entity" name="incident">
<scope>Contact</scope>
<privileges>
<privilege type="read" access="Global" />
<privilege type="write" access="Deep" />
<privilege type="create" access="Global" />
</privileges>
</permission>
</webrole>Refer to the exhibit.
{
"dataverse": {
"tables": [
{
"name": "cr5f3_orders",
"columns": [
{"name": "cr5f3_ordernumber", "type": "string"},
{"name": "cr5f3_total", "type": "money"}
]
}
]
}
}{
"policy": {
"allowedOperations": ["Create", "Read", "Update"],
"scope": "Contact",
"webRoles": ["Authenticated Users"]
}
}{
"authentication": {
"provider": "Microsoft Entra ID",
"tenantId": "contoso.onmicrosoft.com",
"clientId": "12345678-1234-1234-1234-123456789abc",
"redirectUrl": "https://contoso.powerpages.microsoft.com/signin-aad"
}
}{
"liquids": [
{
"name": "CurrentUser",
"snippet": "{% if user %}<p>Welcome, {{ user.fullname }}!</p>{% else %}<p>Welcome, guest!</p>{% endif %}"
}
]
}{
"settings": {
"Authentication/Registration/Enabled": true,
"Authentication/Registration/LocalLoginAllowed": false,
"Authentication/Registration/ExternalLoginRequired": true
}
}{
"table": "Contact",
"permissions": [
{"scope": "Global", "read": true, "write": false, "create": false, "delete": false},
{"scope": "Contact", "read": true, "write": true, "create": true, "delete": true}
]
}{
"pages": [
{"name": "Home", "partial_url": "/home", "state": "Published"},
{"name": "Contact", "partial_url": "/contact", "state": "Draft"}
]
}{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#",
"contentVersion": "1.0.0.0",
"resources": [
{
"type": "Microsoft.PowerPlatform/portals",
"apiVersion": "2022-03-01-preview",
"name": "myPortal",
"location": "[resourceGroup().location]",
"properties": {
"displayName": "My Portal",
"portalUrl": "https://myportal.powerappsportals.com",
"authentication": {
"provider": "Local"
}
}
}
]
}{
"entityPermission": {
"name": "Support Staff Read",
"entityName": "case",
"scope": "Global",
"permission": "Read",
"webRoles": [
{
"name": "Support Staff"
}
]
}
}<!DOCTYPE html>
<html>
<head>
<title>My Portal</title>
<link rel="stylesheet" href="https://myportal.cdn.powerappsportals.com/theme.css">
</head>
<body>
<div id="main">
{% include 'Header' %}
<h1>Welcome</h1>
</div>
</body>
</html>{
"policy": {
"allowedIpAddresses": ["131.107.0.0/16"],
"disallowedIpAddresses": [],
"allowedDomains": ["contoso.com"]
}
}{
"webRole": {
"name": "Partner",
"permissions": [
{"table": "Proposal", "access": "Read"},
{"table": "Invoice", "access": "Read, Write"}
]
}
}{"text":"Refer to the exhibit.\n\n{\n \"$schema\": \"https://schema.management.azure.com/schemas/2019-04-01/deploymentTemplate.json#\",\n \"contentVersion\": \"1.0.0.0\",\n \"parameters\": {\n \"websiteName\": {\n \"type\": \"string\",\n \"defaultValue\": \"contosoportal\"\n }\n },\n \"resources\": [\n {\n \"type\": \"Microsoft.Web/sites/config\",\n \"apiVersion\": \"2022-09-01\",\n \"name\": \"[concat(parameters('websiteName'), '/appsettings')]\",\n \"properties\": {\n \"PortalEndpoint\": \"https://contosoportal.powerappsportals.com\",\n \"AuthenticationEnabled\": \"true\",\n \"AllowedExternalDomains\": \"contoso.com\"\n }\n }\n ]\n}","description":"An ARM template snippet for configuring Power Pages app settings."}