@@ -54,6 +54,7 @@ class InstanceSensitiveData(BaseModel):
5454 metrics_url : Annotated [str , Field (min_length = 1 , strict = True )] = Field (alias = "metricsUrl" )
5555 name : Optional [Annotated [str , Field (strict = True , max_length = 300 )]] = ""
5656 otlp_grpc_traces_url : Annotated [str , Field (min_length = 1 , strict = True )] = Field (alias = "otlpGrpcTracesUrl" )
57+ otlp_http_logs_url : Annotated [str , Field (min_length = 1 , strict = True )] = Field (alias = "otlpHttpLogsUrl" )
5758 otlp_http_traces_url : Annotated [str , Field (min_length = 1 , strict = True )] = Field (alias = "otlpHttpTracesUrl" )
5859 otlp_traces_url : Annotated [str , Field (min_length = 1 , strict = True )] = Field (alias = "otlpTracesUrl" )
5960 plan : PlanModel
@@ -84,6 +85,7 @@ class InstanceSensitiveData(BaseModel):
8485 "metricsUrl" ,
8586 "name" ,
8687 "otlpGrpcTracesUrl" ,
88+ "otlpHttpLogsUrl" ,
8789 "otlpHttpTracesUrl" ,
8890 "otlpTracesUrl" ,
8991 "plan" ,
@@ -170,6 +172,7 @@ def from_dict(cls, obj: Optional[Dict[str, Any]]) -> Optional[Self]:
170172 "metricsUrl" : obj .get ("metricsUrl" ),
171173 "name" : obj .get ("name" ) if obj .get ("name" ) is not None else "" ,
172174 "otlpGrpcTracesUrl" : obj .get ("otlpGrpcTracesUrl" ),
175+ "otlpHttpLogsUrl" : obj .get ("otlpHttpLogsUrl" ),
173176 "otlpHttpTracesUrl" : obj .get ("otlpHttpTracesUrl" ),
174177 "otlpTracesUrl" : obj .get ("otlpTracesUrl" ),
175178 "plan" : PlanModel .from_dict (obj ["plan" ]) if obj .get ("plan" ) is not None else None ,
0 commit comments