Skip to content

Commit

Permalink
Merge pull request #559 from Azure/create-pull-request/patch
Browse files Browse the repository at this point in the history
Automatic translation of checklists/network_appdelivery_checklist.en.json
  • Loading branch information
erjosito authored Nov 21, 2023
2 parents 6e3e2ad + b69bc47 commit cfc3354
Show file tree
Hide file tree
Showing 24 changed files with 16,340 additions and 15,746 deletions.
28,496 changes: 14,270 additions & 14,226 deletions checklists/checklist.en.master.json

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions checklists/network_appdelivery_checklist.en.json
Original file line number Diff line number Diff line change
Expand Up @@ -449,6 +449,6 @@
"metadata": {
"name": "Azure Application Delivery Networking",
"state": "GA",
"timestamp": "November 07, 2023"
"timestamp": "November 21, 2023"
}
}
}
140 changes: 82 additions & 58 deletions checklists/network_appdelivery_checklist.es.json

Large diffs are not rendered by default.

140 changes: 82 additions & 58 deletions checklists/network_appdelivery_checklist.ja.json

Large diffs are not rendered by default.

140 changes: 82 additions & 58 deletions checklists/network_appdelivery_checklist.ko.json

Large diffs are not rendered by default.

140 changes: 82 additions & 58 deletions checklists/network_appdelivery_checklist.pt.json

Large diffs are not rendered by default.

454 changes: 454 additions & 0 deletions checklists/network_appdelivery_checklist.zh-Hant.json

Large diffs are not rendered by default.

Binary file modified spreadsheet/macrofree/checklist.en.master.xlsx
Binary file not shown.
Binary file modified spreadsheet/macrofree/network_appdelivery_checklist.en.xlsx
Binary file not shown.
Binary file modified spreadsheet/macrofree/network_appdelivery_checklist.es.xlsx
Binary file not shown.
Binary file modified spreadsheet/macrofree/network_appdelivery_checklist.ja.xlsx
Binary file not shown.
Binary file modified spreadsheet/macrofree/network_appdelivery_checklist.ko.xlsx
Binary file not shown.
Binary file modified spreadsheet/macrofree/network_appdelivery_checklist.pt.xlsx
Binary file not shown.
Binary file not shown.
382 changes: 191 additions & 191 deletions workbooks/alz_checklist.en_network_counters.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion workbooks/alz_checklist.en_network_counters_template.json

Large diffs are not rendered by default.

1,826 changes: 913 additions & 913 deletions workbooks/alz_checklist.en_network_tabcounters.json

Large diffs are not rendered by default.

Large diffs are not rendered by default.

340 changes: 170 additions & 170 deletions workbooks/alz_checklist.en_network_workbook.json

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion workbooks/alz_checklist.en_network_workbook_template.json

