SecurityGroupDataType
August 30, 2025 ยท View on GitHub
Properties
| Name | Type | Description | Notes |
|---|---|---|---|
| name | str | [optional] | |
| security_group_folder | List[str] | [optional] | |
| key_lifetime | float | [optional] [default to 0] | |
| security_policy_uri | str | [optional] | |
| max_future_key_count | int | [optional] [default to 0] | |
| max_past_key_count | int | [optional] [default to 0] | |
| security_group_id | str | [optional] | |
| role_permissions | List[RolePermissionType] | [optional] | |
| group_properties | List[KeyValuePair] | [optional] |
Example
from opcua_webapi.models.security_group_data_type import SecurityGroupDataType
# TODO update the JSON string below
json = "{}"
# create an instance of SecurityGroupDataType from a JSON string
security_group_data_type_instance = SecurityGroupDataType.from_json(json)
# print the JSON string representation of the object
print(SecurityGroupDataType.to_json())
# convert the object into a dict
security_group_data_type_dict = security_group_data_type_instance.to_dict()
# create an instance of SecurityGroupDataType from a dict
security_group_data_type_from_dict = SecurityGroupDataType.from_dict(security_group_data_type_dict)