Skip to content

Latest commit

 

History

History
32 lines (23 loc) · 949 Bytes

File metadata and controls

32 lines (23 loc) · 949 Bytes

Bundle

Properties

Name Type Description Notes
name str Name of the bundle [optional]
identifier str Identifier of the bundle [optional]
type str [optional]
rules List[Rule] [optional]

Example

from sysdig_client.models.bundle import Bundle

# TODO update the JSON string below
json = "{}"
# create an instance of Bundle from a JSON string
bundle_instance = Bundle.from_json(json)
# print the JSON string representation of the object
print(Bundle.to_json())

# convert the object into a dict
bundle_dict = bundle_instance.to_dict()
# create an instance of Bundle from a dict
bundle_from_dict = Bundle.from_dict(bundle_dict)

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