File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
sdk/ai/azure-ai-projects/azure/ai/projects/models Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -430,7 +430,7 @@ class ApplicationInsightsConfiguration(InputData, discriminator="app_insights"):
430430 :vartype resource_id: str
431431 :ivar query: Query to fetch the data. Required.
432432 :vartype query: str
433- :ivar service_name: Service name. Required.
433+ :ivar service_name: Service name.
434434 :vartype service_name: str
435435 :ivar connection_string: Connection String to connect to ApplicationInsights.
436436 :vartype connection_string: str
@@ -442,8 +442,8 @@ class ApplicationInsightsConfiguration(InputData, discriminator="app_insights"):
442442 """LogAnalytic Workspace resourceID associated with ApplicationInsights. Required."""
443443 query : str = rest_field ()
444444 """Query to fetch the data. Required."""
445- service_name : str = rest_field (name = "serviceName" )
446- """Service name. Required. """
445+ service_name : Optional [ str ] = rest_field (name = "serviceName" )
446+ """Service name."""
447447 connection_string : Optional [str ] = rest_field (name = "connectionString" )
448448 """Connection String to connect to ApplicationInsights."""
449449
@@ -453,7 +453,7 @@ def __init__(
453453 * ,
454454 resource_id : str ,
455455 query : str ,
456- service_name : str ,
456+ service_name : Optional [ str ] = None ,
457457 connection_string : Optional [str ] = None ,
458458 ) -> None : ...
459459
You can’t perform that action at this time.
0 commit comments