@@ -21,7 +21,7 @@ class RumRetentionFilterUpdateAttributes(ModelNormal):
2121 validations = {
2222 "sample_rate" : {
2323 "inclusive_maximum" : 100 ,
24- "inclusive_minimum" : 0 ,
24+ "inclusive_minimum" : 0.1 ,
2525 },
2626 }
2727
@@ -34,7 +34,7 @@ def openapi_types(_):
3434 "event_type" : (RumRetentionFilterEventType ,),
3535 "name" : (str ,),
3636 "query" : (str ,),
37- "sample_rate" : (int ,),
37+ "sample_rate" : (float ,),
3838 }
3939
4040 attribute_map = {
@@ -51,7 +51,7 @@ def __init__(
5151 event_type : Union [RumRetentionFilterEventType , UnsetType ] = unset ,
5252 name : Union [str , UnsetType ] = unset ,
5353 query : Union [str , UnsetType ] = unset ,
54- sample_rate : Union [int , UnsetType ] = unset ,
54+ sample_rate : Union [float , UnsetType ] = unset ,
5555 ** kwargs ,
5656 ):
5757 """
@@ -69,8 +69,8 @@ def __init__(
6969 :param query: The query string for a RUM retention filter.
7070 :type query: str, optional
7171
72- :param sample_rate: The sample rate for a RUM retention filter, between 0 and 100.
73- :type sample_rate: int , optional
72+ :param sample_rate: The sample rate for a RUM retention filter, between 0.1 and 100.
73+ :type sample_rate: float , optional
7474 """
7575 if enabled is not unset :
7676 kwargs ["enabled" ] = enabled
0 commit comments