diff --git a/CHANGELOG.md b/CHANGELOG.md index cc5687dc..c569f23e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,8 @@ +## 0.27.0 +* Change endpoint filtering query parameters to `id` and `url`. +* Add support for getting secrets by vault. + ## 0.26.0 * Add support for `ids` and `urls` query parameters when listing endpoint resources. diff --git a/Gemfile.lock b/Gemfile.lock index db80597b..8ed84d75 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -1,7 +1,7 @@ PATH remote: . specs: - ngrok-api (0.25.0) + ngrok-api (0.26.0) GEM remote: https://rubygems.org/ diff --git a/doc/NgrokAPI.html b/doc/NgrokAPI.html index 4f00b7ad..f45aaf31 100644 --- a/doc/NgrokAPI.html +++ b/doc/NgrokAPI.html @@ -147,7 +147,7 @@
# File 'lib/ngrokapi/services/api_keys_client.rb', line 147 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@
-173 -174 -175 -176 177 178 179 @@ -1457,12 +1461,24 @@+189 +190 +191 +192 +193 +194 +195 +196 +197186 187 188 -189
# File 'lib/ngrokapi/services/api_keys_client.rb', line 173 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 177 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1583,20 +1599,20 @@
-200 -201 -202 -203 -204 -205 -206 -207 208 209 -210+210 +211 +212 +213 +214 +215 +216 +217 +218
# File 'lib/ngrokapi/services/api_keys_client.rb', line 200 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 208 def update(id: "", description: nil, metadata: nil) path = '/api_keys/%{id}' @@ -1713,20 +1729,20 @@
-222 -223 -224 -225 -226 -227 -228 -229 230 231 -232+232 +233 +234 +235 +236 +237 +238 +239 +240
# File 'lib/ngrokapi/services/api_keys_client.rb', line 222 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 230 def update!(id: "", description: nil, metadata: nil) path = '/api_keys/%{id}' @@ -1749,7 +1765,7 @@+159 +160 +161 +162 +163diff --git a/doc/NgrokAPI/Services/AbuseReportsClient.html b/doc/NgrokAPI/Services/AbuseReportsClient.html index 74fc2ed3..60da214e 100644 --- a/doc/NgrokAPI/Services/AbuseReportsClient.html +++ b/doc/NgrokAPI/Services/AbuseReportsClient.html @@ -833,7 +833,7 @@
diff --git a/doc/NgrokAPI/Services/AgentIngressesClient.html b/doc/NgrokAPI/Services/AgentIngressesClient.html index f74bb102..c3cad61f 100644 --- a/doc/NgrokAPI/Services/AgentIngressesClient.html +++ b/doc/NgrokAPI/Services/AgentIngressesClient.html @@ -1356,12 +1356,20 @@
156 157 158 -159
# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 145 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1475,10 +1483,6 @@
-171 -172 -173 -174 175 176 177 @@ -1491,12 +1495,24 @@+187 +188 +189 +190 +191 +192 +193 +194 +195184 185 186 -187
# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 171 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 175 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1635,21 +1651,21 @@
-199 -200 -201 -202 -203 -204 -205 -206 207 208 209 -210+210 +211 +212 +213 +214 +215 +216 +217 +218
# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 199 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 207 def update(id: "", description: nil, metadata: nil, certificate_management_policy: nil) path = '/agent_ingresses/%{id}' @@ -1785,21 +1801,21 @@
-223 -224 -225 -226 -227 -228 -229 -230 231 232 233 -234+234 +235 +236 +237 +238 +239 +240 +241 +242
# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 223 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 231 def update!(id: "", description: nil, metadata: nil, certificate_management_policy: nil) path = '/agent_ingresses/%{id}' @@ -1823,7 +1839,7 @@+110 +111 +112 +113 +114diff --git a/doc/NgrokAPI/Services/ApplicationSessionsClient.html b/doc/NgrokAPI/Services/ApplicationSessionsClient.html index fb8dc979..1c6c54b1 100644 --- a/doc/NgrokAPI/Services/ApplicationSessionsClient.html +++ b/doc/NgrokAPI/Services/ApplicationSessionsClient.html @@ -954,12 +954,20 @@
107 108 109 -110
# File 'lib/ngrokapi/services/application_sessions_client.rb', line 96 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1073,10 +1081,6 @@
-122 -123 -124 -125 126 127 128 @@ -1089,12 +1093,24 @@+138 +139 +140 +141 +142 +143 +144 +145 +146135 136 137 -138
# File 'lib/ngrokapi/services/application_sessions_client.rb', line 122 +# File 'lib/ngrokapi/services/application_sessions_client.rb', line 126 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1121,7 +1137,7 @@+110 +111 +112 +113 +114diff --git a/doc/NgrokAPI/Services/ApplicationUsersClient.html b/doc/NgrokAPI/Services/ApplicationUsersClient.html index 30a5cb72..039d6722 100644 --- a/doc/NgrokAPI/Services/ApplicationUsersClient.html +++ b/doc/NgrokAPI/Services/ApplicationUsersClient.html @@ -954,12 +954,20 @@
107 108 109 -110
# File 'lib/ngrokapi/services/application_users_client.rb', line 96 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1073,10 +1081,6 @@
-122 -123 -124 -125 126 127 128 @@ -1089,12 +1093,24 @@+138 +139 +140 +141 +142 +143 +144 +145 +146135 136 137 -138
# File 'lib/ngrokapi/services/application_users_client.rb', line 122 +# File 'lib/ngrokapi/services/application_users_client.rb', line 126 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1121,7 +1137,7 @@+149 +150 +151 +152 +153diff --git a/doc/NgrokAPI/Services/BotUsersClient.html b/doc/NgrokAPI/Services/BotUsersClient.html index 4a23a130..e0c69880 100644 --- a/doc/NgrokAPI/Services/BotUsersClient.html +++ b/doc/NgrokAPI/Services/BotUsersClient.html @@ -1280,12 +1280,20 @@
146 147 148 -149
# File 'lib/ngrokapi/services/bot_users_client.rb', line 135 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1399,10 +1407,6 @@
-161 -162 -163 -164 165 166 167 @@ -1415,12 +1419,24 @@+177 +178 +179 +180 +181 +182 +183 +184 +185174 175 176 -177
# File 'lib/ngrokapi/services/bot_users_client.rb', line 161 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 165 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1541,20 +1557,20 @@
-188 -189 -190 -191 -192 -193 -194 -195 196 197 -198+198 +199 +200 +201 +202 +203 +204 +205 +206
# File 'lib/ngrokapi/services/bot_users_client.rb', line 188 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 196 def update(id: "", name: nil, active: nil) path = '/bot_users/%{id}' @@ -1671,20 +1687,20 @@
-210 -211 -212 -213 -214 -215 -216 -217 218 219 -220+220 +221 +222 +223 +224 +225 +226 +227 +228
# File 'lib/ngrokapi/services/bot_users_client.rb', line 210 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 218 def update!(id: "", name: nil, active: nil) path = '/bot_users/%{id}' @@ -1707,7 +1723,7 @@+159 +160 +161 +162 +163diff --git a/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html b/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html index 5d126fba..b574e3ba 100644 --- a/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html +++ b/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html @@ -1318,12 +1318,20 @@
156 157 158 -159
# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 145 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1437,10 +1445,6 @@
-171 -172 -173 -174 175 176 177 @@ -1453,12 +1457,24 @@+187 +188 +189 +190 +191 +192 +193 +194 +195184 185 186 -187
# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 171 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 175 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1579,20 +1595,20 @@
-198 -199 -200 -201 -202 -203 -204 -205 206 207 -208+208 +209 +210 +211 +212 +213 +214 +215 +216
# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 198 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 206 def update(id: "", description: nil, metadata: nil) path = '/certificate_authorities/%{id}' @@ -1709,20 +1725,20 @@
-220 -221 -222 -223 -224 -225 -226 -227 228 229 -230+230 +231 +232 +233 +234 +235 +236 +237 +238
# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 220 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 228 def update!(id: "", description: nil, metadata: nil) path = '/certificate_authorities/%{id}' @@ -1745,7 +1761,7 @@+168 +169 +170 +171 +172diff --git a/doc/NgrokAPI/Services/CredentialsClient.html b/doc/NgrokAPI/Services/CredentialsClient.html index aa6db1d8..5f530187 100644 --- a/doc/NgrokAPI/Services/CredentialsClient.html +++ b/doc/NgrokAPI/Services/CredentialsClient.html @@ -1362,12 +1362,20 @@
165 166 167 -168
# File 'lib/ngrokapi/services/credentials_client.rb', line 154 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1481,10 +1489,6 @@
-180 -181 -182 -183 184 185 186 @@ -1497,12 +1501,24 @@+196 +197 +198 +199 +200 +201 +202 +203 +204193 194 195 -196
# File 'lib/ngrokapi/services/credentials_client.rb', line 180 +# File 'lib/ngrokapi/services/credentials_client.rb', line 184 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1641,21 +1657,21 @@
-208 -209 -210 -211 -212 -213 -214 -215 216 217 218 -219+219 +220 +221 +222 +223 +224 +225 +226 +227
# File 'lib/ngrokapi/services/credentials_client.rb', line 208 +# File 'lib/ngrokapi/services/credentials_client.rb', line 216 def update(id: "", description: nil, metadata: nil, acl: nil) path = '/credentials/%{id}' @@ -1791,21 +1807,21 @@
-232 -233 -234 -235 -236 -237 -238 -239 240 241 242 -243+243 +244 +245 +246 +247 +248 +249 +250 +251
# File 'lib/ngrokapi/services/credentials_client.rb', line 232 +# File 'lib/ngrokapi/services/credentials_client.rb', line 240 def update!(id: "", description: nil, metadata: nil, acl: nil) path = '/credentials/%{id}' @@ -1829,7 +1845,7 @@diff --git a/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html index f3ffa65c..76fed51c 100644 --- a/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html index a25e8096..145d75a6 100644 --- a/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html index 82696bff..b4609a9c 100644 --- a/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html index 958673c0..55cdf25b 100644 --- a/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html index c2bbac5e..97037666 100644 --- a/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html index b39d58ec..8e70ae93 100644 --- a/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html index 5f0bd63b..8d3cacf2 100644 --- a/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html index 39b25d11..9538806a 100644 --- a/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html index 86d88513..3ad317c1 100644 --- a/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteTrafficPolicyModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteTrafficPolicyModuleClient.html index 3aed63be..0291e082 100644 --- a/doc/NgrokAPI/Services/EdgeRouteTrafficPolicyModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteTrafficPolicyModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteUserAgentFilterModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteUserAgentFilterModuleClient.html index bc27bf99..fe07673e 100644 --- a/doc/NgrokAPI/Services/EdgeRouteUserAgentFilterModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteUserAgentFilterModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html index a6bcc96a..005fba65 100644 --- a/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html index 120f9e5e..d30ab7b3 100644 --- a/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html +++ b/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html @@ -1139,7 +1139,7 @@
diff --git a/doc/NgrokAPI/Services/EdgesHTTPSClient.html b/doc/NgrokAPI/Services/EdgesHTTPSClient.html index 926eebee..529bb676 100644 --- a/doc/NgrokAPI/Services/EdgesHTTPSClient.html +++ b/doc/NgrokAPI/Services/EdgesHTTPSClient.html @@ -978,16 +978,16 @@
-228 -229 -230 -231 -232 -233 -234+236 +237 +238 +239 +240 +241 +242
# File 'lib/ngrokapi/services/edges_https_client.rb', line 228 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 236 def delete(id: "") path = '/edges/https/%{id}' @@ -1069,16 +1069,16 @@
-244 -245 -246 -247 -248 -249 -250+252 +253 +254 +255 +256 +257 +258
# File 'lib/ngrokapi/services/edges_https_client.rb', line 244 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 252 def delete!(id: "") path = '/edges/https/%{id}' @@ -1390,12 +1390,20 @@+130 +131 +132 +133 +134127 128 129 -130
# File 'lib/ngrokapi/services/edges_https_client.rb', line 116 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1509,10 +1517,6 @@
-142 -143 -144 -145 146 147 148 @@ -1525,12 +1529,24 @@+158 +159 +160 +161 +162 +163 +164 +165 +166155 156 157 -158
# File 'lib/ngrokapi/services/edges_https_client.rb', line 142 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 146 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1705,23 +1721,23 @@
-175 -176 -177 -178 -179 -180 -181 -182 183 184 185 186 187 -188+188 +189 +190 +191 +192 +193 +194 +195 +196
# File 'lib/ngrokapi/services/edges_https_client.rb', line 175 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 183 def update(id: "", description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) path = '/edges/https/%{id}' @@ -1895,23 +1911,23 @@
-206 -207 -208 -209 -210 -211 -212 -213 214 215 216 217 218 -219+219 +220 +221 +222 +223 +224 +225 +226 +227
# File 'lib/ngrokapi/services/edges_https_client.rb', line 206 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 214 def update!(id: "", description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) path = '/edges/https/%{id}' @@ -1937,7 +1953,7 @@diff --git a/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html b/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html index 26f28aca..a31cff05 100644 --- a/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html +++ b/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html @@ -2715,7 +2715,7 @@
diff --git a/doc/NgrokAPI/Services/EdgesTCPClient.html b/doc/NgrokAPI/Services/EdgesTCPClient.html index 9a297ddc..135e70ef 100644 --- a/doc/NgrokAPI/Services/EdgesTCPClient.html +++ b/doc/NgrokAPI/Services/EdgesTCPClient.html @@ -1018,16 +1018,16 @@
-236 -237 -238 -239 -240 -241 -242+244 +245 +246 +247 +248 +249 +250
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 236 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 244 def delete(id: "") path = '/edges/tcp/%{id}' @@ -1109,16 +1109,16 @@
-252 -253 -254 -255 -256 -257 -258+260 +261 +262 +263 +264 +265 +266
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 252 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 260 def delete!(id: "") path = '/edges/tcp/%{id}' @@ -1430,12 +1430,20 @@+134 +135 +136 +137 +138131 132 133 -134
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 120 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1549,10 +1557,6 @@
-146 -147 -148 -149 150 151 152 @@ -1565,12 +1569,24 @@+162 +163 +164 +165 +166 +167 +168 +169 +170159 160 161 -162
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 146 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 150 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1763,24 +1779,24 @@
-180 -181 -182 -183 -184 -185 -186 -187 188 189 190 191 192 193 -194+194 +195 +196 +197 +198 +199 +200 +201 +202
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 180 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 188 def update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' @@ -1973,24 +1989,24 @@
-213 -214 -215 -216 -217 -218 -219 -220 221 222 223 224 225 226 -227+227 +228 +229 +230 +231 +232 +233 +234 +235
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 213 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 221 def update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' @@ -2017,7 +2033,7 @@diff --git a/doc/NgrokAPI/Services/EdgesTLSClient.html b/doc/NgrokAPI/Services/EdgesTLSClient.html index 5f47a897..8c750c20 100644 --- a/doc/NgrokAPI/Services/EdgesTLSClient.html +++ b/doc/NgrokAPI/Services/EdgesTLSClient.html @@ -1078,16 +1078,16 @@
-252 -253 -254 -255 -256 -257 -258+260 +261 +262 +263 +264 +265 +266
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 252 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 260 def delete(id: "") path = '/edges/tls/%{id}' @@ -1169,16 +1169,16 @@
-268 -269 -270 -271 -272 -273 -274+276 +277 +278 +279 +280 +281 +282
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 268 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 276 def delete!(id: "") path = '/edges/tls/%{id}' @@ -1490,12 +1490,20 @@+142 +143 +144 +145 +146139 140 141 -142
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 128 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1609,10 +1617,6 @@
-154 -155 -156 -157 158 159 160 @@ -1625,12 +1629,24 @@+170 +171 +172 +173 +174 +175 +176 +177 +178167 168 169 -170
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 154 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 158 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1849,14 +1865,6 @@
-190 -191 -192 -193 -194 -195 -196 -197 198 199 200 @@ -1865,10 +1873,18 @@+206 +207 +208 +209 +210 +211 +212 +213 +214203 204 205 -206
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 190 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 198 def update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, mutual_tls: nil, tls_termination: nil, policy: nil, traffic_policy: nil) path = '/edges/tls/%{id}' @@ -2089,14 +2105,6 @@
-227 -228 -229 -230 -231 -232 -233 -234 235 236 237 @@ -2105,10 +2113,18 @@+243 +244 +245 +246 +247 +248 +249 +250 +251240 241 242 -243
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 227 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 235 def update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, mutual_tls: nil, tls_termination: nil, policy: nil, traffic_policy: nil) path = '/edges/tls/%{id}' @@ -2137,7 +2153,7 @@diff --git a/doc/NgrokAPI/Services/EndpointsClient.html b/doc/NgrokAPI/Services/EndpointsClient.html index 35ea2fa5..f4f72fad 100644 --- a/doc/NgrokAPI/Services/EndpointsClient.html +++ b/doc/NgrokAPI/Services/EndpointsClient.html @@ -377,7 +377,7 @@
-246 -247 -248 -249 -250 -251 -252+254 +255 +256 +257 +258 +259 +260
# File 'lib/ngrokapi/services/endpoints_client.rb', line 246 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 254 def delete(id: "") path = '/endpoints/%{id}' @@ -1139,16 +1139,16 @@
-262 -263 -264 -265 -266 -267 -268+270 +271 +272 +273 +274 +275 +276
# File 'lib/ngrokapi/services/endpoints_client.rb', line 262 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 270 def delete!(id: "") path = '/endpoints/%{id}' @@ -1230,18 +1230,18 @@
-152 -153 -154 -155 -156 -157 -158 -159 -160+160 +161 +162 +163 +164 +165 +166 +167 +168
# File 'lib/ngrokapi/services/endpoints_client.rb', line 152 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 160 def get(id: "") path = '/endpoints/%{id}' @@ -1325,18 +1325,18 @@
-170 -171 -172 -173 -174 -175 -176 -177 -178+178 +179 +180 +181 +182 +183 +184 +185 +186
# File 'lib/ngrokapi/services/endpoints_client.rb', line 170 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 178 def get!(id: "") path = '/endpoints/%{id}' @@ -1355,7 +1355,7 @@
- #list(before_id: nil, limit: nil, ids: [], urls: [], url: nil) ⇒ NgrokAPI::Models::Listable + #list(before_id: nil, limit: nil, id: [], url: nil) ⇒ NgrokAPI::Models::Listable @@ -1403,7 +1403,7 @@
- ids + id (List<string>) @@ -1416,13 +1416,13 @@
- urls + url (List<string>) - (defaults to: []) + (defaults to: nil) @@ -1488,17 +1488,25 @@108 109 110 -111 +111 +112 +113 +114 +115
# File 'lib/ngrokapi/services/endpoints_client.rb', line 95 -def list(before_id: nil, limit: nil, ids: [], urls: [], url: nil) +def list( + before_id: nil, + limit: nil, + id: [], + url: nil +) result = @client.list( before_id: before_id, limit: limit, - ids: ids, - urls: urls, + id: id, url: url, path: PATH ) @@ -1518,7 +1526,7 @@
- #list!(before_id: nil, limit: nil, ids: [], urls: [], url: nil) ⇒ NgrokAPI::Models::Listable + #list!(before_id: nil, limit: nil, id: [], url: nil) ⇒ NgrokAPI::Models::Listable @@ -1566,7 +1574,7 @@
- ids + id (List<string>) @@ -1579,13 +1587,13 @@
- urls + url (List<string>) - (defaults to: []) + (defaults to: nil) @@ -1635,10 +1643,6 @@
-125 -126 -127 -128 129 130 131 @@ -1653,17 +1657,29 @@+143 +144 +145 +146 +147 +148 +149 +150 +151140 141 142 -143
# File 'lib/ngrokapi/services/endpoints_client.rb', line 125 - -def list!(before_id: nil, limit: nil, ids: [], urls: [], url: nil) +# File 'lib/ngrokapi/services/endpoints_client.rb', line 129 + +def list!( + before_id: nil, + limit: nil, + id: [], + url: nil +) result = @client.list( before_id: before_id, limit: limit, - ids: ids, - urls: urls, + id: id, danger: true, url: url, path: PATH @@ -1853,24 +1869,24 @@
-193 -194 -195 -196 -197 -198 -199 -200 201 202 203 204 205 206 -207+207 +208 +209 +210 +211 +212 +213 +214 +215
# File 'lib/ngrokapi/services/endpoints_client.rb', line 193 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 201 def update(id: "", url: nil, traffic_policy: nil, description: nil, metadata: nil, bindings: nil, pooling_enabled: False) path = '/endpoints/%{id}' @@ -2063,24 +2079,24 @@
-223 -224 -225 -226 -227 -228 -229 -230 231 232 233 234 235 236 -237+237 +238 +239 +240 +241 +242 +243 +244 +245
# File 'lib/ngrokapi/services/endpoints_client.rb', line 223 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 231 def update!(id: "", url: nil, traffic_policy: nil, description: nil, metadata: nil, bindings: nil, pooling_enabled: False) path = '/endpoints/%{id}' @@ -2107,7 +2123,7 @@+161 +162 +163 +164 +165diff --git a/doc/NgrokAPI/Services/EventDestinationsClient.html b/doc/NgrokAPI/Services/EventDestinationsClient.html index a88cde23..553f68c9 100644 --- a/doc/NgrokAPI/Services/EventDestinationsClient.html +++ b/doc/NgrokAPI/Services/EventDestinationsClient.html @@ -1360,12 +1360,20 @@
158 159 160 -161
# File 'lib/ngrokapi/services/event_destinations_client.rb', line 147 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1479,10 +1487,6 @@
-173 -174 -175 -176 177 178 179 @@ -1495,12 +1499,24 @@+189 +190 +191 +192 +193 +194 +195 +196 +197186 187 188 -189
# File 'lib/ngrokapi/services/event_destinations_client.rb', line 173 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 177 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1662,22 +1678,22 @@
-202 -203 -204 -205 -206 -207 -208 -209 210 211 212 213 -214+214 +215 +216 +217 +218 +219 +220 +221 +222
# File 'lib/ngrokapi/services/event_destinations_client.rb', line 202 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 210 def update(id: "", metadata: nil, description: nil, format: nil, target: nil, verify_with_test_event: nil) path = '/event_destinations/%{id}' @@ -1837,22 +1853,22 @@
-228 -229 -230 -231 -232 -233 -234 -235 236 237 238 239 -240+240 +241 +242 +243 +244 +245 +246 +247 +248
# File 'lib/ngrokapi/services/event_destinations_client.rb', line 228 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 236 def update!(id: "", metadata: nil, description: nil, format: nil, target: nil, verify_with_test_event: nil) path = '/event_destinations/%{id}' @@ -1877,7 +1893,7 @@+157 +158 +159 +160 +161diff --git a/doc/NgrokAPI/Services/EventSourcesClient.html b/doc/NgrokAPI/Services/EventSourcesClient.html index 450f406d..546c22ff 100644 --- a/doc/NgrokAPI/Services/EventSourcesClient.html +++ b/doc/NgrokAPI/Services/EventSourcesClient.html @@ -1661,7 +1661,7 @@
diff --git a/doc/NgrokAPI/Services/EventSubscriptionsClient.html b/doc/NgrokAPI/Services/EventSubscriptionsClient.html index 90a0b262..d6e7f496 100644 --- a/doc/NgrokAPI/Services/EventSubscriptionsClient.html +++ b/doc/NgrokAPI/Services/EventSubscriptionsClient.html @@ -1360,12 +1360,20 @@
154 155 156 -157
# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 143 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1479,10 +1487,6 @@
-169 -170 -171 -172 173 174 175 @@ -1495,12 +1499,24 @@+185 +186 +187 +188 +189 +190 +191 +192 +193182 183 184 -185
# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 169 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 173 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1662,22 +1678,22 @@
-198 -199 -200 -201 -202 -203 -204 -205 206 207 208 209 -210+210 +211 +212 +213 +214 +215 +216 +217 +218
# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 198 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 206 def update(id: "", metadata: nil, description: nil, sources: nil, destination_ids: nil) path = '/event_subscriptions/%{id}' @@ -1837,22 +1853,22 @@
-224 -225 -226 -227 -228 -229 -230 -231 232 233 234 235 -236+236 +237 +238 +239 +240 +241 +242 +243 +244
# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 224 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 232 def update!(id: "", metadata: nil, description: nil, sources: nil, destination_ids: nil) path = '/event_subscriptions/%{id}' @@ -1877,7 +1893,7 @@+158 +159 +160 +161 +162diff --git a/doc/NgrokAPI/Services/FailoverBackendsClient.html b/doc/NgrokAPI/Services/FailoverBackendsClient.html index 9de85477..a9b57c42 100644 --- a/doc/NgrokAPI/Services/FailoverBackendsClient.html +++ b/doc/NgrokAPI/Services/FailoverBackendsClient.html @@ -1322,12 +1322,20 @@
155 156 157 -158
# File 'lib/ngrokapi/services/failover_backends_client.rb', line 144 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@
-170 -171 -172 -173 174 175 176 @@ -1457,12 +1461,24 @@+186 +187 +188 +189 +190 +191 +192 +193 +194183 184 185 -186
# File 'lib/ngrokapi/services/failover_backends_client.rb', line 170 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 174 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@
-198 -199 -200 -201 -202 -203 -204 -205 206 207 208 -209+209 +210 +211 +212 +213 +214 +215 +216 +217
# File 'lib/ngrokapi/services/failover_backends_client.rb', line 198 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 206 def update(id: "", description: nil, metadata: nil, backends: []) path = '/backends/failover/%{id}' @@ -1751,21 +1767,21 @@
-222 -223 -224 -225 -226 -227 -228 -229 230 231 232 -233+233 +234 +235 +236 +237 +238 +239 +240 +241
# File 'lib/ngrokapi/services/failover_backends_client.rb', line 222 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 230 def update!(id: "", description: nil, metadata: nil, backends: []) path = '/backends/failover/%{id}' @@ -1789,7 +1805,7 @@+144 +145 +146 +147 +148diff --git a/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html b/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html index bd3bb984..90519352 100644 --- a/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html +++ b/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html @@ -1386,12 +1386,20 @@
141 142 143 -144
# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 130 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1503,10 +1511,6 @@
-153 -154 -155 -156 157 158 159 @@ -1519,12 +1523,24 @@+169 +170 +171 +172 +173 +174 +175 +176 +177166 167 168 -169
# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 153 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 157 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1697,23 +1713,23 @@
-181 -182 -183 -184 -185 -186 -187 -188 189 190 191 192 193 -194+194 +195 +196 +197 +198 +199 +200 +201 +202
# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 181 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 189 def update(id: "", description: nil, metadata: nil, body: nil, headers: nil, status_code: nil) path = '/backends/http_response/%{id}' @@ -1885,23 +1901,23 @@
-206 -207 -208 -209 -210 -211 -212 -213 214 215 216 217 218 -219+219 +220 +221 +222 +223 +224 +225 +226 +227
# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 206 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 214 def update!(id: "", description: nil, metadata: nil, body: nil, headers: nil, status_code: nil) path = '/backends/http_response/%{id}' @@ -1927,7 +1943,7 @@+160 +161 +162 +163 +164diff --git a/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html b/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html index 17c3b797..e24bbae1 100644 --- a/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html +++ b/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html b/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html index fd557387..96543e2b 100644 --- a/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html +++ b/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/IPPoliciesClient.html b/doc/NgrokAPI/Services/IPPoliciesClient.html index 0516b066..1d343808 100644 --- a/doc/NgrokAPI/Services/IPPoliciesClient.html +++ b/doc/NgrokAPI/Services/IPPoliciesClient.html @@ -1282,12 +1282,20 @@
157 158 159 -160
# File 'lib/ngrokapi/services/ip_policies_client.rb', line 146 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1401,10 +1409,6 @@
-172 -173 -174 -175 176 177 178 @@ -1417,12 +1421,24 @@+188 +189 +190 +191 +192 +193 +194 +195 +196185 186 187 -188
# File 'lib/ngrokapi/services/ip_policies_client.rb', line 172 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 176 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1543,20 +1559,20 @@
-199 -200 -201 -202 -203 -204 -205 -206 207 208 -209+209 +210 +211 +212 +213 +214 +215 +216 +217
# File 'lib/ngrokapi/services/ip_policies_client.rb', line 199 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 207 def update(id: "", description: nil, metadata: nil) path = '/ip_policies/%{id}' @@ -1673,20 +1689,20 @@
-221 -222 -223 -224 -225 -226 -227 -228 229 230 -231+231 +232 +233 +234 +235 +236 +237 +238 +239
# File 'lib/ngrokapi/services/ip_policies_client.rb', line 221 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 229 def update!(id: "", description: nil, metadata: nil) path = '/ip_policies/%{id}' @@ -1709,7 +1725,7 @@+164 +165 +166 +167 +168diff --git a/doc/NgrokAPI/Services/IPPolicyRulesClient.html b/doc/NgrokAPI/Services/IPPolicyRulesClient.html index f0293352..022b96e8 100644 --- a/doc/NgrokAPI/Services/IPPolicyRulesClient.html +++ b/doc/NgrokAPI/Services/IPPolicyRulesClient.html @@ -1390,12 +1390,20 @@
161 162 163 -164
# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 150 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1509,10 +1517,6 @@
-176 -177 -178 -179 180 181 182 @@ -1525,12 +1529,24 @@+192 +193 +194 +195 +196 +197 +198 +199 +200189 190 191 -192
# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 176 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 180 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1669,21 +1685,21 @@
-204 -205 -206 -207 -208 -209 -210 -211 212 213 214 -215+215 +216 +217 +218 +219 +220 +221 +222 +223
# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 204 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 212 def update(id: "", description: nil, metadata: nil, cidr: nil) path = '/ip_policy_rules/%{id}' @@ -1819,21 +1835,21 @@
-228 -229 -230 -231 -232 -233 -234 -235 236 237 238 -239+239 +240 +241 +242 +243 +244 +245 +246 +247
# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 228 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 236 def update!(id: "", description: nil, metadata: nil, cidr: nil) path = '/ip_policy_rules/%{id}' @@ -1857,7 +1873,7 @@+168 +169 +170 +171 +172diff --git a/doc/NgrokAPI/Services/IPRestrictionsClient.html b/doc/NgrokAPI/Services/IPRestrictionsClient.html index 24837129..55e01d38 100644 --- a/doc/NgrokAPI/Services/IPRestrictionsClient.html +++ b/doc/NgrokAPI/Services/IPRestrictionsClient.html @@ -1394,12 +1394,20 @@
165 166 167 -168
# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 154 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1513,10 +1521,6 @@
-180 -181 -182 -183 184 185 186 @@ -1529,12 +1533,24 @@+196 +197 +198 +199 +200 +201 +202 +203 +204193 194 195 -196
# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 180 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 184 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1691,22 +1707,22 @@
-209 -210 -211 -212 -213 -214 -215 -216 217 218 219 220 -221+221 +222 +223 +224 +225 +226 +227 +228 +229
# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 209 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 217 def update(id: "", description: nil, metadata: nil, enforced: nil, ip_policy_ids: []) path = '/ip_restrictions/%{id}' @@ -1861,22 +1877,22 @@
-235 -236 -237 -238 -239 -240 -241 -242 243 244 245 246 -247+247 +248 +249 +250 +251 +252 +253 +254 +255
# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 235 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 243 def update!(id: "", description: nil, metadata: nil, enforced: nil, ip_policy_ids: []) path = '/ip_restrictions/%{id}' @@ -1901,7 +1917,7 @@+157 +158 +159 +160 +161diff --git a/doc/NgrokAPI/Services/ReservedAddrsClient.html b/doc/NgrokAPI/Services/ReservedAddrsClient.html index 84def8a7..08f237a6 100644 --- a/doc/NgrokAPI/Services/ReservedAddrsClient.html +++ b/doc/NgrokAPI/Services/ReservedAddrsClient.html @@ -1322,12 +1322,20 @@
154 155 156 -157
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 143 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@
-169 -170 -171 -172 173 174 175 @@ -1457,12 +1461,24 @@+185 +186 +187 +188 +189 +190 +191 +192 +193182 183 184 -185
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 169 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 173 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1583,20 +1599,20 @@
-196 -197 -198 -199 -200 -201 -202 -203 204 205 -206+206 +207 +208 +209 +210 +211 +212 +213 +214
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 196 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 204 def update(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) path = '/reserved_addrs/%{id}' @@ -1713,20 +1729,20 @@
-218 -219 -220 -221 -222 -223 -224 -225 226 227 -228+228 +229 +230 +231 +232 +233 +234 +235 +236
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 218 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 226 def update!(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) path = '/reserved_addrs/%{id}' @@ -1749,7 +1765,7 @@diff --git a/doc/NgrokAPI/Services/ReservedDomainsClient.html b/doc/NgrokAPI/Services/ReservedDomainsClient.html index 72183517..59ccb7aa 100644 --- a/doc/NgrokAPI/Services/ReservedDomainsClient.html +++ b/doc/NgrokAPI/Services/ReservedDomainsClient.html @@ -1308,16 +1308,16 @@
-289 -290 -291 -292 -293 -294 -295+297 +298 +299 +300 +301 +302 +303
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 289 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 297 def delete_certificate(id: "") path = '/reserved_domains/%{id}/certificate' @@ -1399,16 +1399,16 @@
-305 -306 -307 -308 -309 -310 -311+313 +314 +315 +316 +317 +318 +319
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 305 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 313 def delete_certificate!(id: "") path = '/reserved_domains/%{id}/certificate' @@ -1490,16 +1490,16 @@+266 +267 +268 +269 +270 +271 +272-258 -259 -260 -261 -262 -263 -264
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 258 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 266 def delete_certificate_management_policy(id: "") path = '/reserved_domains/%{id}/certificate_management_policy' @@ -1581,16 +1581,16 @@+282 +283 +284 +285 +286 +287 +288-274 -275 -276 -277 -278 -279 -280
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 274 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 282 def delete_certificate_management_policy!(id: "") path = '/reserved_domains/%{id}/certificate_management_policy' @@ -1902,12 +1902,20 @@+170 +171 +172 +173 +174167 168 169 -170
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 156 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -2021,10 +2029,6 @@
-182 -183 -184 -185 186 187 188 @@ -2037,12 +2041,24 @@+198 +199 +200 +201 +202 +203 +204 +205 +206195 196 197 -198
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 182 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 186 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -2199,22 +2215,22 @@
-211 -212 -213 -214 -215 -216 -217 -218 219 220 221 222 -223+223 +224 +225 +226 +227 +228 +229 +230 +231
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 211 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 219 def update(id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil, region: nil, error_redirect_url: nil) path = '/reserved_domains/%{id}' @@ -2369,22 +2385,22 @@
-237 -238 -239 -240 -241 -242 -243 -244 245 246 247 248 -249+249 +250 +251 +252 +253 +254 +255 +256 +257
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 237 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 245 def update!(id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil, region: nil, error_redirect_url: nil) path = '/reserved_domains/%{id}' @@ -2409,7 +2425,7 @@+164 +165 +166 +167 +168diff --git a/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html b/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html index 836e5f67..61128556 100644 --- a/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html +++ b/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html @@ -1402,12 +1402,20 @@
161 162 163 -164
# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 150 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1521,10 +1529,6 @@
-176 -177 -178 -179 180 181 182 @@ -1537,12 +1541,24 @@+192 +193 +194 +195 +196 +197 +198 +199 +200189 190 191 -192
# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 176 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 180 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1663,20 +1679,20 @@
-203 -204 -205 -206 -207 -208 -209 -210 211 212 -213+213 +214 +215 +216 +217 +218 +219 +220 +221
# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 203 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 211 def update(id: "", description: nil, metadata: nil) path = '/ssh_certificate_authorities/%{id}' @@ -1793,20 +1809,20 @@
-225 -226 -227 -228 -229 -230 -231 -232 233 234 -235+235 +236 +237 +238 +239 +240 +241 +242 +243
# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 225 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 233 def update!(id: "", description: nil, metadata: nil) path = '/ssh_certificate_authorities/%{id}' @@ -1829,7 +1845,7 @@+166 +167 +168 +169 +170diff --git a/doc/NgrokAPI/Services/SSHCredentialsClient.html b/doc/NgrokAPI/Services/SSHCredentialsClient.html index a76c172f..c0391e20 100644 --- a/doc/NgrokAPI/Services/SSHCredentialsClient.html +++ b/doc/NgrokAPI/Services/SSHCredentialsClient.html @@ -1398,12 +1398,20 @@
163 164 165 -166
# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 152 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1517,10 +1525,6 @@
-178 -179 -180 -181 182 183 184 @@ -1533,12 +1537,24 @@+194 +195 +196 +197 +198 +199 +200 +201 +202191 192 193 -194
# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 178 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 182 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1677,21 +1693,21 @@
-206 -207 -208 -209 -210 -211 -212 -213 214 215 216 -217+217 +218 +219 +220 +221 +222 +223 +224 +225
# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 206 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 214 def update(id: "", description: nil, metadata: nil, acl: nil) path = '/ssh_credentials/%{id}' @@ -1827,21 +1843,21 @@
-230 -231 -232 -233 -234 -235 -236 -237 238 239 240 -241+241 +242 +243 +244 +245 +246 +247 +248 +249
# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 230 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 238 def update!(id: "", description: nil, metadata: nil, acl: nil) path = '/ssh_credentials/%{id}' @@ -1865,7 +1881,7 @@+173 +174 +175 +176 +177diff --git a/doc/NgrokAPI/Services/SSHHostCertificatesClient.html b/doc/NgrokAPI/Services/SSHHostCertificatesClient.html index 5943e447..2e56b0e9 100644 --- a/doc/NgrokAPI/Services/SSHHostCertificatesClient.html +++ b/doc/NgrokAPI/Services/SSHHostCertificatesClient.html @@ -1474,12 +1474,20 @@
170 171 172 -173
# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 159 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1593,10 +1601,6 @@
-185 -186 -187 -188 189 190 191 @@ -1609,12 +1613,24 @@+201 +202 +203 +204 +205 +206 +207 +208 +209198 199 200 -201
# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 185 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 189 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1735,20 +1751,20 @@
-212 -213 -214 -215 -216 -217 -218 -219 220 221 -222+222 +223 +224 +225 +226 +227 +228 +229 +230
# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 212 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 220 def update(id: "", description: nil, metadata: nil) path = '/ssh_host_certificates/%{id}' @@ -1865,20 +1881,20 @@
-234 -235 -236 -237 -238 -239 -240 -241 242 243 -244+244 +245 +246 +247 +248 +249 +250 +251 +252
# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 234 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 242 def update!(id: "", description: nil, metadata: nil) path = '/ssh_host_certificates/%{id}' @@ -1901,7 +1917,7 @@+181 +182 +183 +184 +185diff --git a/doc/NgrokAPI/Services/SSHUserCertificatesClient.html b/doc/NgrokAPI/Services/SSHUserCertificatesClient.html index b3426062..5c7a0ce2 100644 --- a/doc/NgrokAPI/Services/SSHUserCertificatesClient.html +++ b/doc/NgrokAPI/Services/SSHUserCertificatesClient.html @@ -1554,12 +1554,20 @@
178 179 180 -181
# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 167 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1673,10 +1681,6 @@
-193 -194 -195 -196 197 198 199 @@ -1689,12 +1693,24 @@+209 +210 +211 +212 +213 +214 +215 +216 +217206 207 208 -209
# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 193 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 197 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1815,20 +1831,20 @@
-220 -221 -222 -223 -224 -225 -226 -227 228 229 -230+230 +231 +232 +233 +234 +235 +236 +237 +238
# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 220 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 228 def update(id: "", description: nil, metadata: nil) path = '/ssh_user_certificates/%{id}' @@ -1945,20 +1961,20 @@
-242 -243 -244 -245 -246 -247 -248 -249 250 251 -252+252 +253 +254 +255 +256 +257 +258 +259 +260
# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 242 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 250 def update!(id: "", description: nil, metadata: nil) path = '/ssh_user_certificates/%{id}' @@ -1981,7 +1997,7 @@+215 +216 +217 +218 +219diff --git a/doc/NgrokAPI/Services/SecretsClient.html b/doc/NgrokAPI/Services/SecretsClient.html index 5690d9a5..c2d5085d 100644 --- a/doc/NgrokAPI/Services/SecretsClient.html +++ b/doc/NgrokAPI/Services/SecretsClient.html @@ -1398,12 +1398,20 @@
212 213 214 -215
# File 'lib/ngrokapi/services/secrets_client.rb', line 201 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1517,10 +1525,6 @@
-227 -228 -229 -230 231 232 233 @@ -1533,12 +1537,24 @@+243 +244 +245 +246 +247 +248 +249 +250 +251240 241 242 -243
# File 'lib/ngrokapi/services/secrets_client.rb', line 227 +# File 'lib/ngrokapi/services/secrets_client.rb', line 231 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1915,7 +1931,7 @@+160 +161 +162 +163 +164diff --git a/doc/NgrokAPI/Services/StaticBackendsClient.html b/doc/NgrokAPI/Services/StaticBackendsClient.html index cb60f694..b23b7c05 100644 --- a/doc/NgrokAPI/Services/StaticBackendsClient.html +++ b/doc/NgrokAPI/Services/StaticBackendsClient.html @@ -1362,12 +1362,20 @@
157 158 159 -160
# File 'lib/ngrokapi/services/static_backends_client.rb', line 146 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1481,10 +1489,6 @@
-172 -173 -174 -175 176 177 178 @@ -1497,12 +1501,24 @@+188 +189 +190 +191 +192 +193 +194 +195 +196185 186 187 -188
# File 'lib/ngrokapi/services/static_backends_client.rb', line 172 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 176 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1659,22 +1675,22 @@
-201 -202 -203 -204 -205 -206 -207 -208 209 210 211 212 -213+213 +214 +215 +216 +217 +218 +219 +220 +221
# File 'lib/ngrokapi/services/static_backends_client.rb', line 201 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 209 def update(id: "", description: nil, metadata: nil, address: "", tls: nil) path = '/backends/static/%{id}' @@ -1829,22 +1845,22 @@
-227 -228 -229 -230 -231 -232 -233 -234 235 236 237 238 -239+239 +240 +241 +242 +243 +244 +245 +246 +247
# File 'lib/ngrokapi/services/static_backends_client.rb', line 227 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 235 def update!(id: "", description: nil, metadata: nil, address: "", tls: nil) path = '/backends/static/%{id}' @@ -1869,7 +1885,7 @@+163 +164 +165 +166 +167diff --git a/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html b/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html index 4824a54e..910649ac 100644 --- a/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html +++ b/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html index 33384477..233eea08 100644 --- a/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html +++ b/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TCPEdgeTrafficPolicyModuleClient.html b/doc/NgrokAPI/Services/TCPEdgeTrafficPolicyModuleClient.html index 87253b11..a34af113 100644 --- a/doc/NgrokAPI/Services/TCPEdgeTrafficPolicyModuleClient.html +++ b/doc/NgrokAPI/Services/TCPEdgeTrafficPolicyModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TLSCertificatesClient.html b/doc/NgrokAPI/Services/TLSCertificatesClient.html index fcd49e1e..7d5fc1a5 100644 --- a/doc/NgrokAPI/Services/TLSCertificatesClient.html +++ b/doc/NgrokAPI/Services/TLSCertificatesClient.html @@ -1354,12 +1354,20 @@
160 161 162 -163
# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 149 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1473,10 +1481,6 @@
-175 -176 -177 -178 179 180 181 @@ -1489,12 +1493,24 @@+191 +192 +193 +194 +195 +196 +197 +198 +199188 189 190 -191
# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 175 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 179 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1615,20 +1631,20 @@
-202 -203 -204 -205 -206 -207 -208 -209 210 211 -212+212 +213 +214 +215 +216 +217 +218 +219 +220
# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 202 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 210 def update(id: "", description: nil, metadata: nil) path = '/tls_certificates/%{id}' @@ -1745,20 +1761,20 @@
-224 -225 -226 -227 -228 -229 -230 -231 232 233 -234+234 +235 +236 +237 +238 +239 +240 +241 +242
# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 224 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 232 def update!(id: "", description: nil, metadata: nil) path = '/tls_certificates/%{id}' @@ -1781,7 +1797,7 @@+156 +157 +158 +159 +160diff --git a/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html index 89a53d4c..1afd58ff 100644 --- a/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html +++ b/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html index e50be6c5..dcfbdd8d 100644 --- a/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html +++ b/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html index 59e25861..e0fa077c 100644 --- a/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html +++ b/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html index c1140052..033a853b 100644 --- a/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html +++ b/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeTrafficPolicyModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeTrafficPolicyModuleClient.html index 2429a517..940c41c7 100644 --- a/doc/NgrokAPI/Services/TLSEdgeTrafficPolicyModuleClient.html +++ b/doc/NgrokAPI/Services/TLSEdgeTrafficPolicyModuleClient.html @@ -1029,7 +1029,7 @@
diff --git a/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html b/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html index eaece049..a31044b5 100644 --- a/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html +++ b/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html @@ -1322,12 +1322,20 @@
153 154 155 -156
# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 142 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@
-168 -169 -170 -171 172 173 174 @@ -1457,12 +1461,24 @@+184 +185 +186 +187 +188 +189 +190 +191 +192181 182 183 -184
# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 168 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 172 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@
-196 -197 -198 -199 -200 -201 -202 -203 204 205 206 -207+207 +208 +209 +210 +211 +212 +213 +214 +215
# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 196 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 204 def update(id: "", description: nil, metadata: nil, labels: {}) path = '/backends/tunnel_group/%{id}' @@ -1751,21 +1767,21 @@
-220 -221 -222 -223 -224 -225 -226 -227 228 229 230 -231+231 +232 +233 +234 +235 +236 +237 +238 +239
# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 220 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 228 def update!(id: "", description: nil, metadata: nil, labels: {}) path = '/backends/tunnel_group/%{id}' @@ -1789,7 +1805,7 @@diff --git a/doc/NgrokAPI/Services/TunnelSessionsClient.html b/doc/NgrokAPI/Services/TunnelSessionsClient.html index 4486de0d..1670768f 100644 --- a/doc/NgrokAPI/Services/TunnelSessionsClient.html +++ b/doc/NgrokAPI/Services/TunnelSessionsClient.html @@ -640,18 +640,18 @@
-85 -86 -87 -88 -89 -90 -91 -92 -93+93 +94 +95 +96 +97 +98 +99 +100 +101
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 85 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 93 def get(id: "") path = '/tunnel_sessions/%{id}' @@ -735,18 +735,18 @@
-103 -104 -105 -106 -107 -108 -109 -110 -111+111 +112 +113 +114 +115 +116 +117 +118 +119
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 103 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 111 def get!(id: "") path = '/tunnel_sessions/%{id}' @@ -870,12 +870,20 @@+48 +49 +50 +51 +5245 46 47 -48
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 34 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -989,10 +997,6 @@
-60 -61 -62 -63 64 65 66 @@ -1005,12 +1009,24 @@+76 +77 +78 +79 +80 +81 +82 +83 +8473 74 75 -76
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 60 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 64 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1100,16 +1116,16 @@
-123 -124 -125 -126 -127 -128 -129+131 +132 +133 +134 +135 +136 +137
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 123 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 131 def restart(id: "") path = '/tunnel_sessions/%{id}/restart' @@ -1191,16 +1207,16 @@
-142 -143 -144 -145 -146 -147 -148+150 +151 +152 +153 +154 +155 +156
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 142 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 150 def restart!(id: "") path = '/tunnel_sessions/%{id}/restart' @@ -1282,16 +1298,16 @@
-158 -159 -160 -161 -162 -163 -164+166 +167 +168 +169 +170 +171 +172
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 158 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 166 def stop(id: "") path = '/tunnel_sessions/%{id}/stop' @@ -1373,16 +1389,16 @@
-175 -176 -177 -178 -179 -180 -181+183 +184 +185 +186 +187 +188 +189
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 175 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 183 def stop!(id: "") path = '/tunnel_sessions/%{id}/stop' @@ -1459,16 +1475,16 @@
-201 -202 -203 -204 -205 -206 -207+209 +210 +211 +212 +213 +214 +215
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 201 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 209 def update(id: "", version: "") path = '/tunnel_sessions/%{id}/update' @@ -1545,16 +1561,16 @@
-228 -229 -230 -231 -232 -233 -234+236 +237 +238 +239 +240 +241 +242
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 228 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 236 def update!(id: "", version: "") path = '/tunnel_sessions/%{id}/update' @@ -1573,7 +1589,7 @@diff --git a/doc/NgrokAPI/Services/TunnelsClient.html b/doc/NgrokAPI/Services/TunnelsClient.html index 35bbbfd0..28ee5218 100644 --- a/doc/NgrokAPI/Services/TunnelsClient.html +++ b/doc/NgrokAPI/Services/TunnelsClient.html @@ -496,18 +496,18 @@
-84 -85 -86 -87 -88 -89 -90 -91 -92+92 +93 +94 +95 +96 +97 +98 +99 +100
# File 'lib/ngrokapi/services/tunnels_client.rb', line 84 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 92 def get(id: "") path = '/tunnels/%{id}' @@ -591,18 +591,18 @@
-102 -103 -104 -105 -106 -107 -108 -109 -110+110 +111 +112 +113 +114 +115 +116 +117 +118
# File 'lib/ngrokapi/services/tunnels_client.rb', line 102 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 110 def get!(id: "") path = '/tunnels/%{id}' @@ -726,12 +726,20 @@+47 +48 +49 +50 +5144 45 46 -47
# File 'lib/ngrokapi/services/tunnels_client.rb', line 33 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -845,10 +853,6 @@
-59 -60 -61 -62 63 64 65 @@ -861,12 +865,24 @@+75 +76 +77 +78 +79 +80 +81 +82 +8372 73 74 -75
# File 'lib/ngrokapi/services/tunnels_client.rb', line 59 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 63 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -893,7 +909,7 @@diff --git a/doc/NgrokAPI/Services/VaultsClient.html b/doc/NgrokAPI/Services/VaultsClient.html index 85c5a626..9690d7b7 100644 --- a/doc/NgrokAPI/Services/VaultsClient.html +++ b/doc/NgrokAPI/Services/VaultsClient.html @@ -345,6 +345,54 @@
Get a Vault by ID Throws an exception if API error.
+ + + +
Get Secrets by Vault ID.
+Get Secrets by Vault ID Throws an exception if API error.
+Parameters:
a resource identifier
+-189 190 191 192 @@ -1322,12 +1387,349 @@+203 +204 +205 +206 +207 +208 +209 +210 +211 +212 +213 +214 +200 201 202 -203
# File 'lib/ngrokapi/services/vaults_client.rb', line 190 + +def get_secrets_by_vault( + id: "", + before_id: nil, + limit: nil, + url: nil +) + path = '/vaults/%{id}/secrets' + replacements = { + id: id, + } + result = @client.list( + id: id, + before_id: before_id, + limit: limit, + url: url, + path: path % replacements + ) + + NgrokAPI::Models::Listable.new( + client: self, + attrs: result, + list_property: 'secrets', + klass: NgrokAPI::Models::Secret + ) +end+
Get Secrets by Vault ID Throws an exception if API error.
+ + + + +
+ + + +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 |
- # File 'lib/ngrokapi/services/vaults_client.rb', line 189 +# File 'lib/ngrokapi/services/vaults_client.rb', line 227 + +def get_secrets_by_vault!( + id: "", + before_id: nil, + limit: nil, + url: nil +) + path = '/vaults/%{id}/secrets' + replacements = { + id: id, + } + result = @client.list( + id: id, + before_id: before_id, + limit: limit, + danger: true, + url: url, + path: path % replacements + ) + + NgrokAPI::Models::Listable.new( + client: self, + attrs: result, + list_property: 'secrets', + klass: NgrokAPI::Models::Secret, + danger: true + ) +end+ |
+
List all Vaults owned by account
+ +ngrok.com/docs/api#api-vaults-list
-def list(before_id: nil, limit: nil, url: nil) + +
+ + + +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282+ |
+
+ # File 'lib/ngrokapi/services/vaults_client.rb', line 264 + +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,28 +1843,36 @@ |
- # File 'lib/ngrokapi/services/vaults_client.rb', line 215 +# File 'lib/ngrokapi/services/vaults_client.rb', line 294 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1799,7 +2209,7 @@+158 +159 +160 +161 +162 |
# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 144 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 170 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 174 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 198 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 206 def update(id: "", description: nil, metadata: nil, backends: {}) path = '/backends/weighted/%{id}' @@ -1751,21 +1767,21 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 222 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 230 def update!(id: "", description: nil, metadata: nil, backends: {}) path = '/backends/weighted/%{id}' @@ -1789,7 +1805,7 @@
+ #get_secrets_by_vault
+ NgrokAPI::Services::VaultsClient
+
+
+ #get_secrets_by_vault!
+ NgrokAPI::Services::VaultsClient
+
+
#github
diff --git a/doc/top-level-namespace.html b/doc/top-level-namespace.html
index c95aace6..f4391380 100644
--- a/doc/top-level-namespace.html
+++ b/doc/top-level-namespace.html
@@ -100,7 +100,7 @@
diff --git a/docs/NgrokAPI.html b/docs/NgrokAPI.html
index 4f00b7ad..f45aaf31 100644
--- a/docs/NgrokAPI.html
+++ b/docs/NgrokAPI.html
@@ -147,7 +147,7 @@ Defined Under Namespace
diff --git a/docs/NgrokAPI/Client.html b/docs/NgrokAPI/Client.html
index 43f40b7b..da889fe8 100644
--- a/docs/NgrokAPI/Client.html
+++ b/docs/NgrokAPI/Client.html
@@ -2288,7 +2288,7 @@
diff --git a/docs/NgrokAPI/Errors.html b/docs/NgrokAPI/Errors.html
index f6561962..127061a9 100644
--- a/docs/NgrokAPI/Errors.html
+++ b/docs/NgrokAPI/Errors.html
@@ -105,7 +105,7 @@
diff --git a/docs/NgrokAPI/Models.html b/docs/NgrokAPI/Models.html
index 9d488dad..e1ea30ab 100644
--- a/docs/NgrokAPI/Models.html
+++ b/docs/NgrokAPI/Models.html
@@ -107,7 +107,7 @@
diff --git a/docs/NgrokAPI/Models/AWSCredentials.html b/docs/NgrokAPI/Models/AWSCredentials.html
index 7e2738f1..4c2dbc4e 100644
--- a/docs/NgrokAPI/Models/AWSCredentials.html
+++ b/docs/NgrokAPI/Models/AWSCredentials.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/AbuseReport.html b/docs/NgrokAPI/Models/AbuseReport.html
index c5d6e391..e1b2983b 100644
--- a/docs/NgrokAPI/Models/AbuseReport.html
+++ b/docs/NgrokAPI/Models/AbuseReport.html
@@ -1033,7 +1033,7 @@
diff --git a/docs/NgrokAPI/Models/AgentIngress.html b/docs/NgrokAPI/Models/AgentIngress.html
index 593e6125..0f4a9bb0 100644
--- a/docs/NgrokAPI/Models/AgentIngress.html
+++ b/docs/NgrokAPI/Models/AgentIngress.html
@@ -1417,7 +1417,7 @@
diff --git a/docs/NgrokAPI/Models/AgentIngressCertPolicy.html b/docs/NgrokAPI/Models/AgentIngressCertPolicy.html
index c7e07a10..9fa95d58 100644
--- a/docs/NgrokAPI/Models/AgentIngressCertPolicy.html
+++ b/docs/NgrokAPI/Models/AgentIngressCertPolicy.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/ApplicationSession.html b/docs/NgrokAPI/Models/ApplicationSession.html
index 1a59ff52..0d026165 100644
--- a/docs/NgrokAPI/Models/ApplicationSession.html
+++ b/docs/NgrokAPI/Models/ApplicationSession.html
@@ -1404,7 +1404,7 @@
diff --git a/docs/NgrokAPI/Models/BotUser.html b/docs/NgrokAPI/Models/BotUser.html
index 13da4f1d..c53c75dd 100644
--- a/docs/NgrokAPI/Models/BotUser.html
+++ b/docs/NgrokAPI/Models/BotUser.html
@@ -1041,7 +1041,7 @@
diff --git a/docs/NgrokAPI/Models/CertificateAuthority.html b/docs/NgrokAPI/Models/CertificateAuthority.html
index 19f1a987..6ca534f0 100644
--- a/docs/NgrokAPI/Models/CertificateAuthority.html
+++ b/docs/NgrokAPI/Models/CertificateAuthority.html
@@ -1485,7 +1485,7 @@
diff --git a/docs/NgrokAPI/Models/Endpoint.html b/docs/NgrokAPI/Models/Endpoint.html
index c0205dd5..7b7f6454 100644
--- a/docs/NgrokAPI/Models/Endpoint.html
+++ b/docs/NgrokAPI/Models/Endpoint.html
@@ -2697,7 +2697,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointBackendMutate.html b/docs/NgrokAPI/Models/EndpointBackendMutate.html
index 9bef29dc..fc7a6a6f 100644
--- a/docs/NgrokAPI/Models/EndpointBackendMutate.html
+++ b/docs/NgrokAPI/Models/EndpointBackendMutate.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointCompression.html b/docs/NgrokAPI/Models/EndpointCompression.html
index d34e15d8..172df6a8 100644
--- a/docs/NgrokAPI/Models/EndpointCompression.html
+++ b/docs/NgrokAPI/Models/EndpointCompression.html
@@ -585,7 +585,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointIPPolicyMutate.html b/docs/NgrokAPI/Models/EndpointIPPolicyMutate.html
index 734dc179..06abbcc7 100644
--- a/docs/NgrokAPI/Models/EndpointIPPolicyMutate.html
+++ b/docs/NgrokAPI/Models/EndpointIPPolicyMutate.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointMutualTLSMutate.html b/docs/NgrokAPI/Models/EndpointMutualTLSMutate.html
index ce586684..d36959d9 100644
--- a/docs/NgrokAPI/Models/EndpointMutualTLSMutate.html
+++ b/docs/NgrokAPI/Models/EndpointMutualTLSMutate.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointOAuthAmazon.html b/docs/NgrokAPI/Models/EndpointOAuthAmazon.html
index 1e7b307b..8fb1abe8 100644
--- a/docs/NgrokAPI/Models/EndpointOAuthAmazon.html
+++ b/docs/NgrokAPI/Models/EndpointOAuthAmazon.html
@@ -881,7 +881,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointOAuthGitHub.html b/docs/NgrokAPI/Models/EndpointOAuthGitHub.html
index 8de55fa4..3d5ee728 100644
--- a/docs/NgrokAPI/Models/EndpointOAuthGitHub.html
+++ b/docs/NgrokAPI/Models/EndpointOAuthGitHub.html
@@ -1029,7 +1029,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointOAuthGoogle.html b/docs/NgrokAPI/Models/EndpointOAuthGoogle.html
index 62bb2ca9..d35627b0 100644
--- a/docs/NgrokAPI/Models/EndpointOAuthGoogle.html
+++ b/docs/NgrokAPI/Models/EndpointOAuthGoogle.html
@@ -881,7 +881,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointOAuthMicrosoft.html b/docs/NgrokAPI/Models/EndpointOAuthMicrosoft.html
index 9c9ba5c0..df1a21e8 100644
--- a/docs/NgrokAPI/Models/EndpointOAuthMicrosoft.html
+++ b/docs/NgrokAPI/Models/EndpointOAuthMicrosoft.html
@@ -881,7 +881,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointOAuthTwitch.html b/docs/NgrokAPI/Models/EndpointOAuthTwitch.html
index a2bfba9a..9a8f7b69 100644
--- a/docs/NgrokAPI/Models/EndpointOAuthTwitch.html
+++ b/docs/NgrokAPI/Models/EndpointOAuthTwitch.html
@@ -881,7 +881,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointRequestHeaders.html b/docs/NgrokAPI/Models/EndpointRequestHeaders.html
index d048a7f7..c7de5064 100644
--- a/docs/NgrokAPI/Models/EndpointRequestHeaders.html
+++ b/docs/NgrokAPI/Models/EndpointRequestHeaders.html
@@ -733,7 +733,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointSAML.html b/docs/NgrokAPI/Models/EndpointSAML.html
index 2a019b98..12b8d801 100644
--- a/docs/NgrokAPI/Models/EndpointSAML.html
+++ b/docs/NgrokAPI/Models/EndpointSAML.html
@@ -1633,7 +1633,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointTLSTermination.html b/docs/NgrokAPI/Models/EndpointTLSTermination.html
index f0b4af53..00ab9a33 100644
--- a/docs/NgrokAPI/Models/EndpointTLSTermination.html
+++ b/docs/NgrokAPI/Models/EndpointTLSTermination.html
@@ -733,7 +733,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointTrafficPolicy.html b/docs/NgrokAPI/Models/EndpointTrafficPolicy.html
index 86b8e033..fbcd0f4d 100644
--- a/docs/NgrokAPI/Models/EndpointTrafficPolicy.html
+++ b/docs/NgrokAPI/Models/EndpointTrafficPolicy.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/EndpointWebhookValidation.html b/docs/NgrokAPI/Models/EndpointWebhookValidation.html
index 31c83d92..3bad2ce5 100644
--- a/docs/NgrokAPI/Models/EndpointWebhookValidation.html
+++ b/docs/NgrokAPI/Models/EndpointWebhookValidation.html
@@ -733,7 +733,7 @@
diff --git a/docs/NgrokAPI/Models/EventDestination.html b/docs/NgrokAPI/Models/EventDestination.html
index fa9b786f..424f257c 100644
--- a/docs/NgrokAPI/Models/EventDestination.html
+++ b/docs/NgrokAPI/Models/EventDestination.html
@@ -1104,7 +1104,7 @@
diff --git a/docs/NgrokAPI/Models/EventSourceList.html b/docs/NgrokAPI/Models/EventSourceList.html
index 81644ac5..f7dd32b7 100644
--- a/docs/NgrokAPI/Models/EventSourceList.html
+++ b/docs/NgrokAPI/Models/EventSourceList.html
@@ -663,7 +663,7 @@
diff --git a/docs/NgrokAPI/Models/EventSubscription.html b/docs/NgrokAPI/Models/EventSubscription.html
index 91a10839..2b20d2f5 100644
--- a/docs/NgrokAPI/Models/EventSubscription.html
+++ b/docs/NgrokAPI/Models/EventSubscription.html
@@ -1104,7 +1104,7 @@
diff --git a/docs/NgrokAPI/Models/EventTargetAzureLogsIngestion.html b/docs/NgrokAPI/Models/EventTargetAzureLogsIngestion.html
index bd159c22..6df7117d 100644
--- a/docs/NgrokAPI/Models/EventTargetAzureLogsIngestion.html
+++ b/docs/NgrokAPI/Models/EventTargetAzureLogsIngestion.html
@@ -955,7 +955,7 @@
diff --git a/docs/NgrokAPI/Models/EventTargetDatadog.html b/docs/NgrokAPI/Models/EventTargetDatadog.html
index 1a164526..444c6e28 100644
--- a/docs/NgrokAPI/Models/EventTargetDatadog.html
+++ b/docs/NgrokAPI/Models/EventTargetDatadog.html
@@ -807,7 +807,7 @@
diff --git a/docs/NgrokAPI/Models/EventTargetKinesis.html b/docs/NgrokAPI/Models/EventTargetKinesis.html
index 7ffea94a..f28c92fa 100644
--- a/docs/NgrokAPI/Models/EventTargetKinesis.html
+++ b/docs/NgrokAPI/Models/EventTargetKinesis.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/HTTPResponseBackend.html b/docs/NgrokAPI/Models/HTTPResponseBackend.html
index 626c4f2a..69460463 100644
--- a/docs/NgrokAPI/Models/HTTPResponseBackend.html
+++ b/docs/NgrokAPI/Models/HTTPResponseBackend.html
@@ -1277,7 +1277,7 @@
diff --git a/docs/NgrokAPI/Models/HTTPSEdgeRoute.html b/docs/NgrokAPI/Models/HTTPSEdgeRoute.html
index 0b0e10e5..30947705 100644
--- a/docs/NgrokAPI/Models/HTTPSEdgeRoute.html
+++ b/docs/NgrokAPI/Models/HTTPSEdgeRoute.html
@@ -2321,7 +2321,7 @@
diff --git a/docs/NgrokAPI/Models/IPPolicyRule.html b/docs/NgrokAPI/Models/IPPolicyRule.html
index 99872a09..d5f1fc3f 100644
--- a/docs/NgrokAPI/Models/IPPolicyRule.html
+++ b/docs/NgrokAPI/Models/IPPolicyRule.html
@@ -1269,7 +1269,7 @@
diff --git a/docs/NgrokAPI/Models/IdentityProvider.html b/docs/NgrokAPI/Models/IdentityProvider.html
index e5c34925..a44f82a0 100644
--- a/docs/NgrokAPI/Models/IdentityProvider.html
+++ b/docs/NgrokAPI/Models/IdentityProvider.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/Location.html b/docs/NgrokAPI/Models/Location.html
index f1a314a7..4477557d 100644
--- a/docs/NgrokAPI/Models/Location.html
+++ b/docs/NgrokAPI/Models/Location.html
@@ -807,7 +807,7 @@
diff --git a/docs/NgrokAPI/Models/ReservedAddr.html b/docs/NgrokAPI/Models/ReservedAddr.html
index 50682595..08d5bbd1 100644
--- a/docs/NgrokAPI/Models/ReservedAddr.html
+++ b/docs/NgrokAPI/Models/ReservedAddr.html
@@ -1104,7 +1104,7 @@
diff --git a/docs/NgrokAPI/Models/ReservedDomainCertJob.html b/docs/NgrokAPI/Models/ReservedDomainCertJob.html
index 63652422..eb0d88b4 100644
--- a/docs/NgrokAPI/Models/ReservedDomainCertJob.html
+++ b/docs/NgrokAPI/Models/ReservedDomainCertJob.html
@@ -807,7 +807,7 @@
diff --git a/docs/NgrokAPI/Models/ReservedDomainCertStatus.html b/docs/NgrokAPI/Models/ReservedDomainCertStatus.html
index 8972d654..e37de2cd 100644
--- a/docs/NgrokAPI/Models/ReservedDomainCertStatus.html
+++ b/docs/NgrokAPI/Models/ReservedDomainCertStatus.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/SSHCredential.html b/docs/NgrokAPI/Models/SSHCredential.html
index 1f3e0584..908ecc9a 100644
--- a/docs/NgrokAPI/Models/SSHCredential.html
+++ b/docs/NgrokAPI/Models/SSHCredential.html
@@ -1269,7 +1269,7 @@
diff --git a/docs/NgrokAPI/Models/SSHUserCertificate.html b/docs/NgrokAPI/Models/SSHUserCertificate.html
index 7ed862f5..c93c89c9 100644
--- a/docs/NgrokAPI/Models/SSHUserCertificate.html
+++ b/docs/NgrokAPI/Models/SSHUserCertificate.html
@@ -1707,7 +1707,7 @@
diff --git a/docs/NgrokAPI/Models/StaticBackend.html b/docs/NgrokAPI/Models/StaticBackend.html
index 4a393e3c..3eda782e 100644
--- a/docs/NgrokAPI/Models/StaticBackend.html
+++ b/docs/NgrokAPI/Models/StaticBackend.html
@@ -1201,7 +1201,7 @@
diff --git a/docs/NgrokAPI/Models/TCPEdge.html b/docs/NgrokAPI/Models/TCPEdge.html
index 34cc1635..d73c0803 100644
--- a/docs/NgrokAPI/Models/TCPEdge.html
+++ b/docs/NgrokAPI/Models/TCPEdge.html
@@ -1361,7 +1361,7 @@
diff --git a/docs/NgrokAPI/Models/TLSCertificateSANs.html b/docs/NgrokAPI/Models/TLSCertificateSANs.html
index e974000f..d713f4cf 100644
--- a/docs/NgrokAPI/Models/TLSCertificateSANs.html
+++ b/docs/NgrokAPI/Models/TLSCertificateSANs.html
@@ -659,7 +659,7 @@
diff --git a/docs/NgrokAPI/Models/Tunnel.html b/docs/NgrokAPI/Models/Tunnel.html
index 9f8d8f77..17f0e9f7 100644
--- a/docs/NgrokAPI/Models/Tunnel.html
+++ b/docs/NgrokAPI/Models/Tunnel.html
@@ -1329,7 +1329,7 @@
diff --git a/docs/NgrokAPI/Models/TunnelSession.html b/docs/NgrokAPI/Models/TunnelSession.html
index f91e73b2..050a014d 100644
--- a/docs/NgrokAPI/Models/TunnelSession.html
+++ b/docs/NgrokAPI/Models/TunnelSession.html
@@ -1255,7 +1255,7 @@
diff --git a/docs/NgrokAPI/Models/Vault.html b/docs/NgrokAPI/Models/Vault.html
index 96cff26c..fb4613d5 100644
--- a/docs/NgrokAPI/Models/Vault.html
+++ b/docs/NgrokAPI/Models/Vault.html
@@ -1343,7 +1343,7 @@
diff --git a/docs/NgrokAPI/PagedIterator.html b/docs/NgrokAPI/PagedIterator.html
index cfd690a0..eb5f8408 100644
--- a/docs/NgrokAPI/PagedIterator.html
+++ b/docs/NgrokAPI/PagedIterator.html
@@ -625,7 +625,7 @@ Defined Under Namespacediff --git a/docs/NgrokAPI/Services/APIKeysClient.html b/docs/NgrokAPI/Services/APIKeysClient.html index a28f835d..dc286c2f 100644 --- a/docs/NgrokAPI/Services/APIKeysClient.html +++ b/docs/NgrokAPI/Services/APIKeysClient.html @@ -1322,12 +1322,20 @@158 159 160 -161 +161 +162 +163 +164 +165 |
# File 'lib/ngrokapi/services/api_keys_client.rb', line 147 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 173 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 177 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1583,20 +1599,20 @@ |
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 200 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 208 def update(id: "", description: nil, metadata: nil) path = '/api_keys/%{id}' @@ -1713,20 +1729,20 @@ |
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 222 +# File 'lib/ngrokapi/services/api_keys_client.rb', line 230 def update!(id: "", description: nil, metadata: nil) path = '/api_keys/%{id}' @@ -1749,7 +1765,7 @@+159 +160 +161 +162 +163 |
# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 145 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1475,10 +1483,6 @@ |
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 171 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 175 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1635,21 +1651,21 @@ |
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 199 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 207 def update(id: "", description: nil, metadata: nil, certificate_management_policy: nil) path = '/agent_ingresses/%{id}' @@ -1785,21 +1801,21 @@ |
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 223 +# File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 231 def update!(id: "", description: nil, metadata: nil, certificate_management_policy: nil) path = '/agent_ingresses/%{id}' @@ -1823,7 +1839,7 @@+110 +111 +112 +113 +114 |
# File 'lib/ngrokapi/services/application_sessions_client.rb', line 96 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1073,10 +1081,6 @@ |
- # File 'lib/ngrokapi/services/application_sessions_client.rb', line 122 +# File 'lib/ngrokapi/services/application_sessions_client.rb', line 126 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1121,7 +1137,7 @@+110 +111 +112 +113 +114 |
# File 'lib/ngrokapi/services/application_users_client.rb', line 96 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1073,10 +1081,6 @@ |
- # File 'lib/ngrokapi/services/application_users_client.rb', line 122 +# File 'lib/ngrokapi/services/application_users_client.rb', line 126 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1121,7 +1137,7 @@+149 +150 +151 +152 +153 |
# File 'lib/ngrokapi/services/bot_users_client.rb', line 135 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1399,10 +1407,6 @@ |
- # File 'lib/ngrokapi/services/bot_users_client.rb', line 161 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 165 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1541,20 +1557,20 @@ |
- # File 'lib/ngrokapi/services/bot_users_client.rb', line 188 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 196 def update(id: "", name: nil, active: nil) path = '/bot_users/%{id}' @@ -1671,20 +1687,20 @@ |
- # File 'lib/ngrokapi/services/bot_users_client.rb', line 210 +# File 'lib/ngrokapi/services/bot_users_client.rb', line 218 def update!(id: "", name: nil, active: nil) path = '/bot_users/%{id}' @@ -1707,7 +1723,7 @@+159 +160 +161 +162 +163 |
# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 145 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1437,10 +1445,6 @@ |
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 171 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 175 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1579,20 +1595,20 @@ |
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 198 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 206 def update(id: "", description: nil, metadata: nil) path = '/certificate_authorities/%{id}' @@ -1709,20 +1725,20 @@ |
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 220 +# File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 228 def update!(id: "", description: nil, metadata: nil) path = '/certificate_authorities/%{id}' @@ -1745,7 +1761,7 @@+168 +169 +170 +171 +172 |
# File 'lib/ngrokapi/services/credentials_client.rb', line 154 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1481,10 +1489,6 @@ |
- # File 'lib/ngrokapi/services/credentials_client.rb', line 180 +# File 'lib/ngrokapi/services/credentials_client.rb', line 184 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1641,21 +1657,21 @@ |
- # File 'lib/ngrokapi/services/credentials_client.rb', line 208 +# File 'lib/ngrokapi/services/credentials_client.rb', line 216 def update(id: "", description: nil, metadata: nil, acl: nil) path = '/credentials/%{id}' @@ -1791,21 +1807,21 @@ |
- # File 'lib/ngrokapi/services/credentials_client.rb', line 232 +# File 'lib/ngrokapi/services/credentials_client.rb', line 240 def update!(id: "", description: nil, metadata: nil, acl: nil) path = '/credentials/%{id}' @@ -1829,7 +1845,7 @@ |
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 228 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 236 def delete(id: "") path = '/edges/https/%{id}' @@ -1069,16 +1069,16 @@ |
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 244 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 252 def delete!(id: "") path = '/edges/https/%{id}' @@ -1390,12 +1390,20 @@+130 +131 +132 +133 +134 |
# File 'lib/ngrokapi/services/edges_https_client.rb', line 116 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1509,10 +1517,6 @@ |
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 142 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 146 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1705,23 +1721,23 @@ |
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 175 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 183 def update(id: "", description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) path = '/edges/https/%{id}' @@ -1895,23 +1911,23 @@ |
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 206 +# File 'lib/ngrokapi/services/edges_https_client.rb', line 214 def update!(id: "", description: nil, metadata: nil, hostports: nil, mutual_tls: nil, tls_termination: nil) path = '/edges/https/%{id}' @@ -1937,7 +1953,7 @@ |
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 236 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 244 def delete(id: "") path = '/edges/tcp/%{id}' @@ -1109,16 +1109,16 @@ |
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 252 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 260 def delete!(id: "") path = '/edges/tcp/%{id}' @@ -1430,12 +1430,20 @@+134 +135 +136 +137 +138 |
# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 120 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1549,10 +1557,6 @@ |
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 146 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 150 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1763,24 +1779,24 @@ |
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 180 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 188 def update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' @@ -1973,24 +1989,24 @@ |
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 213 +# File 'lib/ngrokapi/services/edges_tcp_client.rb', line 221 def update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, policy: nil, traffic_policy: nil) path = '/edges/tcp/%{id}' @@ -2017,7 +2033,7 @@ |
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 252 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 260 def delete(id: "") path = '/edges/tls/%{id}' @@ -1169,16 +1169,16 @@ |
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 268 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 276 def delete!(id: "") path = '/edges/tls/%{id}' @@ -1490,12 +1490,20 @@+142 +143 +144 +145 +146 |
# File 'lib/ngrokapi/services/edges_tls_client.rb', line 128 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1609,10 +1617,6 @@ |
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 154 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 158 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1849,14 +1865,6 @@ |
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 190 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 198 def update(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, mutual_tls: nil, tls_termination: nil, policy: nil, traffic_policy: nil) path = '/edges/tls/%{id}' @@ -2089,14 +2105,6 @@ |
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 227 +# File 'lib/ngrokapi/services/edges_tls_client.rb', line 235 def update!(id: "", description: nil, metadata: nil, hostports: nil, backend: nil, ip_restriction: nil, mutual_tls: nil, tls_termination: nil, policy: nil, traffic_policy: nil) path = '/edges/tls/%{id}' @@ -2137,7 +2153,7 @@
|
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 246 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 254 def delete(id: "") path = '/endpoints/%{id}' @@ -1139,16 +1139,16 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 262 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 270 def delete!(id: "") path = '/endpoints/%{id}' @@ -1230,18 +1230,18 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 152 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 160 def get(id: "") path = '/endpoints/%{id}' @@ -1325,18 +1325,18 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 170 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 178 def get!(id: "") path = '/endpoints/%{id}' @@ -1355,7 +1355,7 @@ |
# File 'lib/ngrokapi/services/endpoints_client.rb', line 95 -def list(before_id: nil, limit: nil, ids: [], urls: [], url: nil) +def list( + before_id: nil, + limit: nil, + id: [], + url: nil +) result = @client.list( before_id: before_id, limit: limit, - ids: ids, - urls: urls, + id: id, url: url, path: PATH ) @@ -1518,7 +1526,7 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 125 - -def list!(before_id: nil, limit: nil, ids: [], urls: [], url: nil) +# File 'lib/ngrokapi/services/endpoints_client.rb', line 129 + +def list!( + before_id: nil, + limit: nil, + id: [], + url: nil +) result = @client.list( before_id: before_id, limit: limit, - ids: ids, - urls: urls, + id: id, danger: true, url: url, path: PATH @@ -1853,24 +1869,24 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 193 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 201 def update(id: "", url: nil, traffic_policy: nil, description: nil, metadata: nil, bindings: nil, pooling_enabled: False) path = '/endpoints/%{id}' @@ -2063,24 +2079,24 @@ |
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 223 +# File 'lib/ngrokapi/services/endpoints_client.rb', line 231 def update!(id: "", url: nil, traffic_policy: nil, description: nil, metadata: nil, bindings: nil, pooling_enabled: False) path = '/endpoints/%{id}' @@ -2107,7 +2123,7 @@+161 +162 +163 +164 +165 |
# File 'lib/ngrokapi/services/event_destinations_client.rb', line 147 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1479,10 +1487,6 @@ |
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 173 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 177 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1662,22 +1678,22 @@ |
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 202 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 210 def update(id: "", metadata: nil, description: nil, format: nil, target: nil, verify_with_test_event: nil) path = '/event_destinations/%{id}' @@ -1837,22 +1853,22 @@ |
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 228 +# File 'lib/ngrokapi/services/event_destinations_client.rb', line 236 def update!(id: "", metadata: nil, description: nil, format: nil, target: nil, verify_with_test_event: nil) path = '/event_destinations/%{id}' @@ -1877,7 +1893,7 @@+157 +158 +159 +160 +161 |
# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 143 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1479,10 +1487,6 @@ |
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 169 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 173 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1662,22 +1678,22 @@ |
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 198 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 206 def update(id: "", metadata: nil, description: nil, sources: nil, destination_ids: nil) path = '/event_subscriptions/%{id}' @@ -1837,22 +1853,22 @@ |
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 224 +# File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 232 def update!(id: "", metadata: nil, description: nil, sources: nil, destination_ids: nil) path = '/event_subscriptions/%{id}' @@ -1877,7 +1893,7 @@+158 +159 +160 +161 +162 |
# File 'lib/ngrokapi/services/failover_backends_client.rb', line 144 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 170 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 174 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@ |
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 198 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 206 def update(id: "", description: nil, metadata: nil, backends: []) path = '/backends/failover/%{id}' @@ -1751,21 +1767,21 @@ |
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 222 +# File 'lib/ngrokapi/services/failover_backends_client.rb', line 230 def update!(id: "", description: nil, metadata: nil, backends: []) path = '/backends/failover/%{id}' @@ -1789,7 +1805,7 @@+144 +145 +146 +147 +148 |
# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 130 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1503,10 +1511,6 @@ |
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 153 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 157 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1697,23 +1713,23 @@ |
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 181 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 189 def update(id: "", description: nil, metadata: nil, body: nil, headers: nil, status_code: nil) path = '/backends/http_response/%{id}' @@ -1885,23 +1901,23 @@ |
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 206 +# File 'lib/ngrokapi/services/http_response_backends_client.rb', line 214 def update!(id: "", description: nil, metadata: nil, body: nil, headers: nil, status_code: nil) path = '/backends/http_response/%{id}' @@ -1927,7 +1943,7 @@+160 +161 +162 +163 +164 |
# File 'lib/ngrokapi/services/ip_policies_client.rb', line 146 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1401,10 +1409,6 @@ |
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 172 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 176 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1543,20 +1559,20 @@ |
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 199 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 207 def update(id: "", description: nil, metadata: nil) path = '/ip_policies/%{id}' @@ -1673,20 +1689,20 @@ |
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 221 +# File 'lib/ngrokapi/services/ip_policies_client.rb', line 229 def update!(id: "", description: nil, metadata: nil) path = '/ip_policies/%{id}' @@ -1709,7 +1725,7 @@+164 +165 +166 +167 +168 |
# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 150 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1509,10 +1517,6 @@ |
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 176 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 180 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1669,21 +1685,21 @@ |
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 204 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 212 def update(id: "", description: nil, metadata: nil, cidr: nil) path = '/ip_policy_rules/%{id}' @@ -1819,21 +1835,21 @@ |
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 228 +# File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 236 def update!(id: "", description: nil, metadata: nil, cidr: nil) path = '/ip_policy_rules/%{id}' @@ -1857,7 +1873,7 @@+168 +169 +170 +171 +172 |
# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 154 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1513,10 +1521,6 @@ |
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 180 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 184 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1691,22 +1707,22 @@ |
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 209 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 217 def update(id: "", description: nil, metadata: nil, enforced: nil, ip_policy_ids: []) path = '/ip_restrictions/%{id}' @@ -1861,22 +1877,22 @@ |
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 235 +# File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 243 def update!(id: "", description: nil, metadata: nil, enforced: nil, ip_policy_ids: []) path = '/ip_restrictions/%{id}' @@ -1901,7 +1917,7 @@+157 +158 +159 +160 +161 |
# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 143 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 169 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 173 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1583,20 +1599,20 @@ |
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 196 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 204 def update(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) path = '/reserved_addrs/%{id}' @@ -1713,20 +1729,20 @@ |
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 218 +# File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 226 def update!(id: "", description: nil, metadata: nil, endpoint_configuration_id: nil) path = '/reserved_addrs/%{id}' @@ -1749,7 +1765,7 @@ |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 289 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 297 def delete_certificate(id: "") path = '/reserved_domains/%{id}/certificate' @@ -1399,16 +1399,16 @@ |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 305 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 313 def delete_certificate!(id: "") path = '/reserved_domains/%{id}/certificate' @@ -1490,16 +1490,16 @@+266 +267 +268 +269 +270 +271 +272 |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 258 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 266 def delete_certificate_management_policy(id: "") path = '/reserved_domains/%{id}/certificate_management_policy' @@ -1581,16 +1581,16 @@+282 +283 +284 +285 +286 +287 +288 |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 274 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 282 def delete_certificate_management_policy!(id: "") path = '/reserved_domains/%{id}/certificate_management_policy' @@ -1902,12 +1902,20 @@+170 +171 +172 +173 +174 |
# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 156 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -2021,10 +2029,6 @@ |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 182 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 186 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -2199,22 +2215,22 @@ |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 211 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 219 def update(id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil, region: nil, error_redirect_url: nil) path = '/reserved_domains/%{id}' @@ -2369,22 +2385,22 @@ |
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 237 +# File 'lib/ngrokapi/services/reserved_domains_client.rb', line 245 def update!(id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil, region: nil, error_redirect_url: nil) path = '/reserved_domains/%{id}' @@ -2409,7 +2425,7 @@+164 +165 +166 +167 +168 |
# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 150 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1521,10 +1529,6 @@ |
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 176 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 180 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1663,20 +1679,20 @@ |
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 203 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 211 def update(id: "", description: nil, metadata: nil) path = '/ssh_certificate_authorities/%{id}' @@ -1793,20 +1809,20 @@ |
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 225 +# File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 233 def update!(id: "", description: nil, metadata: nil) path = '/ssh_certificate_authorities/%{id}' @@ -1829,7 +1845,7 @@+166 +167 +168 +169 +170 |
# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 152 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1517,10 +1525,6 @@ |
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 178 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 182 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1677,21 +1693,21 @@ |
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 206 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 214 def update(id: "", description: nil, metadata: nil, acl: nil) path = '/ssh_credentials/%{id}' @@ -1827,21 +1843,21 @@ |
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 230 +# File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 238 def update!(id: "", description: nil, metadata: nil, acl: nil) path = '/ssh_credentials/%{id}' @@ -1865,7 +1881,7 @@+173 +174 +175 +176 +177 |
# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 159 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1593,10 +1601,6 @@ |
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 185 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 189 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1735,20 +1751,20 @@ |
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 212 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 220 def update(id: "", description: nil, metadata: nil) path = '/ssh_host_certificates/%{id}' @@ -1865,20 +1881,20 @@ |
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 234 +# File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 242 def update!(id: "", description: nil, metadata: nil) path = '/ssh_host_certificates/%{id}' @@ -1901,7 +1917,7 @@+181 +182 +183 +184 +185 |
# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 167 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1673,10 +1681,6 @@ |
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 193 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 197 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1815,20 +1831,20 @@ |
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 220 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 228 def update(id: "", description: nil, metadata: nil) path = '/ssh_user_certificates/%{id}' @@ -1945,20 +1961,20 @@ |
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 242 +# File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 250 def update!(id: "", description: nil, metadata: nil) path = '/ssh_user_certificates/%{id}' @@ -1981,7 +1997,7 @@+215 +216 +217 +218 +219 |
# File 'lib/ngrokapi/services/secrets_client.rb', line 201 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1517,10 +1525,6 @@ |
- # File 'lib/ngrokapi/services/secrets_client.rb', line 227 +# File 'lib/ngrokapi/services/secrets_client.rb', line 231 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1915,7 +1931,7 @@+160 +161 +162 +163 +164 |
# File 'lib/ngrokapi/services/static_backends_client.rb', line 146 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1481,10 +1489,6 @@ |
- # File 'lib/ngrokapi/services/static_backends_client.rb', line 172 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 176 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1659,22 +1675,22 @@ |
- # File 'lib/ngrokapi/services/static_backends_client.rb', line 201 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 209 def update(id: "", description: nil, metadata: nil, address: "", tls: nil) path = '/backends/static/%{id}' @@ -1829,22 +1845,22 @@ |
- # File 'lib/ngrokapi/services/static_backends_client.rb', line 227 +# File 'lib/ngrokapi/services/static_backends_client.rb', line 235 def update!(id: "", description: nil, metadata: nil, address: "", tls: nil) path = '/backends/static/%{id}' @@ -1869,7 +1885,7 @@+163 +164 +165 +166 +167 |
# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 149 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1473,10 +1481,6 @@ |
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 175 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 179 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1615,20 +1631,20 @@ |
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 202 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 210 def update(id: "", description: nil, metadata: nil) path = '/tls_certificates/%{id}' @@ -1745,20 +1761,20 @@ |
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 224 +# File 'lib/ngrokapi/services/tls_certificates_client.rb', line 232 def update!(id: "", description: nil, metadata: nil) path = '/tls_certificates/%{id}' @@ -1781,7 +1797,7 @@+156 +157 +158 +159 +160 |
# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 142 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 168 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 172 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@ |
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 196 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 204 def update(id: "", description: nil, metadata: nil, labels: {}) path = '/backends/tunnel_group/%{id}' @@ -1751,21 +1767,21 @@ |
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 220 +# File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 228 def update!(id: "", description: nil, metadata: nil, labels: {}) path = '/backends/tunnel_group/%{id}' @@ -1789,7 +1805,7 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 85 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 93 def get(id: "") path = '/tunnel_sessions/%{id}' @@ -735,18 +735,18 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 103 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 111 def get!(id: "") path = '/tunnel_sessions/%{id}' @@ -870,12 +870,20 @@+48 +49 +50 +51 +52 |
# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 34 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -989,10 +997,6 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 60 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 64 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1100,16 +1116,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 123 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 131 def restart(id: "") path = '/tunnel_sessions/%{id}/restart' @@ -1191,16 +1207,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 142 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 150 def restart!(id: "") path = '/tunnel_sessions/%{id}/restart' @@ -1282,16 +1298,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 158 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 166 def stop(id: "") path = '/tunnel_sessions/%{id}/stop' @@ -1373,16 +1389,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 175 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 183 def stop!(id: "") path = '/tunnel_sessions/%{id}/stop' @@ -1459,16 +1475,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 201 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 209 def update(id: "", version: "") path = '/tunnel_sessions/%{id}/update' @@ -1545,16 +1561,16 @@ |
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 228 +# File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 236 def update!(id: "", version: "") path = '/tunnel_sessions/%{id}/update' @@ -1573,7 +1589,7 @@ |
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 84 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 92 def get(id: "") path = '/tunnels/%{id}' @@ -591,18 +591,18 @@ |
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 102 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 110 def get!(id: "") path = '/tunnels/%{id}' @@ -726,12 +726,20 @@+47 +48 +49 +50 +51 |
# File 'lib/ngrokapi/services/tunnels_client.rb', line 33 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -845,10 +853,6 @@ |
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 59 +# File 'lib/ngrokapi/services/tunnels_client.rb', line 63 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -893,7 +909,7 @@
+
+
+Get Secrets by Vault ID. +
+
+
Get Secrets by Vault ID Throws an exception if API error. +
+
@@ -1237,6 +1285,24 @@ Parameters:
|
+
+ # File 'lib/ngrokapi/services/vaults_client.rb', line 190 + +def get_secrets_by_vault( + id: "", + before_id: nil, + limit: nil, + url: nil +) + path = '/vaults/%{id}/secrets' + replacements = { + id: id, + } + result = @client.list( + id: id, + before_id: before_id, + limit: limit, + url: url, + path: path % replacements + ) + + NgrokAPI::Models::Listable.new( + client: self, + attrs: result, + list_property: 'secrets', + klass: NgrokAPI::Models::Secret + ) +end+ |
+
Get Secrets by Vault ID Throws an exception if API error.
+ + + + +
+ + + +227 +228 +229 +230 +231 +232 +233 +234 +235 +236 +237 +238 +239 +240 +241 +242 +243 +244 +245 +246 +247 +248 +249 +250 +251 +252 +253 |
- # File 'lib/ngrokapi/services/vaults_client.rb', line 189 +# File 'lib/ngrokapi/services/vaults_client.rb', line 227 + +def get_secrets_by_vault!( + id: "", + before_id: nil, + limit: nil, + url: nil +) + path = '/vaults/%{id}/secrets' + replacements = { + id: id, + } + result = @client.list( + id: id, + before_id: before_id, + limit: limit, + danger: true, + url: url, + path: path % replacements + ) + + NgrokAPI::Models::Listable.new( + client: self, + attrs: result, + list_property: 'secrets', + klass: NgrokAPI::Models::Secret, + danger: true + ) +end+ |
+
List all Vaults owned by account
+ +ngrok.com/docs/api#api-vaults-list
-def list(before_id: nil, limit: nil, url: nil) + +
+ + + +264 +265 +266 +267 +268 +269 +270 +271 +272 +273 +274 +275 +276 +277 +278 +279 +280 +281 +282+ |
+
+ # File 'lib/ngrokapi/services/vaults_client.rb', line 264 + +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,28 +1843,36 @@ |
- # File 'lib/ngrokapi/services/vaults_client.rb', line 215 +# File 'lib/ngrokapi/services/vaults_client.rb', line 294 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1799,7 +2209,7 @@+158 +159 +160 +161 +162 |
# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 144 -def list(before_id: nil, limit: nil, url: nil) +def list( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1441,10 +1449,6 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 170 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 174 -def list!(before_id: nil, limit: nil, url: nil) +def list!( + before_id: nil, + limit: nil, + url: nil +) result = @client.list( before_id: before_id, limit: limit, @@ -1601,21 +1617,21 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 198 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 206 def update(id: "", description: nil, metadata: nil, backends: {}) path = '/backends/weighted/%{id}' @@ -1751,21 +1767,21 @@ |
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 222 +# File 'lib/ngrokapi/services/weighted_backends_client.rb', line 230 def update!(id: "", description: nil, metadata: nil, backends: {}) path = '/backends/weighted/%{id}' @@ -1789,7 +1805,7 @@
+ #get_secrets_by_vault
+ NgrokAPI::Services::VaultsClient
+
+
+ #get_secrets_by_vault!
+ NgrokAPI::Services::VaultsClient
+
+
#github
diff --git a/docs/top-level-namespace.html b/docs/top-level-namespace.html
index c95aace6..f4391380 100644
--- a/docs/top-level-namespace.html
+++ b/docs/top-level-namespace.html
@@ -100,7 +100,7 @@
diff --git a/lib/ngrokapi/services/agent_ingresses_client.rb b/lib/ngrokapi/services/agent_ingresses_client.rb
index 62bed327..c56118e8 100644
--- a/lib/ngrokapi/services/agent_ingresses_client.rb
+++ b/lib/ngrokapi/services/agent_ingresses_client.rb
@@ -142,7 +142,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-agent-ingresses-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -168,7 +172,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-agent-ingresses-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/api_keys_client.rb b/lib/ngrokapi/services/api_keys_client.rb
index da755244..62d87ea2 100644
--- a/lib/ngrokapi/services/api_keys_client.rb
+++ b/lib/ngrokapi/services/api_keys_client.rb
@@ -144,7 +144,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-api-keys-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -170,7 +174,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-api-keys-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/application_sessions_client.rb b/lib/ngrokapi/services/application_sessions_client.rb
index d1de8906..b667bbae 100644
--- a/lib/ngrokapi/services/application_sessions_client.rb
+++ b/lib/ngrokapi/services/application_sessions_client.rb
@@ -93,7 +93,11 @@ def delete!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-application-sessions-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -119,7 +123,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-application-sessions-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/application_users_client.rb b/lib/ngrokapi/services/application_users_client.rb
index c1f7456b..6fd56028 100644
--- a/lib/ngrokapi/services/application_users_client.rb
+++ b/lib/ngrokapi/services/application_users_client.rb
@@ -93,7 +93,11 @@ def delete!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-application-users-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -119,7 +123,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-application-users-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/bot_users_client.rb b/lib/ngrokapi/services/bot_users_client.rb
index 94cc3a93..65182c69 100644
--- a/lib/ngrokapi/services/bot_users_client.rb
+++ b/lib/ngrokapi/services/bot_users_client.rb
@@ -132,7 +132,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-bot-users-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -158,7 +162,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-bot-users-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/certificate_authorities_client.rb b/lib/ngrokapi/services/certificate_authorities_client.rb
index 37886d35..fb20c002 100644
--- a/lib/ngrokapi/services/certificate_authorities_client.rb
+++ b/lib/ngrokapi/services/certificate_authorities_client.rb
@@ -142,7 +142,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-certificate-authorities-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -168,7 +172,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-certificate-authorities-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/credentials_client.rb b/lib/ngrokapi/services/credentials_client.rb
index 53862bed..7f4a4a4b 100644
--- a/lib/ngrokapi/services/credentials_client.rb
+++ b/lib/ngrokapi/services/credentials_client.rb
@@ -151,7 +151,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-credentials-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -177,7 +181,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-credentials-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/edges_https_client.rb b/lib/ngrokapi/services/edges_https_client.rb
index 3f23f937..e5d27567 100644
--- a/lib/ngrokapi/services/edges_https_client.rb
+++ b/lib/ngrokapi/services/edges_https_client.rb
@@ -113,7 +113,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-https-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -139,7 +143,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-https-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/edges_tcp_client.rb b/lib/ngrokapi/services/edges_tcp_client.rb
index 3c9eb122..c1734d54 100644
--- a/lib/ngrokapi/services/edges_tcp_client.rb
+++ b/lib/ngrokapi/services/edges_tcp_client.rb
@@ -117,7 +117,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-tcp-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -143,7 +147,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-tcp-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/edges_tls_client.rb b/lib/ngrokapi/services/edges_tls_client.rb
index 474c1460..f1edf48f 100644
--- a/lib/ngrokapi/services/edges_tls_client.rb
+++ b/lib/ngrokapi/services/edges_tls_client.rb
@@ -125,7 +125,11 @@ def get!(id: "")
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-tls-list
- def list(before_id: nil, limit: nil, url: nil)
+ def list(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
@@ -151,7 +155,11 @@ def list(before_id: nil, limit: nil, url: nil)
# @return [NgrokAPI::Models::Listable] result from the API request
#
# https://ngrok.com/docs/api#api-edges-tls-list
- def list!(before_id: nil, limit: nil, url: nil)
+ def list!(
+ before_id: nil,
+ limit: nil,
+ url: nil
+ )
result = @client.list(
before_id: before_id,
limit: limit,
diff --git a/lib/ngrokapi/services/endpoints_client.rb b/lib/ngrokapi/services/endpoints_client.rb
index 324b57ec..1102b4da 100644
--- a/lib/ngrokapi/services/endpoints_client.rb
+++ b/lib/ngrokapi/services/endpoints_client.rb
@@ -86,18 +86,22 @@ def create!(url:, type:, traffic_policy:, description: nil, metadata: nil, bindi
#
# @param [string] before_id
# @param [string] limit
- # @param [ListDefined Under Namespace |