Skip to content

Latest commit

 

History

History
31 lines (22 loc) · 1.33 KB

File metadata and controls

31 lines (22 loc) · 1.33 KB

PolicyScheduling

Scheduling information for a scheduled policy.

Properties

Name Type Description Notes
recurrent_rule str Recurrent Rule defines how the policy recurs, using iCalendar RRULE format (e.g., `FREQ=DAILY;INTERVAL=1`).It supports fields like FREQ, INTERVAL, BYDAY. Refer to RFC 5545: https://datatracker.ietf.org/doc/html/rfc5545#section-3.3.10 [optional]
start_time datetime The time to run the policy action in milliseconds since epoch (UTC) (e.g., `1706713140000`).

Example

from instana_client.models.policy_scheduling import PolicyScheduling

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

# convert the object into a dict
policy_scheduling_dict = policy_scheduling_instance.to_dict()
# create an instance of PolicyScheduling from a dict
policy_scheduling_from_dict = PolicyScheduling.from_dict(policy_scheduling_dict)

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