SecurityGroupDataType

August 30, 2025 ยท View on GitHub

Link to specification.

Properties

NameTypeDescriptionNotes
namestr[optional]
security_group_folderList[str][optional]
key_lifetimefloat[optional] [default to 0]
security_policy_uristr[optional]
max_future_key_countint[optional] [default to 0]
max_past_key_countint[optional] [default to 0]
security_group_idstr[optional]
role_permissionsList[RolePermissionType][optional]
group_propertiesList[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)

[Back to Model list] [Back to API list] [Back to README]