FmcTemplateVariable¶
Specify the list of template variables configured on the template. All required template variables must be defined here, and should have values valid for the type of the variable. Any invalid input will result in the template not being applied to the device upon onboarding. Note: Any variables defined here that are not present in the template will be ignored.
Properties¶
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | Specify the name of the object to override. | |
| value | str | Specify the value of the template variable. The value specified should be valid for the template variable, as defined in the template configuration. |
Example¶
from scc_firewall_manager_sdk.models.fmc_template_variable import FmcTemplateVariable
# TODO update the JSON string below
json = "{}"
# create an instance of FmcTemplateVariable from a JSON string
fmc_template_variable_instance = FmcTemplateVariable.from_json(json)
# print the JSON string representation of the object
print(FmcTemplateVariable.to_json())
# convert the object into a dict
fmc_template_variable_dict = fmc_template_variable_instance.to_dict()
# create an instance of FmcTemplateVariable from a dict
fmc_template_variable_form_dict = fmc_template_variable.from_dict(fmc_template_variable_dict)