Large diffs are not rendered by default.

Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@
"version": "KqlParameterItem/1.0",
"name": "Query2Stats",
"type": 1,
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | project id, subnetId = tostring(subnets.id), subnetPrefixLength = split(subnets.properties.addressPrefix, '/')[1]) on subnetId | extend compliant = (subnetPrefixLength <= 26) | distinct id,compliant| summarize Total = count(), Success = countif(compliant==1), Failed = countif(compliant==0) | extend SuccessPercent = iff(Total==0, 100, 100*toint(Success)/toint(Total)) | extend FullyCompliant = iff(SuccessPercent == 100, 'Yes', 'No') | project Query1Stats=tostring(pack_all())",
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | mv-expand subnets.properties.addressPrefixes | project id, subnetId = tostring(subnets.id), prefix1 = subnets.properties.addressPrefix, prefix2 = subnets.properties.addressPrefixes | mv-expand prefix2 | extend prefix = iff(isnotnull(prefix1), prefix1, prefix2) | extend subnetPrefixLength = split(prefix, '/')[1])on subnetId | extend compliant = (subnetPrefixLength <= 24 or subnetPrefixLength == 64) | distinct id,compliant| summarize Total = count(), Success = countif(compliant==1), Failed = countif(compliant==0) | extend SuccessPercent = iff(Total==0, 100, 100*toint(Success)/toint(Total)) | extend FullyCompliant = iff(SuccessPercent == 100, 'Yes', 'No') | project Query1Stats=tostring(pack_all())",
"crossComponentResources": [
"{Subscription}"
],
Expand Down Expand Up @@ -367,7 +367,7 @@
"style": "tabs",
"links": [
{
"id": "77049e08-d295-49a2-b6ba-b08d387b08d8",
"id": "bedcb024-7bab-488c-9eda-25029e44dbd3",
"cellValue": "VisibleTab",
"linkTarget": "parameter",
"linkLabel": "Network Topology and Connectivity ({Tab0Success:value}/{Tab0Total:value})",
Expand Down Expand Up @@ -519,15 +519,15 @@
{
"type": 1,
"content": {
"json": "Your application gateways should be deployed in subnets with IP prefixes equal or larger than /26. Check [this link](https://learn.microsoft.com/azure/application-gateway/configuration-infrastructure#size-of-the-subnet) for further information.. [This training](https://learn.microsoft.com/learn/paths/secure-application-delivery/) can help to educate yourself on this."
"json": "Your Application Gateways v2 should be deployed in subnets with IP prefixes equal or larger than /24. Check [this link](https://learn.microsoft.com/azure/application-gateway/configuration-infrastructure#size-of-the-subnet) for further information.. [This training](https://learn.microsoft.com/learn/paths/secure-application-delivery/) can help to educate yourself on this."
},
"name": "querytext2"
},
{
"type": 3,
"content": {
"version": "KqlItem/1.0",
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | project id, subnetId = tostring(subnets.id), subnetPrefixLength = split(subnets.properties.addressPrefix, '/')[1]) on subnetId | extend compliant = (subnetPrefixLength <= 26) | distinct id,compliant | extend onlyFailed = {OnlyFailed:label} | where compliant == 0 or not (onlyFailed == 1) | project-away onlyFailed",
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | mv-expand subnets.properties.addressPrefixes | project id, subnetId = tostring(subnets.id), prefix1 = subnets.properties.addressPrefix, prefix2 = subnets.properties.addressPrefixes | mv-expand prefix2 | extend prefix = iff(isnotnull(prefix1), prefix1, prefix2) | extend subnetPrefixLength = split(prefix, '/')[1])on subnetId | extend compliant = (subnetPrefixLength <= 24 or subnetPrefixLength == 64) | distinct id,compliant | extend onlyFailed = {OnlyFailed:label} | where compliant == 0 or not (onlyFailed == 1) | project-away onlyFailed",
"size": 0,
"queryType": 1,
"resourceType": "microsoft.resourcegraph/resources",
Expand Down

Large diffs are not rendered by default.

6 changes: 3 additions & 3 deletions workbooks/network_appdelivery_checklist.en_workbook.json
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@
"style": "tabs",
"links": [
{
"id": "c74e73d7-5d8a-4ceb-882b-c4fab4c1a8af",
"id": "aa013ab8-05e1-453b-a73c-8f3457465dd0",
"cellValue": "VisibleTab",
"linkTarget": "parameter",
"linkLabel": "Network Topology and Connectivity",
Expand Down Expand Up @@ -222,15 +222,15 @@
{
"type": 1,
"content": {
"json": "Your application gateways should be deployed in subnets with IP prefixes equal or larger than /26. Check [this link](https://learn.microsoft.com/azure/application-gateway/configuration-infrastructure#size-of-the-subnet) for further information.. [This training](https://learn.microsoft.com/learn/paths/secure-application-delivery/) can help to educate yourself on this."
"json": "Your Application Gateways v2 should be deployed in subnets with IP prefixes equal or larger than /24. Check [this link](https://learn.microsoft.com/azure/application-gateway/configuration-infrastructure#size-of-the-subnet) for further information.. [This training](https://learn.microsoft.com/learn/paths/secure-application-delivery/) can help to educate yourself on this."
},
"name": "querytext2"
},
{
"type": 3,
"content": {
"version": "KqlItem/1.0",
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | project id, subnetId = tostring(subnets.id), subnetPrefixLength = split(subnets.properties.addressPrefix, '/')[1]) on subnetId | extend compliant = (subnetPrefixLength <= 26) | distinct id,compliant | extend onlyFailed = {OnlyFailed:label} | where compliant == 0 or not (onlyFailed == 1) | project-away onlyFailed",
"query": "resources | where type=='microsoft.network/applicationgateways' | extend subnetId = tostring(properties.gatewayIPConfigurations[0].properties.subnet.id) | project id, subnetId | join (resources | where type=='microsoft.network/virtualnetworks' | project id,subnets=properties.subnets | mv-expand subnets | mv-expand subnets.properties.addressPrefixes | project id, subnetId = tostring(subnets.id), prefix1 = subnets.properties.addressPrefix, prefix2 = subnets.properties.addressPrefixes | mv-expand prefix2 | extend prefix = iff(isnotnull(prefix1), prefix1, prefix2) | extend subnetPrefixLength = split(prefix, '/')[1])on subnetId | extend compliant = (subnetPrefixLength <= 24 or subnetPrefixLength == 64) | distinct id,compliant | extend onlyFailed = {OnlyFailed:label} | where compliant == 0 or not (onlyFailed == 1) | project-away onlyFailed",
"size": 0,
"queryType": 1,
"resourceType": "microsoft.resourcegraph/resources",
Expand Down

Large diffs are not rendered by default.

0 comments on commit cfc3354

Please sign in to comment.