@@ -18,19 +18,19 @@ public partial class Kubernetes
1818 /// <inheritdoc/>
1919 public Task < WebSocket > WebSocketNamespacedPodExecAsync ( string name , string @namespace = "default" ,
2020 string command = null , string container = null , bool stderr = true , bool stdin = true , bool stdout = true ,
21- bool tty = true , string webSocketSubProtol = null , Dictionary < string , List < string > > customHeaders = null ,
21+ bool tty = true , string webSocketSubProtocol = null , Dictionary < string , List < string > > customHeaders = null ,
2222 CancellationToken cancellationToken = default )
2323 {
2424 return WebSocketNamespacedPodExecAsync ( name , @namespace , new string [ ] { command } , container , stderr , stdin ,
25- stdout , tty , webSocketSubProtol , customHeaders , cancellationToken ) ;
25+ stdout , tty , webSocketSubProtocol , customHeaders , cancellationToken ) ;
2626 }
2727
2828 /// <inheritdoc/>
2929 public virtual async Task < IStreamDemuxer > MuxedStreamNamespacedPodExecAsync (
3030 string name ,
3131 string @namespace = "default" , IEnumerable < string > command = null , string container = null ,
3232 bool stderr = true , bool stdin = true , bool stdout = true , bool tty = true ,
33- string webSocketSubProtol = WebSocketProtocol . V4BinaryWebsocketProtocol ,
33+ string webSocketSubProtocol = WebSocketProtocol . V4BinaryWebsocketProtocol ,
3434 Dictionary < string , List < string > > customHeaders = null ,
3535 CancellationToken cancellationToken = default )
3636 {
@@ -45,7 +45,7 @@ public virtual async Task<IStreamDemuxer> MuxedStreamNamespacedPodExecAsync(
4545 public virtual Task < WebSocket > WebSocketNamespacedPodExecAsync ( string name , string @namespace = "default" ,
4646 IEnumerable < string > command = null , string container = null , bool stderr = true , bool stdin = true ,
4747 bool stdout = true , bool tty = true ,
48- string webSocketSubProtol = WebSocketProtocol . V4BinaryWebsocketProtocol ,
48+ string webSocketSubProtocol = WebSocketProtocol . V4BinaryWebsocketProtocol ,
4949 Dictionary < string , List < string > > customHeaders = null ,
5050 CancellationToken cancellationToken = default )
5151 {
@@ -114,7 +114,7 @@ public virtual Task<WebSocket> WebSocketNamespacedPodExecAsync(string name, stri
114114 uriBuilder . Query =
115115 query . ToString ( 1 , query . Length - 1 ) ; // UriBuilder.Query doesn't like leading '?' chars, so trim it
116116
117- return StreamConnectAsync ( uriBuilder . Uri , webSocketSubProtol , customHeaders ,
117+ return StreamConnectAsync ( uriBuilder . Uri , webSocketSubProtocol , customHeaders ,
118118 cancellationToken ) ;
119119 }
120120
@@ -173,7 +173,7 @@ public Task<WebSocket> WebSocketNamespacedPodPortForwardAsync(string name, strin
173173 /// <inheritdoc/>
174174 public Task < WebSocket > WebSocketNamespacedPodAttachAsync ( string name , string @namespace ,
175175 string container = default , bool stderr = true , bool stdin = false , bool stdout = true ,
176- bool tty = false , string webSocketSubProtol = null , Dictionary < string , List < string > > customHeaders = null ,
176+ bool tty = false , string webSocketSubProtocol = null , Dictionary < string , List < string > > customHeaders = null ,
177177 CancellationToken cancellationToken = default )
178178 {
179179 if ( name == null )
@@ -208,7 +208,7 @@ public Task<WebSocket> WebSocketNamespacedPodAttachAsync(string name, string @na
208208 uriBuilder . Query =
209209 query . ToString ( 1 , query . Length - 1 ) ; // UriBuilder.Query doesn't like leading '?' chars, so trim it
210210
211- return StreamConnectAsync ( uriBuilder . Uri , webSocketSubProtol , customHeaders ,
211+ return StreamConnectAsync ( uriBuilder . Uri , webSocketSubProtocol , customHeaders ,
212212 cancellationToken ) ;
213213 }
214214
0 commit comments