Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(specs): Initial panos_application_group codegen spec #378

Merged
merged 1 commit into from
Feb 7, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
137 changes: 137 additions & 0 deletions specs/objects/application-group.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,137 @@
name: application
terraform_provider_config:
description: Application Group
skip_resource: false
skip_datasource: false
resource_type: entry
resource_variants: []
suffix: application_group
plural_suffix: ''
plural_name: ''
plural_description: ''
go_sdk_config:
skip: false
package:
- objects
- application
- group
xpath_suffix:
- application-group
locations:
- name: shared
xpath:
path:
- config
- shared
vars: []
description: Location in Shared Panorama
devices:
- panorama
- ngfw
validators: []
required: false
read_only: false
- name: vsys
xpath:
path:
- config
- devices
- $ngfw_device
- vsys
- $vsys
vars:
- name: ngfw_device
description: The NGFW device name
required: false
default: localhost.localdomain
validators: []
type: entry
- name: vsys
description: The Virtual System name
required: false
default: vsys1
validators:
- type: not-values
spec:
values:
- value: shared
error: The vsys name cannot be "shared". Use the "shared" location instead
type: entry
description: Located in a specific Virtual System
devices:
- ngfw
- panorama
validators: []
required: false
read_only: false
- name: device-group
xpath:
path:
- config
- devices
- $panorama_device
- device-group
- $device_group
vars:
- name: panorama_device
description: Panorama device name
required: false
default: localhost.localdomain
validators: []
type: entry
- name: device_group
description: Device Group name
required: true
validators:
- type: not-values
spec:
values:
- value: shared
error: The device group name cannot be "shared". Use the "shared" location
instead
type: entry
description: Located in a specific Device Group
devices:
- panorama
validators: []
required: false
read_only: false
entries:
- name: name
description: ''
validators: []
imports: []
spec:
params:
- name: disable-override
type: enum
profiles:
- xpath:
- disable-override
validators:
- type: values
spec:
values:
- 'yes'
- 'no'
spec:
default: 'no'
values:
- value: 'yes'
- value: 'no'
description: disable object override in child device groups
required: false
- name: members
type: list
profiles:
- xpath:
- members
type: member
validators: []
spec:
type: string
items:
type: string
description: ''
required: false
variants: []
Loading