@@ -41,7 +41,7 @@ internal ClientsClient(ClientDiagnostics clientDiagnostics, HttpPipeline pipelin
4141 }
4242
4343 /// <summary> Creates a new client. </summary>
44- /// <param name="body"> The Client to use. </param>
44+ /// <param name="body"> The <see cref=" Client"/> to use. </param>
4545 /// <param name="cancellationToken"> The cancellation token to use. </param>
4646 /// <remarks> Creates a client. </remarks>
4747 public virtual async Task < Response < ClientWithSecret > > CreateAsync ( Client body = null , CancellationToken cancellationToken = default )
@@ -60,7 +60,7 @@ public virtual async Task<Response<ClientWithSecret>> CreateAsync(Client body =
6060 }
6161
6262 /// <summary> Creates a new client. </summary>
63- /// <param name="body"> The Client to use. </param>
63+ /// <param name="body"> The <see cref=" Client"/> to use. </param>
6464 /// <param name="cancellationToken"> The cancellation token to use. </param>
6565 /// <remarks> Creates a client. </remarks>
6666 public virtual Response < ClientWithSecret > Create ( Client body = null , CancellationToken cancellationToken = default )
@@ -79,7 +79,7 @@ public virtual Response<ClientWithSecret> Create(Client body = null, Cancellatio
7979 }
8080
8181 /// <summary> Deletes a client. </summary>
82- /// <param name="id"> The String to use. </param>
82+ /// <param name="id"> The <see cref="string"/> to use. </param>
8383 /// <param name="cancellationToken"> The cancellation token to use. </param>
8484 public virtual async Task < Response > DeleteAsync ( string id , CancellationToken cancellationToken = default )
8585 {
@@ -97,7 +97,7 @@ public virtual async Task<Response> DeleteAsync(string id, CancellationToken can
9797 }
9898
9999 /// <summary> Deletes a client. </summary>
100- /// <param name="id"> The String to use. </param>
100+ /// <param name="id"> The <see cref="string"/> to use. </param>
101101 /// <param name="cancellationToken"> The cancellation token to use. </param>
102102 public virtual Response Delete ( string id , CancellationToken cancellationToken = default )
103103 {
@@ -115,7 +115,7 @@ public virtual Response Delete(string id, CancellationToken cancellationToken =
115115 }
116116
117117 /// <summary> Get a client. </summary>
118- /// <param name="id"> The String to use. </param>
118+ /// <param name="id"> The <see cref="string"/> to use. </param>
119119 /// <param name="cancellationToken"> The cancellation token to use. </param>
120120 public virtual async Task < Response < Client > > GetAsync ( string id , CancellationToken cancellationToken = default )
121121 {
@@ -133,7 +133,7 @@ public virtual async Task<Response<Client>> GetAsync(string id, CancellationToke
133133 }
134134
135135 /// <summary> Get a client. </summary>
136- /// <param name="id"> The String to use. </param>
136+ /// <param name="id"> The <see cref="string"/> to use. </param>
137137 /// <param name="cancellationToken"> The cancellation token to use. </param>
138138 public virtual Response < Client > Get ( string id , CancellationToken cancellationToken = default )
139139 {
@@ -151,10 +151,10 @@ public virtual Response<Client> Get(string id, CancellationToken cancellationTok
151151 }
152152
153153 /// <summary> Updates a client. </summary>
154- /// <param name="id"> The String to use. </param>
155- /// <param name="body"> The Client to use. </param>
154+ /// <param name="id"> The <see cref="string"/> to use. </param>
155+ /// <param name="body"> The <see cref=" Client"/> to use. </param>
156156 /// <param name="cancellationToken"> The cancellation token to use. </param>
157- public virtual async Task < Response < Client > > UpdateAsync ( string id , Client body = null , CancellationToken cancellationToken = default )
157+ public virtual async Task < Response < Client > > UpdateAsync ( string id , Client body , CancellationToken cancellationToken = default )
158158 {
159159 using var scope = _clientDiagnostics . CreateScope ( "ClientsClient.Update" ) ;
160160 scope . Start ( ) ;
@@ -170,10 +170,10 @@ public virtual async Task<Response<Client>> UpdateAsync(string id, Client body =
170170 }
171171
172172 /// <summary> Updates a client. </summary>
173- /// <param name="id"> The String to use. </param>
174- /// <param name="body"> The Client to use. </param>
173+ /// <param name="id"> The <see cref="string"/> to use. </param>
174+ /// <param name="body"> The <see cref=" Client"/> to use. </param>
175175 /// <param name="cancellationToken"> The cancellation token to use. </param>
176- public virtual Response < Client > Update ( string id , Client body = null , CancellationToken cancellationToken = default )
176+ public virtual Response < Client > Update ( string id , Client body , CancellationToken cancellationToken = default )
177177 {
178178 using var scope = _clientDiagnostics . CreateScope ( "ClientsClient.Update" ) ;
179179 scope . Start ( ) ;
@@ -189,10 +189,10 @@ public virtual Response<Client> Update(string id, Client body = null, Cancellati
189189 }
190190
191191 /// <summary> Updates a client key. </summary>
192- /// <param name="id"> The String to use. </param>
193- /// <param name="body"> The NewClientKeyRequestBody to use. </param>
192+ /// <param name="id"> The <see cref="string"/> to use. </param>
193+ /// <param name="body"> The <see cref=" NewClientKeyRequestBody"/> to use. </param>
194194 /// <param name="cancellationToken"> The cancellation token to use. </param>
195- public virtual async Task < Response < ClientWithSecret > > NewKeyAsync ( string id , NewClientKeyRequestBody body = null , CancellationToken cancellationToken = default )
195+ public virtual async Task < Response < ClientWithSecret > > NewKeyAsync ( string id , NewClientKeyRequestBody body , CancellationToken cancellationToken = default )
196196 {
197197 using var scope = _clientDiagnostics . CreateScope ( "ClientsClient.NewKey" ) ;
198198 scope . Start ( ) ;
@@ -208,10 +208,10 @@ public virtual async Task<Response<ClientWithSecret>> NewKeyAsync(string id, New
208208 }
209209
210210 /// <summary> Updates a client key. </summary>
211- /// <param name="id"> The String to use. </param>
212- /// <param name="body"> The NewClientKeyRequestBody to use. </param>
211+ /// <param name="id"> The <see cref="string"/> to use. </param>
212+ /// <param name="body"> The <see cref=" NewClientKeyRequestBody"/> to use. </param>
213213 /// <param name="cancellationToken"> The cancellation token to use. </param>
214- public virtual Response < ClientWithSecret > NewKey ( string id , NewClientKeyRequestBody body = null , CancellationToken cancellationToken = default )
214+ public virtual Response < ClientWithSecret > NewKey ( string id , NewClientKeyRequestBody body , CancellationToken cancellationToken = default )
215215 {
216216 using var scope = _clientDiagnostics . CreateScope ( "ClientsClient.NewKey" ) ;
217217 scope . Start ( ) ;
0 commit comments