diff --git a/onelens_backend_client_v2/models.py b/onelens_backend_client_v2/models.py index d4a928ff..121a3e4d 100644 --- a/onelens_backend_client_v2/models.py +++ b/onelens_backend_client_v2/models.py @@ -1,6 +1,6 @@ # generated by datamodel-codegen: # filename: -# timestamp: 2024-12-03T05:28:12+00:00 +# timestamp: 2024-12-03T07:17:48+00:00 from __future__ import annotations @@ -3140,9 +3140,6 @@ class TenantPolicyFilters(BaseModel): change_types: Optional[List[ChangeType]] = Field( [], description="Filter by change type.", title="Change Types" ) - effort_levels: Optional[List[Effort]] = Field( - [], description="Filter by effort level.", title="Effort Levels" - ) class TenantPolicyState(str, Enum): @@ -3199,6 +3196,11 @@ class TenantPolicyTicketDetailsMixin(BaseModel): description="The hash of the policy sql query", title="Rule Definition Hash", ) + feature_name: Optional[str] = Field( + None, + description="The name of the feature associated with the policy.", + title="Feature Name", + ) class TenantProviderAttributes(str, Enum): @@ -6382,7 +6384,6 @@ class GetTenantPoliciesAPIRequest(BaseModel): "risk_levels": [], "cost_saving_categories": [], "change_types": [], - "effort_levels": [], } ), description="Filters to apply to the tenant policies.", @@ -6405,7 +6406,6 @@ class GetTenantPoliciesRequest(BaseModel): "risk_levels": [], "cost_saving_categories": [], "change_types": [], - "effort_levels": [], } ), description="Filters to apply to the tenant policies.",