diff --git a/sdk/digitaltwins/Azure.DigitalTwins.Core/src/DigitalTwinsClient.cs b/sdk/digitaltwins/Azure.DigitalTwins.Core/src/DigitalTwinsClient.cs index 439661972423c..5c4c040acf1b2 100644 --- a/sdk/digitaltwins/Azure.DigitalTwins.Core/src/DigitalTwinsClient.cs +++ b/sdk/digitaltwins/Azure.DigitalTwins.Core/src/DigitalTwinsClient.cs @@ -173,7 +173,8 @@ public virtual Response GetDigitalTwin(string digitalTwinId, GetDigitalT } /// - /// Creates a digital twin asynchronously. + /// Creates a digital twin asynchronously. If the provided digital twin Id is already in use, then this will attempt to replace the existing digital twin + /// with the provided digital twin. /// /// The Id of the digital twin. /// The application/json digital twin to create. @@ -215,7 +216,8 @@ public virtual Task> CreateDigitalTwinAsync(string digitalTwinI } /// - /// Creates a digital twin synchronously. + /// Creates a digital twin synchronously. If the provided digital twin Id is already in use, then this will attempt to replace the existing digital twin + /// with the provided digital twin. /// /// The Id of the digital twin. /// The application/json digital twin to create. @@ -819,7 +821,8 @@ public virtual Response DeleteRelationship(string digitalTwinId, string relation } /// - /// Creates a relationship on a digital twin asynchronously. + /// Creates a relationship on a digital twin asynchronously. If the provided relationship Id is already in use, this will attempt to replace the + /// existing relationship with the provided relationship. /// /// The Id of the source digital twin. /// The Id of the relationship which is being created. @@ -864,7 +867,8 @@ public virtual Task> CreateRelationshipAsync(string digitalTwin } /// - /// Creates a relationship on a digital twin synchronously. + /// Creates a relationship on a digital twin synchronously. If the provided relationship Id is already in use, this will attempt to replace the + /// existing relationship with the provided relationship. /// /// The Id of the source digital twin. /// The Id of the relationship to delete. @@ -1620,7 +1624,8 @@ public virtual Response GetEventRoute(string eventRouteId, GetEventR } /// - /// Creates an event route asynchronously. + /// Creates an event route asynchronously. If the provided event route Id is already in use, then this will attempt to replace the existing + /// event route with the provided event route. /// /// The Id of the event route to create. /// The event route data containing the endpoint and optional filter. @@ -1651,7 +1656,8 @@ public virtual Task CreateEventRouteAsync(string eventRouteId, EventRo } /// - /// Creates an event route synchronously. + /// Creates an event route synchronously. If the provided event route Id is already in use, then this will attempt to replace the existing + /// event route with the provided event route. /// /// The Id of the event route to create. /// The event route data containing the endpoint and optional filter.