mirror of
https://github.com/netbirdio/docs.git
synced 2026-04-16 07:26:35 +00:00
Update nextjs (#550)
This commit is contained in:
@@ -65,7 +65,7 @@ function renderProperties(properties, required = [], depth = 0) {
|
|||||||
}
|
}
|
||||||
%>>%>
|
%>>%>
|
||||||
<% if ((type === 'object' && value.properties) || (type === 'object[]' && value.items.properties)) { %>
|
<% if ((type === 'object' && value.properties) || (type === 'object[]' && value.items.properties)) { %>
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary><%- value.description || 'More Information' %></summary>
|
<summary><%- value.description || 'More Information' %></summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
<% if (type === 'object[]') { %>
|
<% if (type === 'object[]') { %>
|
||||||
|
|||||||
@@ -14,9 +14,11 @@ const withMDX = nextMDX({
|
|||||||
})
|
})
|
||||||
|
|
||||||
|
|
||||||
|
const isProd = process.env.NODE_ENV === 'production'
|
||||||
|
|
||||||
/** @type {import('next').NextConfig} */
|
/** @type {import('next').NextConfig} */
|
||||||
const nextConfig = {
|
const nextConfig = {
|
||||||
assetPrefix: '/docs-static',
|
assetPrefix: isProd ? '/docs-static' : undefined,
|
||||||
reactStrictMode: true,
|
reactStrictMode: true,
|
||||||
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
|
pageExtensions: ['js', 'jsx', 'ts', 'tsx', 'mdx'],
|
||||||
experimental: {
|
experimental: {
|
||||||
|
|||||||
@@ -48,7 +48,7 @@
|
|||||||
"lodash": "^4.17.21",
|
"lodash": "^4.17.21",
|
||||||
"mdast-util-to-string": "^3.2.0",
|
"mdast-util-to-string": "^3.2.0",
|
||||||
"mdx-annotations": "^0.1.1",
|
"mdx-annotations": "^0.1.1",
|
||||||
"next": "^13.4.1",
|
"next": "14.2.35",
|
||||||
"openapi-types": "^12.1.0",
|
"openapi-types": "^12.1.0",
|
||||||
"postcss-focus-visible": "^8.0.2",
|
"postcss-focus-visible": "^8.0.2",
|
||||||
"react": "18.2.0",
|
"react": "18.2.0",
|
||||||
|
|||||||
@@ -1,5 +1,6 @@
|
|||||||
import { useEffect, useRef } from 'react'
|
import { useEffect, useRef } from 'react'
|
||||||
import Link from 'next/link'
|
import Link from 'next/link'
|
||||||
|
import { useRouter } from 'next/router'
|
||||||
import { useInView } from 'framer-motion'
|
import { useInView } from 'framer-motion'
|
||||||
|
|
||||||
import { useSectionStore } from '@/components/SectionProvider'
|
import { useSectionStore } from '@/components/SectionProvider'
|
||||||
@@ -39,9 +40,12 @@ function Eyebrow({ tag, label }) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Anchor({ id, inView, children }) {
|
function Anchor({ id, inView, children }) {
|
||||||
|
const router = useRouter()
|
||||||
|
const pathname = router.pathname
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<Link
|
<Link
|
||||||
href={`#${id}`}
|
href={`${pathname}#${id}`}
|
||||||
className="group text-inherit no-underline hover:text-inherit"
|
className="group text-inherit no-underline hover:text-inherit"
|
||||||
>
|
>
|
||||||
{inView && (
|
{inView && (
|
||||||
|
|||||||
@@ -220,7 +220,7 @@ export function Layout({ children, title, tableOfContents }) {
|
|||||||
className="dark:hover:text-slate-300 dark:text-slate-400 text-slate-500 hover:text-slate-700 font-normal'"
|
className="dark:hover:text-slate-300 dark:text-slate-400 text-slate-500 hover:text-slate-700 font-normal'"
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon icon={faPaperclip} style={iconStyle} className="icon pr-1" />
|
<FontAwesomeIcon icon={faPaperclip} style={iconStyle} className="icon pr-1" />
|
||||||
<text>Copy link</text>
|
<span>Copy link</span>
|
||||||
</button>
|
</button>
|
||||||
</li>
|
</li>
|
||||||
<li key="edit-on-github">
|
<li key="edit-on-github">
|
||||||
@@ -230,7 +230,7 @@ export function Layout({ children, title, tableOfContents }) {
|
|||||||
style={{display: "flex", alignItems: 'center'}}
|
style={{display: "flex", alignItems: 'center'}}
|
||||||
>
|
>
|
||||||
<FontAwesomeIcon icon={faGithub} style={iconStyle} className="icon pr-1" />
|
<FontAwesomeIcon icon={faGithub} style={iconStyle} className="icon pr-1" />
|
||||||
<text>Edit on Github</text>
|
<span>Edit on Github</span>
|
||||||
</Link>
|
</Link>
|
||||||
</li>
|
</li>
|
||||||
</ol>
|
</ol>
|
||||||
|
|||||||
@@ -436,7 +436,7 @@ echo $response;
|
|||||||
|
|
||||||
<Properties><Property name="settings" type="object" required={true}>
|
<Properties><Property name="settings" type="object" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -502,7 +502,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="extra" type="object" required={false}>
|
<Property name="extra" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -560,7 +560,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="onboarding" type="object" required={false}>
|
<Property name="onboarding" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
@@ -238,7 +238,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="nameservers" type="object[]" required={true} minLen={1} maxLen={3}>
|
<Property name="nameservers" type="object[]" required={true} minLen={1} maxLen={3}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Nameserver list</summary>
|
<summary>Nameserver list</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -892,7 +892,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="nameservers" type="object[]" required={true} minLen={1} maxLen={3}>
|
<Property name="nameservers" type="object[]" required={true} minLen={1} maxLen={3}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Nameserver list</summary>
|
<summary>Nameserver list</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
@@ -242,7 +242,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="resources" type="object[]" required={false}>
|
<Property name="resources" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -802,7 +802,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="resources" type="object[]" required={false}>
|
<Property name="resources" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
@@ -254,7 +254,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="port_ranges" type="object[]" required={false}>
|
<Property name="port_ranges" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of port ranges that are forwarded by the ingress peer</summary>
|
<summary>List of port ranges that are forwarded by the ingress peer</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -281,7 +281,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="direct_port" type="object" required={false}>
|
<Property name="direct_port" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -862,7 +862,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="port_ranges" type="object[]" required={false}>
|
<Property name="port_ranges" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of port ranges that are forwarded by the ingress peer</summary>
|
<summary>List of port ranges that are forwarded by the ingress peer</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -889,7 +889,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="direct_port" type="object" required={false}>
|
<Property name="direct_port" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
@@ -330,7 +330,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="rules" type="object[]" required={true}>
|
<Property name="rules" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Policy rule object for policy UI editor</summary>
|
<summary>Policy rule object for policy UI editor</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -371,7 +371,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="port_ranges" type="object[]" required={false}>
|
<Property name="port_ranges" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Policy rule affected ports ranges list</summary>
|
<summary>Policy rule affected ports ranges list</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -408,7 +408,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="sourceResource" type="object" required={false}>
|
<Property name="sourceResource" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -435,7 +435,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="destinationResource" type="object" required={false}>
|
<Property name="destinationResource" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1442,7 +1442,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="rules" type="object[]" required={true}>
|
<Property name="rules" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Policy rule object for policy UI editor</summary>
|
<summary>Policy rule object for policy UI editor</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1483,7 +1483,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="port_ranges" type="object[]" required={false}>
|
<Property name="port_ranges" type="object[]" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Policy rule affected ports ranges list</summary>
|
<summary>Policy rule affected ports ranges list</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1520,7 +1520,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="sourceResource" type="object" required={false}>
|
<Property name="sourceResource" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1547,7 +1547,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="destinationResource" type="object" required={false}>
|
<Property name="destinationResource" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
@@ -300,13 +300,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="checks" type="object" required={false}>
|
<Property name="checks" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of objects that perform the actual checks</summary>
|
<summary>List of objects that perform the actual checks</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="nb_version_check" type="object" required={false}>
|
<Properties><Property name="nb_version_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -323,13 +323,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="os_version_check" type="object" required={false}>
|
<Property name="os_version_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="android" type="object" required={false}>
|
<Properties><Property name="android" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -346,7 +346,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="darwin" type="object" required={false}>
|
<Property name="darwin" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -363,7 +363,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="ios" type="object" required={false}>
|
<Property name="ios" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -380,7 +380,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="linux" type="object" required={false}>
|
<Property name="linux" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check with the kernel version</summary>
|
<summary>Posture check with the kernel version</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -397,7 +397,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="windows" type="object" required={false}>
|
<Property name="windows" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check with the kernel version</summary>
|
<summary>Posture check with the kernel version</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -420,13 +420,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="geo_location_check" type="object" required={false}>
|
<Property name="geo_location_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for geo location</summary>
|
<summary>Posture check for geo location</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="locations" type="object[]" required={true}>
|
<Properties><Property name="locations" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of geo locations to which the policy applies</summary>
|
<summary>List of geo locations to which the policy applies</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -459,7 +459,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="peer_network_range_check" type="object" required={false}>
|
<Property name="peer_network_range_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for allow or deny access based on peer local network addresses</summary>
|
<summary>Posture check for allow or deny access based on peer local network addresses</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -481,13 +481,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="process_check" type="object" required={false}>
|
<Property name="process_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture Check for binaries exist and are running in the peer’s system</summary>
|
<summary>Posture Check for binaries exist and are running in the peer’s system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="processes" type="object[]" required={true}>
|
<Properties><Property name="processes" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1476,13 +1476,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="checks" type="object" required={false}>
|
<Property name="checks" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of objects that perform the actual checks</summary>
|
<summary>List of objects that perform the actual checks</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="nb_version_check" type="object" required={false}>
|
<Properties><Property name="nb_version_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1499,13 +1499,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="os_version_check" type="object" required={false}>
|
<Property name="os_version_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="android" type="object" required={false}>
|
<Properties><Property name="android" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1522,7 +1522,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="darwin" type="object" required={false}>
|
<Property name="darwin" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1539,7 +1539,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="ios" type="object" required={false}>
|
<Property name="ios" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for the version of operating system</summary>
|
<summary>Posture check for the version of operating system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1556,7 +1556,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="linux" type="object" required={false}>
|
<Property name="linux" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check with the kernel version</summary>
|
<summary>Posture check with the kernel version</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1573,7 +1573,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="windows" type="object" required={false}>
|
<Property name="windows" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check with the kernel version</summary>
|
<summary>Posture check with the kernel version</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1596,13 +1596,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="geo_location_check" type="object" required={false}>
|
<Property name="geo_location_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for geo location</summary>
|
<summary>Posture check for geo location</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="locations" type="object[]" required={true}>
|
<Properties><Property name="locations" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>List of geo locations to which the policy applies</summary>
|
<summary>List of geo locations to which the policy applies</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1635,7 +1635,7 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="peer_network_range_check" type="object" required={false}>
|
<Property name="peer_network_range_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture check for allow or deny access based on peer local network addresses</summary>
|
<summary>Posture check for allow or deny access based on peer local network addresses</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
@@ -1657,13 +1657,13 @@ echo $response;
|
|||||||
</Property>
|
</Property>
|
||||||
<Property name="process_check" type="object" required={false}>
|
<Property name="process_check" type="object" required={false}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>Posture Check for binaries exist and are running in the peer’s system</summary>
|
<summary>Posture Check for binaries exist and are running in the peer’s system</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
<Properties><Property name="processes" type="object[]" required={true}>
|
<Properties><Property name="processes" type="object[]" required={true}>
|
||||||
|
|
||||||
<details class="custom-details" open>
|
<details className="custom-details" open>
|
||||||
<summary>More Information</summary>
|
<summary>More Information</summary>
|
||||||
<Properties>
|
<Properties>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user