Juniper Networks · Schema

Configlet

AutomationCloudData CenterEnterpriseNetworkingSDNSecurityFortune 1000

Properties

Name Type Description
@key integer Configlet internal ID.
name string Configlet name.
description string Configlet description.
cliConfigletContent string CLI configuration template content with variables.
executionType string Execution mode.
View JSON Schema on GitHub

JSON Schema

juniper-networks-configlet-schema.json Raw ↑
{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "$id": "#/components/schemas/Configlet",
  "title": "Configlet",
  "type": "object",
  "properties": {
    "@key": {
      "type": "integer",
      "description": "Configlet internal ID."
    },
    "name": {
      "type": "string",
      "description": "Configlet name."
    },
    "description": {
      "type": "string",
      "description": "Configlet description."
    },
    "cliConfigletContent": {
      "type": "string",
      "description": "CLI configuration template content with variables."
    },
    "executionType": {
      "type": "string",
      "enum": [
        "SingleExecution",
        "GroupExecution"
      ],
      "description": "Execution mode."
    }
  }
}