@@ -58,6 +58,7 @@ def openapi_types(_):
5858 "monitoring_rules_count" : (int ,),
5959 "name" : (str ,),
6060 "pinned" : (bool ,),
61+ "policy_type" : (str ,),
6162 "policy_version" : (str ,),
6263 "priority" : (int ,),
6364 "rule_count" : (int ,),
@@ -78,6 +79,7 @@ def openapi_types(_):
7879 "monitoring_rules_count" : "monitoringRulesCount" ,
7980 "name" : "name" ,
8081 "pinned" : "pinned" ,
82+ "policy_type" : "policyType" ,
8183 "policy_version" : "policyVersion" ,
8284 "priority" : "priority" ,
8385 "rule_count" : "ruleCount" ,
@@ -99,6 +101,7 @@ def __init__(
99101 monitoring_rules_count : Union [int , UnsetType ] = unset ,
100102 name : Union [str , UnsetType ] = unset ,
101103 pinned : Union [bool , UnsetType ] = unset ,
104+ policy_type : Union [str , UnsetType ] = unset ,
102105 policy_version : Union [str , UnsetType ] = unset ,
103106 priority : Union [int , UnsetType ] = unset ,
104107 rule_count : Union [int , UnsetType ] = unset ,
@@ -141,6 +144,9 @@ def __init__(
141144 :param pinned: Whether the policy is pinned
142145 :type pinned: bool, optional
143146
147+ :param policy_type: The type of the policy
148+ :type policy_type: str, optional
149+
144150 :param policy_version: The version of the policy
145151 :type policy_version: str, optional
146152
@@ -182,6 +188,8 @@ def __init__(
182188 kwargs ["name" ] = name
183189 if pinned is not unset :
184190 kwargs ["pinned" ] = pinned
191+ if policy_type is not unset :
192+ kwargs ["policy_type" ] = policy_type
185193 if policy_version is not unset :
186194 kwargs ["policy_version" ] = policy_version
187195 if priority is not unset :
0 commit comments