- #create! (description: "", metadata: "") ⇒ NgrokAPI::Models::APIKey
+ #create! (description: "", metadata: "", owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::APIKey
@@ -502,12 +502,12 @@
-21
-22
-23
+23
+24
+25
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 21
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 23
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 19
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 21
def client
@client
@@ -575,7 +575,7 @@
- #create (description: "", metadata: "") ⇒ NgrokAPI::Models::APIKey
+ #create (description: "", metadata: "", owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::APIKey
@@ -627,6 +627,24 @@
—
arbitrary user-defined data of this API key. optional, max 4096 bytes
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -658,27 +676,29 @@
-34
-35
-36
37
38
39
40
41
42
-43
+43
+44
+45
+46
+47
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 34
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 37
-def create ( description: " " , metadata: " " )
+def create ( description: " " , metadata: " " , owner_id: nil , owner_email: " " )
path = ' /api_keys '
replacements = {
}
data = { }
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data )
NgrokAPI :: Models :: APIKey . new ( client: self , attrs: result )
end
@@ -690,7 +710,7 @@
- #create! (description: "", metadata: "") ⇒ NgrokAPI::Models::APIKey
+ #create! (description: "", metadata: "", owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::APIKey
@@ -742,6 +762,24 @@
—
arbitrary user-defined data of this API key. optional, max 4096 bytes
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -773,27 +811,29 @@
-55
-56
-57
-58
-59
60
61
62
63
-64
+64
+65
+66
+67
+68
+69
+70
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 55
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 60
-def create! ( description: " " , metadata: " " )
+def create! ( description: " " , metadata: " " , owner_id: nil , owner_email: " " )
path = ' /api_keys '
replacements = {
}
data = { }
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data , danger: true )
NgrokAPI :: Models :: APIKey . new ( client: self , attrs: result )
end
@@ -870,16 +910,16 @@
-73
-74
-75
-76
-77
-78
-79
+79
+80
+81
+82
+83
+84
+85
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 73
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 79
def delete ( id: " " )
path = ' /api_keys/%{id} '
@@ -961,16 +1001,16 @@
-89
-90
-91
-92
-93
-94
-95
+95
+96
+97
+98
+99
+100
+101
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 89
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 95
def delete! ( id: " " )
path = ' /api_keys/%{id} '
@@ -1052,18 +1092,18 @@
-104
-105
-106
-107
-108
-109
110
111
-112
+112
+113
+114
+115
+116
+117
+118
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 104
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 110
def get ( id: " " )
path = ' /api_keys/%{id} '
@@ -1147,18 +1187,18 @@
-122
-123
-124
-125
-126
-127
128
129
-130
+130
+131
+132
+133
+134
+135
+136
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 122
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 128
def get! ( id: " " )
path = ' /api_keys/%{id} '
@@ -1268,12 +1308,6 @@
-141
-142
-143
-144
-145
-146
147
148
149
@@ -1282,10 +1316,16 @@
152
153
154
-155
+155
+156
+157
+158
+159
+160
+161
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 141
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 147
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1401,12 +1441,6 @@
-167
-168
-169
-170
-171
-172
173
174
175
@@ -1417,10 +1451,16 @@
180
181
182
-183
+183
+184
+185
+186
+187
+188
+189
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 167
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 173
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1543,20 +1583,20 @@
-194
-195
-196
-197
-198
-199
200
201
202
203
-204
+204
+205
+206
+207
+208
+209
+210
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 194
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 200
def update ( id: " " , description: nil , metadata: nil )
path = ' /api_keys/%{id} '
@@ -1673,20 +1713,20 @@
-216
-217
-218
-219
-220
-221
222
223
224
225
-226
+226
+227
+228
+229
+230
+231
+232
- # File 'lib/ngrokapi/services/api_keys_client.rb', line 216
+ # File 'lib/ngrokapi/services/api_keys_client.rb', line 222
def update! ( id: " " , description: nil , metadata: nil )
path = ' /api_keys/%{id} '
@@ -1709,9 +1749,9 @@
diff --git a/doc/NgrokAPI/Services/AbuseReportsClient.html b/doc/NgrokAPI/Services/AbuseReportsClient.html
index f3be9dd..95ff995 100644
--- a/doc/NgrokAPI/Services/AbuseReportsClient.html
+++ b/doc/NgrokAPI/Services/AbuseReportsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::AbuseReportsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -342,12 +342,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 16
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 18
def initialize ( client: )
@client = client
@@ -390,12 +390,12 @@
-14
-15
-16
+16
+17
+18
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 14
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 16
def client
@client
@@ -496,8 +496,6 @@
-30
-31
32
33
34
@@ -505,10 +503,12 @@
36
37
38
-39
+39
+40
+41
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 30
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 32
def create ( urls: , metadata: " " )
path = ' /abuse_reports '
@@ -609,8 +609,6 @@
-52
-53
54
55
56
@@ -618,10 +616,12 @@
58
59
60
-61
+61
+62
+63
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 52
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 54
def create! ( urls: , metadata: " " )
path = ' /abuse_reports '
@@ -706,18 +706,18 @@
-70
-71
72
73
74
75
76
77
-78
+78
+79
+80
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 70
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 72
def get ( id: " " )
path = ' /abuse_reports/%{id} '
@@ -801,18 +801,18 @@
-88
-89
90
91
92
93
94
95
-96
+96
+97
+98
- # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 88
+ # File 'lib/ngrokapi/services/abuse_reports_client.rb', line 90
def get! ( id: " " )
path = ' /abuse_reports/%{id} '
@@ -833,9 +833,9 @@
diff --git a/doc/NgrokAPI/Services/AgentIngressesClient.html b/doc/NgrokAPI/Services/AgentIngressesClient.html
index 598a96c..4c664b9 100644
--- a/doc/NgrokAPI/Services/AgentIngressesClient.html
+++ b/doc/NgrokAPI/Services/AgentIngressesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::AgentIngressesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -205,7 +205,7 @@
- #create (description: "", metadata: "", domain:) ⇒ NgrokAPI::Models::AgentIngress
+ #create (description: "", metadata: "", domain:, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -229,7 +229,7 @@
- #create! (description: "", metadata: "", domain:) ⇒ NgrokAPI::Models::AgentIngress
+ #create! (description: "", metadata: "", domain:, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -423,7 +423,7 @@
- #update (id: "", description: nil, metadata: nil) ⇒ NgrokAPI::Models::AgentIngress
+ #update (id: "", description: nil, metadata: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -447,7 +447,7 @@
- #update! (id: "", description: nil, metadata: nil) ⇒ NgrokAPI::Models::AgentIngress
+ #update! (id: "", description: nil, metadata: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 15
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 13
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 15
def client
@client
@@ -573,7 +573,7 @@
- #create (description: "", metadata: "", domain:) ⇒ NgrokAPI::Models::AgentIngress
+ #create (description: "", metadata: "", domain:, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -641,6 +641,24 @@
—
the domain that you own to be used as the base domain name to generate regional agent ingress domains.
+
+
+
+
+
+
+ certificate_management_policy
+
+
+ (AgentIngressCertPolicy )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
configuration for automatic management of TLS certificates for this domain, or null if automatic management is disabled. Optional.
@@ -672,9 +690,6 @@
-29
-30
-31
32
33
34
@@ -682,12 +697,16 @@
36
37
38
-39
+39
+40
+41
+42
+43
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 29
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 32
-def create ( description: " " , metadata: " " , domain: )
+def create ( description: " " , metadata: " " , domain: , certificate_management_policy: nil )
path = ' /agent_ingresses '
replacements = {
}
@@ -695,6 +714,7 @@
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
data [ :domain ] = domain if domain
+ data [ :certificate_management_policy ] = certificate_management_policy if certificate_management_policy
result = @client . post ( path % replacements , data: data )
NgrokAPI :: Models :: AgentIngress . new ( client: self , attrs: result )
end
@@ -706,7 +726,7 @@
- #create! (description: "", metadata: "", domain:) ⇒ NgrokAPI::Models::AgentIngress
+ #create! (description: "", metadata: "", domain:, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -774,6 +794,24 @@
—
the domain that you own to be used as the base domain name to generate regional agent ingress domains.
+
+
+
+
+
+
+ certificate_management_policy
+
+
+ (AgentIngressCertPolicy )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
configuration for automatic management of TLS certificates for this domain, or null if automatic management is disabled. Optional.
@@ -805,22 +843,23 @@
-52
-53
-54
-55
-56
57
58
59
60
61
-62
+62
+63
+64
+65
+66
+67
+68
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 52
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 57
-def create! ( description: " " , metadata: " " , domain: )
+def create! ( description: " " , metadata: " " , domain: , certificate_management_policy: nil )
path = ' /agent_ingresses '
replacements = {
}
@@ -828,6 +867,7 @@
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
data [ :domain ] = domain if domain
+ data [ :certificate_management_policy ] = certificate_management_policy if certificate_management_policy
result = @client . post ( path % replacements , data: data , danger: true )
NgrokAPI :: Models :: AgentIngress . new ( client: self , attrs: result )
end
@@ -904,16 +944,16 @@
-71
-72
-73
-74
-75
-76
-77
+77
+78
+79
+80
+81
+82
+83
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 71
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 77
def delete ( id: " " )
path = ' /agent_ingresses/%{id} '
@@ -995,16 +1035,16 @@
-87
-88
-89
-90
-91
-92
-93
+93
+94
+95
+96
+97
+98
+99
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 87
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 93
def delete! ( id: " " )
path = ' /agent_ingresses/%{id} '
@@ -1086,18 +1126,18 @@
-102
-103
-104
-105
-106
-107
108
109
-110
+110
+111
+112
+113
+114
+115
+116
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 102
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 108
def get ( id: " " )
path = ' /agent_ingresses/%{id} '
@@ -1181,18 +1221,18 @@
-120
-121
-122
-123
-124
-125
126
127
-128
+128
+129
+130
+131
+132
+133
+134
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 120
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 126
def get! ( id: " " )
path = ' /agent_ingresses/%{id} '
@@ -1302,12 +1342,6 @@
-139
-140
-141
-142
-143
-144
145
146
147
@@ -1316,10 +1350,16 @@
150
151
152
-153
+153
+154
+155
+156
+157
+158
+159
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 139
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 145
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1435,12 +1475,6 @@
-165
-166
-167
-168
-169
-170
171
172
173
@@ -1451,10 +1485,16 @@
178
179
180
-181
+181
+182
+183
+184
+185
+186
+187
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 165
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 171
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1481,7 +1521,7 @@
- #update (id: "", description: nil, metadata: nil) ⇒ NgrokAPI::Models::AgentIngress
+ #update (id: "", description: nil, metadata: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -1546,6 +1586,24 @@
—
arbitrary user-defined machine-readable data of this Agent Ingress. optional, max 4096 bytes
+
+
+
+
+
+
+ certificate_management_policy
+
+
+ (AgentIngressCertPolicy )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
configuration for automatic management of TLS certificates for this domain, or null if automatic management is disabled. Optional.
@@ -1577,22 +1635,23 @@
-192
-193
-194
-195
-196
-197
-198
199
200
201
-202
+202
+203
+204
+205
+206
+207
+208
+209
+210
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 192
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 199
-def update ( id: " " , description: nil , metadata: nil )
+def update ( id: " " , description: nil , metadata: nil , certificate_management_policy: nil )
path = ' /agent_ingresses/%{id} '
replacements = {
id: id ,
@@ -1600,6 +1659,7 @@
data = { }
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
+ data [ :certificate_management_policy ] = certificate_management_policy if certificate_management_policy
result = @client . patch ( path % replacements , data: data )
NgrokAPI :: Models :: AgentIngress . new ( client: self , attrs: result )
end
@@ -1611,7 +1671,7 @@
- #update! (id: "", description: nil, metadata: nil) ⇒ NgrokAPI::Models::AgentIngress
+ #update! (id: "", description: nil, metadata: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::AgentIngress
@@ -1676,6 +1736,24 @@
—
arbitrary user-defined machine-readable data of this Agent Ingress. optional, max 4096 bytes
+
+
+
+
+
+
+ certificate_management_policy
+
+
+ (AgentIngressCertPolicy )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
configuration for automatic management of TLS certificates for this domain, or null if automatic management is disabled. Optional.
@@ -1707,22 +1785,23 @@
-214
-215
-216
-217
-218
-219
-220
-221
-222
223
-224
+224
+225
+226
+227
+228
+229
+230
+231
+232
+233
+234
- # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 214
+ # File 'lib/ngrokapi/services/agent_ingresses_client.rb', line 223
-def update! ( id: " " , description: nil , metadata: nil )
+def update! ( id: " " , description: nil , metadata: nil , certificate_management_policy: nil )
path = ' /agent_ingresses/%{id} '
replacements = {
id: id ,
@@ -1730,6 +1809,7 @@
data = { }
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
+ data [ :certificate_management_policy ] = certificate_management_policy if certificate_management_policy
result = @client . patch ( path % replacements , data: data , danger: true )
NgrokAPI :: Models :: AgentIngress . new ( client: self , attrs: result )
end
@@ -1743,9 +1823,9 @@
diff --git a/doc/NgrokAPI/Services/ApplicationSessionsClient.html b/doc/NgrokAPI/Services/ApplicationSessionsClient.html
new file mode 100644
index 0000000..e28f9bf
--- /dev/null
+++ b/doc/NgrokAPI/Services/ApplicationSessionsClient.html
@@ -0,0 +1,1131 @@
+
+
+
+
+
+
+ Class: NgrokAPI::Services::ApplicationSessionsClient
+
+ — Documentation by YARD 0.9.34
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Class: NgrokAPI::Services::ApplicationSessionsClient
+
+
+
+
+
+
+
+ Inherits:
+
+ Object
+
+
+ Object
+
+ NgrokAPI::Services::ApplicationSessionsClient
+
+
+ show all
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defined in:
+ lib/ngrokapi/services/application_sessions_client.rb
+
+
+
+
+
Overview
+
+
+
+
+
+
+ Constant Summary
+ collapse
+
+
+
+
+ PATH =
+
+
+
+
The API path for the requests
+
+
+
+
+
+
+
+
+
+ ' /app/sessions/%{id} '
+
+ LIST_PROPERTY =
+
+
+
+
The List Property from the resulting API for list calls
+
+
+
+
+
+
+
+
+
+ ' application_sessions '
+
+
+
+
+
+
+
+
Instance Attribute Summary collapse
+
+
+
+
+
+ #client ⇒ Object
+
+
+
+
+
+
+
+
+ readonly
+
+
+
+
+
+
+
+
+
+
+
Returns the value of attribute client.
+
+
+
+
+
+
+
+
+
+
+
+
+ Instance Method Summary
+ collapse
+
+
+
+
+
+
+
Constructor Details
+
+
+
+
+
+
Returns a new instance of ApplicationSessionsClient.
+
+
+
+
+
+
+
+
+
+
+
+
+
+17
+18
+19
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 17
+
+def initialize ( client: )
+ @client = client
+end
+
+
+
+
+
+
+
+
+
Instance Attribute Details
+
+
+
+
+
+
+ #client ⇒ Object
+
+
+
+
+
+
+
+
+
Returns the value of attribute client.
+
+
+
+
+
+
+
+
+
+
+
+
+
+15
+16
+17
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 15
+
+def client
+ @client
+end
+
+
+
+
+
+
+
+
+
+
Instance Method Details
+
+
+
+
+
+ #delete (id: "") ⇒ NgrokAPI::Models::Empty
+
+
+
+
+
+
+
+
+
+
+
+
+63
+64
+65
+66
+67
+68
+69
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 63
+
+def delete ( id: " " )
+ path = ' /app/sessions/%{id} '
+ replacements = {
+ id: id ,
+ }
+ @client . delete ( path % replacements )
+end
+
+
+
+
+
+
+
+
+ #delete! (id: "") ⇒ NgrokAPI::Models::Empty
+
+
+
+
+
+
+
+
+
+
+
+
+79
+80
+81
+82
+83
+84
+85
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 79
+
+def delete! ( id: " " )
+ path = ' /app/sessions/%{id} '
+ replacements = {
+ id: id ,
+ }
+ @client . delete ( path % replacements , danger: true )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+28
+29
+30
+31
+32
+33
+34
+35
+36
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 28
+
+def get ( id: " " )
+ path = ' /app/sessions/%{id} '
+ replacements = {
+ id: id ,
+ }
+ data = { }
+ result = @client . get ( path % replacements , data: data )
+ NgrokAPI :: Models :: ApplicationSession . new ( client: self , attrs: result )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+46
+47
+48
+49
+50
+51
+52
+53
+54
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 46
+
+def get! ( id: " " )
+ path = ' /app/sessions/%{id} '
+ replacements = {
+ id: id ,
+ }
+ data = { }
+ result = @client . get ( path % replacements , data: data , danger: true )
+ NgrokAPI :: Models :: ApplicationSession . new ( client: self , attrs: result )
+end
+
+
+
+
+
+
+
+
+ #list (before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
+
+
+
+
+
+
+
+
+
+
+
+
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 96
+
+def list ( before_id: nil , limit: nil , url: nil )
+ result = @client . list (
+ before_id: before_id ,
+ limit: limit ,
+ url: url ,
+ path: PATH
+ )
+
+ NgrokAPI :: Models :: Listable . new (
+ client: self ,
+ attrs: result ,
+ list_property: LIST_PROPERTY ,
+ klass: NgrokAPI :: Models :: ApplicationSession
+ )
+end
+
+
+
+
+
+
+
+
+ #list! (before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
+
+
+
+
+
+
+
+
+
+
+
+
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+
+
+ # File 'lib/ngrokapi/services/application_sessions_client.rb', line 122
+
+def list! ( before_id: nil , limit: nil , url: nil )
+ result = @client . list (
+ before_id: before_id ,
+ limit: limit ,
+ danger: true ,
+ url: url ,
+ path: PATH
+ )
+
+ NgrokAPI :: Models :: Listable . new (
+ client: self ,
+ attrs: result ,
+ list_property: LIST_PROPERTY ,
+ klass: NgrokAPI :: Models :: ApplicationSession ,
+ danger: true
+ )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/doc/NgrokAPI/Services/ApplicationUsersClient.html b/doc/NgrokAPI/Services/ApplicationUsersClient.html
new file mode 100644
index 0000000..0282017
--- /dev/null
+++ b/doc/NgrokAPI/Services/ApplicationUsersClient.html
@@ -0,0 +1,1131 @@
+
+
+
+
+
+
+ Class: NgrokAPI::Services::ApplicationUsersClient
+
+ — Documentation by YARD 0.9.34
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Class: NgrokAPI::Services::ApplicationUsersClient
+
+
+
+
+
+
+
+ Inherits:
+
+ Object
+
+
+ Object
+
+ NgrokAPI::Services::ApplicationUsersClient
+
+
+ show all
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Defined in:
+ lib/ngrokapi/services/application_users_client.rb
+
+
+
+
+
Overview
+
+
+
+
+
+
+ Constant Summary
+ collapse
+
+
+
+
+ PATH =
+
+
+
+
The API path for the requests
+
+
+
+
+
+
+
+
+
+ ' /app/users/%{id} '
+
+ LIST_PROPERTY =
+
+
+
+
The List Property from the resulting API for list calls
+
+
+
+
+
+
+
+
+
+ ' application_users '
+
+
+
+
+
+
+
+
Instance Attribute Summary collapse
+
+
+
+
+
+ #client ⇒ Object
+
+
+
+
+
+
+
+
+ readonly
+
+
+
+
+
+
+
+
+
+
+
Returns the value of attribute client.
+
+
+
+
+
+
+
+
+
+
+
+
+ Instance Method Summary
+ collapse
+
+
+
+
+
+
+
Constructor Details
+
+
+
+
+
+
Returns a new instance of ApplicationUsersClient.
+
+
+
+
+
+
+
+
+
+
+
+
+
+17
+18
+19
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 17
+
+def initialize ( client: )
+ @client = client
+end
+
+
+
+
+
+
+
+
+
Instance Attribute Details
+
+
+
+
+
+
+ #client ⇒ Object
+
+
+
+
+
+
+
+
+
Returns the value of attribute client.
+
+
+
+
+
+
+
+
+
+
+
+
+
+15
+16
+17
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 15
+
+def client
+ @client
+end
+
+
+
+
+
+
+
+
+
+
Instance Method Details
+
+
+
+
+
+ #delete (id: "") ⇒ NgrokAPI::Models::Empty
+
+
+
+
+
+
+
+
+
+
+
+
+63
+64
+65
+66
+67
+68
+69
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 63
+
+def delete ( id: " " )
+ path = ' /app/users/%{id} '
+ replacements = {
+ id: id ,
+ }
+ @client . delete ( path % replacements )
+end
+
+
+
+
+
+
+
+
+ #delete! (id: "") ⇒ NgrokAPI::Models::Empty
+
+
+
+
+
+
+
+
+
+
+
+
+79
+80
+81
+82
+83
+84
+85
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 79
+
+def delete! ( id: " " )
+ path = ' /app/users/%{id} '
+ replacements = {
+ id: id ,
+ }
+ @client . delete ( path % replacements , danger: true )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+28
+29
+30
+31
+32
+33
+34
+35
+36
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 28
+
+def get ( id: " " )
+ path = ' /app/users/%{id} '
+ replacements = {
+ id: id ,
+ }
+ data = { }
+ result = @client . get ( path % replacements , data: data )
+ NgrokAPI :: Models :: ApplicationUser . new ( client: self , attrs: result )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+46
+47
+48
+49
+50
+51
+52
+53
+54
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 46
+
+def get! ( id: " " )
+ path = ' /app/users/%{id} '
+ replacements = {
+ id: id ,
+ }
+ data = { }
+ result = @client . get ( path % replacements , data: data , danger: true )
+ NgrokAPI :: Models :: ApplicationUser . new ( client: self , attrs: result )
+end
+
+
+
+
+
+
+
+
+ #list (before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
+
+
+
+
+
+
+
+
+
+
+
+
+96
+97
+98
+99
+100
+101
+102
+103
+104
+105
+106
+107
+108
+109
+110
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 96
+
+def list ( before_id: nil , limit: nil , url: nil )
+ result = @client . list (
+ before_id: before_id ,
+ limit: limit ,
+ url: url ,
+ path: PATH
+ )
+
+ NgrokAPI :: Models :: Listable . new (
+ client: self ,
+ attrs: result ,
+ list_property: LIST_PROPERTY ,
+ klass: NgrokAPI :: Models :: ApplicationUser
+ )
+end
+
+
+
+
+
+
+
+
+ #list! (before_id: nil, limit: nil, url: nil) ⇒ NgrokAPI::Models::Listable
+
+
+
+
+
+
+
+
+
+
+
+
+122
+123
+124
+125
+126
+127
+128
+129
+130
+131
+132
+133
+134
+135
+136
+137
+138
+
+
+ # File 'lib/ngrokapi/services/application_users_client.rb', line 122
+
+def list! ( before_id: nil , limit: nil , url: nil )
+ result = @client . list (
+ before_id: before_id ,
+ limit: limit ,
+ danger: true ,
+ url: url ,
+ path: PATH
+ )
+
+ NgrokAPI :: Models :: Listable . new (
+ client: self ,
+ attrs: result ,
+ list_property: LIST_PROPERTY ,
+ klass: NgrokAPI :: Models :: ApplicationUser ,
+ danger: true
+ )
+end
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html b/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html
index c292e6c..2a3eb3d 100644
--- a/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html
+++ b/doc/NgrokAPI/Services/CertificateAuthoritiesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::CertificateAuthoritiesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-21
-22
-23
+23
+24
+25
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 21
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 23
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 19
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 21
def client
@client
@@ -674,8 +674,6 @@
-34
-35
36
37
38
@@ -684,10 +682,12 @@
41
42
43
-44
+44
+45
+46
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 34
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 36
def create ( description: " " , metadata: " " , ca_pem: )
path = ' /certificate_authorities '
@@ -807,8 +807,6 @@
-56
-57
58
59
60
@@ -817,10 +815,12 @@
63
64
65
-66
+66
+67
+68
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 56
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 58
def create! ( description: " " , metadata: " " , ca_pem: )
path = ' /certificate_authorities '
@@ -906,16 +906,16 @@
-75
-76
77
78
79
80
-81
+81
+82
+83
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 75
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 77
def delete ( id: " " )
path = ' /certificate_authorities/%{id} '
@@ -997,16 +997,16 @@
-91
-92
93
94
95
96
-97
+97
+98
+99
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 91
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 93
def delete! ( id: " " )
path = ' /certificate_authorities/%{id} '
@@ -1088,18 +1088,18 @@
-106
-107
108
109
110
111
112
113
-114
+114
+115
+116
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 106
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 108
def get ( id: " " )
path = ' /certificate_authorities/%{id} '
@@ -1183,18 +1183,18 @@
-124
-125
126
127
128
129
130
131
-132
+132
+133
+134
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 124
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 126
def get! ( id: " " )
path = ' /certificate_authorities/%{id} '
@@ -1304,8 +1304,6 @@
-143
-144
145
146
147
@@ -1318,10 +1316,12 @@
154
155
156
-157
+157
+158
+159
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 143
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 145
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1437,8 +1437,6 @@
-169
-170
171
172
173
@@ -1453,10 +1451,12 @@
182
183
184
-185
+185
+186
+187
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 169
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 171
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1579,8 +1579,6 @@
-196
-197
198
199
200
@@ -1589,10 +1587,12 @@
203
204
205
-206
+206
+207
+208
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 196
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 198
def update ( id: " " , description: nil , metadata: nil )
path = ' /certificate_authorities/%{id} '
@@ -1709,8 +1709,6 @@
-218
-219
220
221
222
@@ -1719,10 +1717,12 @@
225
226
227
-228
+228
+229
+230
- # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 218
+ # File 'lib/ngrokapi/services/certificate_authorities_client.rb', line 220
def update! ( id: " " , description: nil , metadata: nil )
path = ' /certificate_authorities/%{id} '
@@ -1745,9 +1745,9 @@
diff --git a/doc/NgrokAPI/Services/CredentialsClient.html b/doc/NgrokAPI/Services/CredentialsClient.html
index db71575..a57a0b0 100644
--- a/doc/NgrokAPI/Services/CredentialsClient.html
+++ b/doc/NgrokAPI/Services/CredentialsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::CredentialsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -102,7 +102,7 @@
Overview
-
Tunnel Credentials are ngrok agent authtokens. They authorize the ngrok agent to connect the ngrok service as your account. They are installed with the ngrok authtoken command or by specifying it in the ngrok.yml configuration file with the authtoken property.
+
Tunnel Credentials are ngrok agent authtokens. They authorize the ngrok agent to connect the ngrok service as your account. They are installed with the ngrok config add-authtoken command or by specifying it in the ngrok.yml configuration file with the authtoken property.
ngrok.com/docs/api#api-credentials
@@ -207,7 +207,7 @@
- #create (description: "", metadata: "", acl: []) ⇒ NgrokAPI::Models::Credential
+ #create (description: "", metadata: "", acl: [], owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::Credential
@@ -231,7 +231,7 @@
- #create! (description: "", metadata: "", acl: []) ⇒ NgrokAPI::Models::Credential
+ #create! (description: "", metadata: "", acl: [], owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::Credential
@@ -502,12 +502,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/credentials_client.rb', line 20
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 22
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/credentials_client.rb', line 18
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 20
def client
@client
@@ -575,7 +575,7 @@
- #create (description: "", metadata: "", acl: []) ⇒ NgrokAPI::Models::Credential
+ #create (description: "", metadata: "", acl: [], owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::Credential
@@ -644,7 +644,25 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -676,9 +694,6 @@
-36
-37
-38
39
40
41
@@ -686,12 +701,16 @@
43
44
45
-46
+46
+47
+48
+49
+50
- # File 'lib/ngrokapi/services/credentials_client.rb', line 36
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 39
-def create ( description: " " , metadata: " " , acl: [ ] )
+def create ( description: " " , metadata: " " , acl: [ ] , owner_id: nil , owner_email: " " )
path = ' /credentials '
replacements = {
}
@@ -699,6 +718,7 @@
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
data [ :acl ] = acl if acl
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data )
NgrokAPI :: Models :: Credential . new ( client: self , attrs: result )
end
@@ -710,7 +730,7 @@
- #create! (description: "", metadata: "", acl: []) ⇒ NgrokAPI::Models::Credential
+ #create! (description: "", metadata: "", acl: [], owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::Credential
@@ -779,7 +799,25 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -811,22 +849,23 @@
-61
-62
-63
-64
-65
66
67
68
69
70
-71
+71
+72
+73
+74
+75
+76
+77
- # File 'lib/ngrokapi/services/credentials_client.rb', line 61
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 66
-def create! ( description: " " , metadata: " " , acl: [ ] )
+def create! ( description: " " , metadata: " " , acl: [ ] , owner_id: nil , owner_email: " " )
path = ' /credentials '
replacements = {
}
@@ -834,6 +873,7 @@
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
data [ :acl ] = acl if acl
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data , danger: true )
NgrokAPI :: Models :: Credential . new ( client: self , attrs: result )
end
@@ -910,16 +950,16 @@
-80
-81
-82
-83
-84
-85
-86
+86
+87
+88
+89
+90
+91
+92
- # File 'lib/ngrokapi/services/credentials_client.rb', line 80
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 86
def delete ( id: " " )
path = ' /credentials/%{id} '
@@ -1001,16 +1041,16 @@
-96
-97
-98
-99
-100
-101
-102
+102
+103
+104
+105
+106
+107
+108
- # File 'lib/ngrokapi/services/credentials_client.rb', line 96
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 102
def delete! ( id: " " )
path = ' /credentials/%{id} '
@@ -1092,18 +1132,18 @@
-111
-112
-113
-114
-115
-116
117
118
-119
+119
+120
+121
+122
+123
+124
+125
- # File 'lib/ngrokapi/services/credentials_client.rb', line 111
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 117
def get ( id: " " )
path = ' /credentials/%{id} '
@@ -1187,18 +1227,18 @@
-129
-130
-131
-132
-133
-134
135
136
-137
+137
+138
+139
+140
+141
+142
+143
- # File 'lib/ngrokapi/services/credentials_client.rb', line 129
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 135
def get! ( id: " " )
path = ' /credentials/%{id} '
@@ -1308,12 +1348,6 @@
-148
-149
-150
-151
-152
-153
154
155
156
@@ -1322,10 +1356,16 @@
159
160
161
-162
+162
+163
+164
+165
+166
+167
+168
- # File 'lib/ngrokapi/services/credentials_client.rb', line 148
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 154
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1441,12 +1481,6 @@
-174
-175
-176
-177
-178
-179
180
181
182
@@ -1457,10 +1491,16 @@
187
188
189
-190
+190
+191
+192
+193
+194
+195
+196
- # File 'lib/ngrokapi/services/credentials_client.rb', line 174
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 180
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1569,7 +1609,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -1601,21 +1641,21 @@
-202
-203
-204
-205
-206
-207
208
209
210
211
212
-213
+213
+214
+215
+216
+217
+218
+219
- # File 'lib/ngrokapi/services/credentials_client.rb', line 202
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 208
def update ( id: " " , description: nil , metadata: nil , acl: nil )
path = ' /credentials/%{id} '
@@ -1719,7 +1759,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -1751,21 +1791,21 @@
-226
-227
-228
-229
-230
-231
232
233
234
235
236
-237
+237
+238
+239
+240
+241
+242
+243
- # File 'lib/ngrokapi/services/credentials_client.rb', line 226
+ # File 'lib/ngrokapi/services/credentials_client.rb', line 232
def update! ( id: " " , description: nil , metadata: nil , acl: nil )
path = ' /credentials/%{id} '
@@ -1789,9 +1829,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html
index 6d74112..a9835d9 100644
--- a/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteBackendModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteBackendModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_backend_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/backend '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html
index e3ef6a2..9fff48a 100644
--- a/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteCircuitBreakerModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteCircuitBreakerModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_circuit_breaker_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/circuit_breaker '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html
index 912b50f..13d2746 100644
--- a/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteCompressionModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteCompressionModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_compression_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/compression '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html
index 339528f..1d0dd6d 100644
--- a/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteIPRestrictionModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteIPRestrictionModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_ip_restriction_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/ip_restriction '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html
index 0eac47b..e209d7c 100644
--- a/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteOAuthModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteOAuthModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_o_auth_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/oauth '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html
index e13b698..d20417e 100644
--- a/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteOIDCModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteOIDCModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_oidc_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/oidc '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html
index 4cf0e04..a315d15 100644
--- a/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteRequestHeadersModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteRequestHeadersModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_request_headers_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/request_headers '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html
index a83633a..9a3b374 100644
--- a/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteResponseHeadersModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteResponseHeadersModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_response_headers_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/response_headers '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html
index 6371fcb..e5f6a51 100644
--- a/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteSAMLModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteSAMLModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_saml_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/saml '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html
index 8055da8..9a1097c 100644
--- a/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteWebhookVerificationModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteWebhookVerificationModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_webhook_verification_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/webhook_verification '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html b/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html
index 93b5b4d..4f943dd 100644
--- a/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html
+++ b/doc/NgrokAPI/Services/EdgeRouteWebsocketTCPConverterModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgeRouteWebsocketTCPConverterModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 13
def client
@client
@@ -542,17 +542,17 @@
-93
-94
95
96
97
98
99
-100
+100
+101
+102
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 93
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 95
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -651,17 +651,17 @@
-108
-109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 108
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 110
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -760,8 +760,6 @@
-59
-60
61
62
63
@@ -769,10 +767,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 59
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 61
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -873,8 +873,6 @@
-76
-77
78
79
80
@@ -882,10 +880,12 @@
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 76
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 78
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -989,8 +989,6 @@
-24
-25
26
27
28
@@ -998,10 +996,12 @@
30
31
32
-33
+33
+34
+35
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 24
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 26
def replace ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -1105,8 +1105,6 @@
-42
-43
44
45
46
@@ -1114,10 +1112,12 @@
48
49
50
-51
+51
+52
+53
- # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 42
+ # File 'lib/ngrokapi/services/edge_route_websocket_tcp_converter_module_client.rb', line 44
def replace! ( edge_id: " " , id: " " , a_module: nil )
path = ' /edges/https/%{edge_id}/routes/%{id}/websocket_tcp_converter '
@@ -1139,9 +1139,9 @@
diff --git a/doc/NgrokAPI/Services/EdgesHTTPSClient.html b/doc/NgrokAPI/Services/EdgesHTTPSClient.html
index 5f27a29..0b5b70e 100644
--- a/doc/NgrokAPI/Services/EdgesHTTPSClient.html
+++ b/doc/NgrokAPI/Services/EdgesHTTPSClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgesHTTPSClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 15
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 13
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 15
def client
@client
@@ -705,8 +705,6 @@
-30
-31
32
33
34
@@ -717,10 +715,12 @@
39
40
41
-42
+42
+43
+44
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 30
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 32
def create ( description: " " , metadata: " " , hostports: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/https '
@@ -875,8 +875,6 @@
-56
-57
58
59
60
@@ -887,10 +885,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 56
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 58
def create! ( description: " " , metadata: " " , hostports: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/https '
@@ -978,16 +978,16 @@
-226
-227
228
229
230
231
-232
+232
+233
+234
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 226
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 228
def delete ( id: " " )
path = ' /edges/https/%{id} '
@@ -1069,16 +1069,16 @@
-242
-243
244
245
246
247
-248
+248
+249
+250
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 242
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 244
def delete! ( id: " " )
path = ' /edges/https/%{id} '
@@ -1160,18 +1160,18 @@
-77
-78
79
80
81
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 77
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 79
def get ( id: " " )
path = ' /edges/https/%{id} '
@@ -1255,18 +1255,18 @@
-95
-96
97
98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 95
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 97
def get! ( id: " " )
path = ' /edges/https/%{id} '
@@ -1376,8 +1376,6 @@
-114
-115
116
117
118
@@ -1390,10 +1388,12 @@
125
126
127
-128
+128
+129
+130
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 114
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 116
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1509,8 +1509,6 @@
-140
-141
142
143
144
@@ -1525,10 +1523,12 @@
153
154
155
-156
+156
+157
+158
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 140
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 142
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1705,8 +1705,6 @@
-173
-174
175
176
177
@@ -1718,10 +1716,12 @@
183
184
185
-186
+186
+187
+188
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 173
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 175
def update ( id: " " , description: nil , metadata: nil , hostports: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/https/%{id} '
@@ -1895,8 +1895,6 @@
-204
-205
206
207
208
@@ -1908,10 +1906,12 @@
214
215
216
-217
+217
+218
+219
- # File 'lib/ngrokapi/services/edges_https_client.rb', line 204
+ # File 'lib/ngrokapi/services/edges_https_client.rb', line 206
def update! ( id: " " , description: nil , metadata: nil , hostports: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/https/%{id} '
@@ -1937,9 +1937,9 @@
diff --git a/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html b/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html
index 11b98fa..fc9cfbb 100644
--- a/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html
+++ b/doc/NgrokAPI/Services/EdgesHTTPSRoutesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgesHTTPSRoutesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -436,12 +436,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 13
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 15
def initialize ( client: )
@client = client
@@ -484,12 +484,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 11
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 13
def client
@client
@@ -840,8 +840,6 @@
-39
-40
41
42
43
@@ -863,10 +861,12 @@
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 39
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 41
def create ( edge_id: " " , match_type: , match: , description: " " , metadata: " " , backend: nil , ip_restriction: nil , circuit_breaker: nil , compression: nil , request_headers: nil , response_headers: nil , webhook_verification: nil , oauth: nil , saml: nil , oidc: nil , websocket_tcp_converter: nil )
path = ' /edges/https/%{edge_id}/routes '
@@ -1231,8 +1231,6 @@
-87
-88
89
90
91
@@ -1254,10 +1252,12 @@
107
108
109
-110
+110
+111
+112
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 87
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 89
def create! ( edge_id: " " , match_type: , match: , description: " " , metadata: " " , backend: nil , ip_restriction: nil , circuit_breaker: nil , compression: nil , request_headers: nil , response_headers: nil , webhook_verification: nil , oauth: nil , saml: nil , oidc: nil , websocket_tcp_converter: nil )
path = ' /edges/https/%{edge_id}/routes '
@@ -1374,17 +1374,17 @@
-264
-265
266
267
268
269
270
-271
+271
+272
+273
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 264
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 266
def delete ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -1485,17 +1485,17 @@
-282
-283
284
285
286
287
288
-289
+289
+290
+291
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 282
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 284
def delete! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -1596,8 +1596,6 @@
-120
-121
122
123
124
@@ -1605,10 +1603,12 @@
126
127
128
-129
+129
+130
+131
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 120
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 122
def get ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -1711,8 +1711,6 @@
-140
-141
142
143
144
@@ -1720,10 +1718,12 @@
146
147
148
-149
+149
+150
+151
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 140
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 142
def get! ( edge_id: " " , id: " " )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -2096,8 +2096,6 @@
-177
-178
179
180
181
@@ -2120,10 +2118,12 @@
198
199
200
-201
+201
+202
+203
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 177
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 179
def update ( edge_id: " " , id: " " , match_type: " " , match: " " , description: " " , metadata: " " , backend: nil , ip_restriction: nil , circuit_breaker: nil , compression: nil , request_headers: nil , response_headers: nil , webhook_verification: nil , oauth: nil , saml: nil , oidc: nil , websocket_tcp_converter: nil )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -2511,8 +2511,6 @@
-230
-231
232
233
234
@@ -2535,10 +2533,12 @@
251
252
253
-254
+254
+255
+256
- # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 230
+ # File 'lib/ngrokapi/services/edges_https_routes_client.rb', line 232
def update! ( edge_id: " " , id: " " , match_type: " " , match: " " , description: " " , metadata: " " , backend: nil , ip_restriction: nil , circuit_breaker: nil , compression: nil , request_headers: nil , response_headers: nil , webhook_verification: nil , oauth: nil , saml: nil , oidc: nil , websocket_tcp_converter: nil )
path = ' /edges/https/%{edge_id}/routes/%{id} '
@@ -2575,9 +2575,9 @@
diff --git a/doc/NgrokAPI/Services/EdgesTCPClient.html b/doc/NgrokAPI/Services/EdgesTCPClient.html
index 91832be..cadf33a 100644
--- a/doc/NgrokAPI/Services/EdgesTCPClient.html
+++ b/doc/NgrokAPI/Services/EdgesTCPClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgesTCPClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 15
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 13
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 15
def client
@client
@@ -705,8 +705,6 @@
-30
-31
32
33
34
@@ -717,10 +715,12 @@
39
40
41
-42
+42
+43
+44
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 30
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 32
def create ( description: " " , metadata: " " , hostports: nil , backend: nil , ip_restriction: nil )
path = ' /edges/tcp '
@@ -875,8 +875,6 @@
-56
-57
58
59
60
@@ -887,10 +885,12 @@
65
66
67
-68
+68
+69
+70
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 56
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 58
def create! ( description: " " , metadata: " " , hostports: nil , backend: nil , ip_restriction: nil )
path = ' /edges/tcp '
@@ -978,16 +978,16 @@
-226
-227
228
229
230
231
-232
+232
+233
+234
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 226
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 228
def delete ( id: " " )
path = ' /edges/tcp/%{id} '
@@ -1069,16 +1069,16 @@
-242
-243
244
245
246
247
-248
+248
+249
+250
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 242
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 244
def delete! ( id: " " )
path = ' /edges/tcp/%{id} '
@@ -1160,18 +1160,18 @@
-77
-78
79
80
81
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 77
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 79
def get ( id: " " )
path = ' /edges/tcp/%{id} '
@@ -1255,18 +1255,18 @@
-95
-96
97
98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 95
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 97
def get! ( id: " " )
path = ' /edges/tcp/%{id} '
@@ -1376,8 +1376,6 @@
-114
-115
116
117
118
@@ -1390,10 +1388,12 @@
125
126
127
-128
+128
+129
+130
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 114
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 116
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1509,8 +1509,6 @@
-140
-141
142
143
144
@@ -1525,10 +1523,12 @@
153
154
155
-156
+156
+157
+158
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 140
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 142
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1705,8 +1705,6 @@
-173
-174
175
176
177
@@ -1718,10 +1716,12 @@
183
184
185
-186
+186
+187
+188
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 173
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 175
def update ( id: " " , description: nil , metadata: nil , hostports: nil , backend: nil , ip_restriction: nil )
path = ' /edges/tcp/%{id} '
@@ -1895,8 +1895,6 @@
-204
-205
206
207
208
@@ -1908,10 +1906,12 @@
214
215
216
-217
+217
+218
+219
- # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 204
+ # File 'lib/ngrokapi/services/edges_tcp_client.rb', line 206
def update! ( id: " " , description: nil , metadata: nil , hostports: nil , backend: nil , ip_restriction: nil )
path = ' /edges/tcp/%{id} '
@@ -1937,9 +1937,9 @@
diff --git a/doc/NgrokAPI/Services/EdgesTLSClient.html b/doc/NgrokAPI/Services/EdgesTLSClient.html
index 3c0120d..a7aa0cd 100644
--- a/doc/NgrokAPI/Services/EdgesTLSClient.html
+++ b/doc/NgrokAPI/Services/EdgesTLSClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EdgesTLSClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 15
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 13
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 15
def client
@client
@@ -731,8 +731,6 @@
-32
-33
34
35
36
@@ -745,10 +743,12 @@
43
44
45
-46
+46
+47
+48
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 32
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 34
def create ( description: " " , metadata: " " , hostports: nil , backend: nil , ip_restriction: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/tls '
@@ -931,8 +931,6 @@
-62
-63
64
65
66
@@ -945,10 +943,12 @@
73
74
75
-76
+76
+77
+78
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 62
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 64
def create! ( description: " " , metadata: " " , hostports: nil , backend: nil , ip_restriction: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/tls '
@@ -1038,16 +1038,16 @@
-242
-243
244
245
246
247
-248
+248
+249
+250
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 242
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 244
def delete ( id: " " )
path = ' /edges/tls/%{id} '
@@ -1129,16 +1129,16 @@
-258
-259
260
261
262
263
-264
+264
+265
+266
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 258
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 260
def delete! ( id: " " )
path = ' /edges/tls/%{id} '
@@ -1220,18 +1220,18 @@
-85
-86
87
88
89
90
91
92
-93
+93
+94
+95
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 85
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 87
def get ( id: " " )
path = ' /edges/tls/%{id} '
@@ -1315,18 +1315,18 @@
-103
-104
105
106
107
108
109
110
-111
+111
+112
+113
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 103
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 105
def get! ( id: " " )
path = ' /edges/tls/%{id} '
@@ -1436,8 +1436,6 @@
-122
-123
124
125
126
@@ -1450,10 +1448,12 @@
133
134
135
-136
+136
+137
+138
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 122
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 124
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1569,8 +1569,6 @@
-148
-149
150
151
152
@@ -1585,10 +1583,12 @@
161
162
163
-164
+164
+165
+166
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 148
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 150
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1791,8 +1791,6 @@
-183
-184
185
186
187
@@ -1806,10 +1804,12 @@
195
196
197
-198
+198
+199
+200
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 183
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 185
def update ( id: " " , description: nil , metadata: nil , hostports: nil , backend: nil , ip_restriction: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/tls/%{id} '
@@ -2011,8 +2011,6 @@
-218
-219
220
221
222
@@ -2026,10 +2024,12 @@
230
231
232
-233
+233
+234
+235
- # File 'lib/ngrokapi/services/edges_tls_client.rb', line 218
+ # File 'lib/ngrokapi/services/edges_tls_client.rb', line 220
def update! ( id: " " , description: nil , metadata: nil , hostports: nil , backend: nil , ip_restriction: nil , mutual_tls: nil , tls_termination: nil )
path = ' /edges/tls/%{id} '
@@ -2057,9 +2057,9 @@
diff --git a/doc/NgrokAPI/Services/EndpointsClient.html b/doc/NgrokAPI/Services/EndpointsClient.html
index c5ce444..bdfd4d3 100644
--- a/doc/NgrokAPI/Services/EndpointsClient.html
+++ b/doc/NgrokAPI/Services/EndpointsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EndpointsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -358,12 +358,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 19
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 21
def initialize ( client: )
@client = client
@@ -406,12 +406,12 @@
-17
-18
-19
+19
+20
+21
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 17
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 19
def client
@client
@@ -496,18 +496,18 @@
-83
-84
85
86
87
88
89
90
-91
+91
+92
+93
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 83
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 85
def get ( id: " " )
path = ' /endpoints/%{id} '
@@ -591,18 +591,18 @@
-101
-102
103
104
105
106
107
108
-109
+109
+110
+111
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 101
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 103
def get! ( id: " " )
path = ' /endpoints/%{id} '
@@ -712,8 +712,6 @@
-32
-33
34
35
36
@@ -726,10 +724,12 @@
43
44
45
-46
+46
+47
+48
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 32
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 34
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -845,8 +845,6 @@
-58
-59
60
61
62
@@ -861,10 +859,12 @@
71
72
73
-74
+74
+75
+76
- # File 'lib/ngrokapi/services/endpoints_client.rb', line 58
+ # File 'lib/ngrokapi/services/endpoints_client.rb', line 60
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -893,9 +893,9 @@
diff --git a/doc/NgrokAPI/Services/EventDestinationsClient.html b/doc/NgrokAPI/Services/EventDestinationsClient.html
index 65ed8a7..b4f355e 100644
--- a/doc/NgrokAPI/Services/EventDestinationsClient.html
+++ b/doc/NgrokAPI/Services/EventDestinationsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EventDestinationsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 15
+ # File 'lib/ngrokapi/services/event_destinations_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 13
+ # File 'lib/ngrokapi/services/event_destinations_client.rb', line 15
def client
@client
@@ -582,7 +582,7 @@
-
Create a new Event Destination. It will not apply to anything until it is associated with an Event Stream, and that Event Stream is associated with an Endpoint Config.
+
Create a new Event Destination. It will not apply to anything until it is associated with an Event Subscription.
ngrok.com/docs/api#api-event-destinations-create
@@ -692,7 +692,6 @@
-31
32
33
34
@@ -703,10 +702,11 @@
39
40
41
-42
+42
+43
- # File 'lib/ngrokapi/services/event_destinations_client.rb', line 31
+ # File 'lib/ngrokapi/services/event_destinations_client.rb', line 32
def create ( metadata: " " , description: " " , format: " " , target: nil , verify_with_test_event: nil )
path = ' /event_destinations '
@@ -737,7 +737,7 @@
-
Create a new Event Destination. It will not apply to anything until it is associated with an Event Stream, and that Event Stream is associated with an Endpoint Config. Throws an exception if API error.
+
Create a new Event Destination. It will not apply to anything until it is associated with an Event Subscription. Throws an exception if API error.
ngrok.com/docs/api#api-event-destinations-create
@@ -1877,9 +1877,9 @@
diff --git a/doc/NgrokAPI/Services/EventSourcesClient.html b/doc/NgrokAPI/Services/EventSourcesClient.html
index 9defe54..337b43b 100644
--- a/doc/NgrokAPI/Services/EventSourcesClient.html
+++ b/doc/NgrokAPI/Services/EventSourcesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EventSourcesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -484,12 +484,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 13
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 15
def initialize ( client: )
@client = client
@@ -532,12 +532,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 11
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 13
def client
@client
@@ -640,8 +640,6 @@
-25
-26
27
28
29
@@ -649,10 +647,12 @@
31
32
33
-34
+34
+35
+36
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 25
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 27
def create ( subscription_id: " " , type: " " , filter: " " , fields: [ ] )
path = ' /event_subscriptions/%{subscription_id}/sources '
@@ -755,8 +755,6 @@
-45
-46
47
48
49
@@ -764,10 +762,12 @@
51
52
53
-54
+54
+55
+56
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 45
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 47
def create! ( subscription_id: " " , type: " " , filter: " " , fields: [ ] )
path = ' /event_subscriptions/%{subscription_id}/sources '
@@ -870,17 +870,17 @@
-64
-65
66
67
68
69
70
-71
+71
+72
+73
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 64
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 66
def delete ( subscription_id: " " , type: " " )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -981,17 +981,17 @@
-82
-83
84
85
86
87
88
-89
+89
+90
+91
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 82
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 84
def delete! ( subscription_id: " " , type: " " )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -1092,8 +1092,6 @@
-99
-100
101
102
103
@@ -1101,10 +1099,12 @@
105
106
107
-108
+108
+109
+110
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 99
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 101
def get ( subscription_id: " " , type: " " )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -1207,8 +1207,6 @@
-119
-120
121
122
123
@@ -1216,10 +1214,12 @@
125
126
127
-128
+128
+129
+130
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 119
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 121
def get! ( subscription_id: " " , type: " " )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -1304,18 +1304,18 @@
-137
-138
139
140
141
142
143
144
-145
+145
+146
+147
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 137
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 139
def list ( subscription_id: " " )
path = ' /event_subscriptions/%{subscription_id}/sources '
@@ -1399,18 +1399,18 @@
-155
-156
157
158
159
160
161
162
-163
+163
+164
+165
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 155
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 157
def list! ( subscription_id: " " )
path = ' /event_subscriptions/%{subscription_id}/sources '
@@ -1512,8 +1512,6 @@
-173
-174
175
176
177
@@ -1521,10 +1519,12 @@
179
180
181
-182
+182
+183
+184
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 173
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 175
def update ( subscription_id: " " , type: " " , filter: nil , fields: nil )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -1627,8 +1627,6 @@
-193
-194
195
196
197
@@ -1636,10 +1634,12 @@
199
200
201
-202
+202
+203
+204
- # File 'lib/ngrokapi/services/event_sources_client.rb', line 193
+ # File 'lib/ngrokapi/services/event_sources_client.rb', line 195
def update! ( subscription_id: " " , type: " " , filter: nil , fields: nil )
path = ' /event_subscriptions/%{subscription_id}/sources/%{type} '
@@ -1661,9 +1661,9 @@
diff --git a/doc/NgrokAPI/Services/EventSubscriptionsClient.html b/doc/NgrokAPI/Services/EventSubscriptionsClient.html
index 3d4273c..683db69 100644
--- a/doc/NgrokAPI/Services/EventSubscriptionsClient.html
+++ b/doc/NgrokAPI/Services/EventSubscriptionsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::EventSubscriptionsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 15
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 13
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 15
def client
@client
@@ -692,8 +692,6 @@
-29
-30
31
32
33
@@ -703,10 +701,12 @@
37
38
39
-40
+40
+41
+42
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 29
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 31
def create ( metadata: " " , description: " " , sources: [ ] , destination_ids: [ ] )
path = ' /event_subscriptions '
@@ -847,8 +847,6 @@
-53
-54
55
56
57
@@ -858,10 +856,12 @@
61
62
63
-64
+64
+65
+66
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 53
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 55
def create! ( metadata: " " , description: " " , sources: [ ] , destination_ids: [ ] )
path = ' /event_subscriptions '
@@ -948,16 +948,16 @@
-73
-74
75
76
77
78
-79
+79
+80
+81
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 73
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 75
def delete ( id: " " )
path = ' /event_subscriptions/%{id} '
@@ -1039,16 +1039,16 @@
-89
-90
91
92
93
94
-95
+95
+96
+97
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 89
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 91
def delete! ( id: " " )
path = ' /event_subscriptions/%{id} '
@@ -1130,18 +1130,18 @@
-104
-105
106
107
108
109
110
111
-112
+112
+113
+114
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 104
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 106
def get ( id: " " )
path = ' /event_subscriptions/%{id} '
@@ -1225,18 +1225,18 @@
-122
-123
124
125
126
127
128
129
-130
+130
+131
+132
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 122
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 124
def get! ( id: " " )
path = ' /event_subscriptions/%{id} '
@@ -1346,8 +1346,6 @@
-141
-142
143
144
145
@@ -1360,10 +1358,12 @@
152
153
154
-155
+155
+156
+157
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 141
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 143
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1479,8 +1479,6 @@
-167
-168
169
170
171
@@ -1495,10 +1493,12 @@
180
181
182
-183
+183
+184
+185
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 167
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 169
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1662,8 +1662,6 @@
-196
-197
198
199
200
@@ -1674,10 +1672,12 @@
205
206
207
-208
+208
+209
+210
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 196
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 198
def update ( id: " " , metadata: nil , description: nil , sources: nil , destination_ids: nil )
path = ' /event_subscriptions/%{id} '
@@ -1837,8 +1837,6 @@
-222
-223
224
225
226
@@ -1849,10 +1847,12 @@
231
232
233
-234
+234
+235
+236
- # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 222
+ # File 'lib/ngrokapi/services/event_subscriptions_client.rb', line 224
def update! ( id: " " , metadata: nil , description: nil , sources: nil , destination_ids: nil )
path = ' /event_subscriptions/%{id} '
@@ -1877,9 +1877,9 @@
diff --git a/doc/NgrokAPI/Services/FailoverBackendsClient.html b/doc/NgrokAPI/Services/FailoverBackendsClient.html
index 318fa11..da49cdb 100644
--- a/doc/NgrokAPI/Services/FailoverBackendsClient.html
+++ b/doc/NgrokAPI/Services/FailoverBackendsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::FailoverBackendsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 20
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 22
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 18
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 20
def client
@client
@@ -676,8 +676,6 @@
-33
-34
35
36
37
@@ -686,10 +684,12 @@
40
41
42
-43
+43
+44
+45
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 33
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 35
def create ( description: " " , metadata: " " , backends: [ ] )
path = ' /backends/failover '
@@ -811,8 +811,6 @@
-55
-56
57
58
59
@@ -821,10 +819,12 @@
62
63
64
-65
+65
+66
+67
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 55
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 57
def create! ( description: " " , metadata: " " , backends: [ ] )
path = ' /backends/failover '
@@ -910,16 +910,16 @@
-74
-75
76
77
78
79
-80
+80
+81
+82
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 74
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 76
def delete ( id: " " )
path = ' /backends/failover/%{id} '
@@ -1001,16 +1001,16 @@
-90
-91
92
93
94
95
-96
+96
+97
+98
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 90
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 92
def delete! ( id: " " )
path = ' /backends/failover/%{id} '
@@ -1092,18 +1092,18 @@
-105
-106
107
108
109
110
111
112
-113
+113
+114
+115
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 105
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 107
def get ( id: " " )
path = ' /backends/failover/%{id} '
@@ -1187,18 +1187,18 @@
-123
-124
125
126
127
128
129
130
-131
+131
+132
+133
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 123
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 125
def get! ( id: " " )
path = ' /backends/failover/%{id} '
@@ -1308,8 +1308,6 @@
-142
-143
144
145
146
@@ -1322,10 +1320,12 @@
153
154
155
-156
+156
+157
+158
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 142
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 144
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1441,8 +1441,6 @@
-168
-169
170
171
172
@@ -1457,10 +1455,12 @@
181
182
183
-184
+184
+185
+186
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 168
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 170
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1601,8 +1601,6 @@
-196
-197
198
199
200
@@ -1612,10 +1610,12 @@
204
205
206
-207
+207
+208
+209
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 196
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 198
def update ( id: " " , description: nil , metadata: nil , backends: [ ] )
path = ' /backends/failover/%{id} '
@@ -1751,8 +1751,6 @@
-220
-221
222
223
224
@@ -1762,10 +1760,12 @@
228
229
230
-231
+231
+232
+233
- # File 'lib/ngrokapi/services/failover_backends_client.rb', line 220
+ # File 'lib/ngrokapi/services/failover_backends_client.rb', line 222
def update! ( id: " " , description: nil , metadata: nil , backends: [ ] )
path = ' /backends/failover/%{id} '
@@ -1789,9 +1789,9 @@
diff --git a/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html b/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html
index 5916c10..5798a18 100644
--- a/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html
+++ b/doc/NgrokAPI/Services/HTTPResponseBackendsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::HTTPResponseBackendsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -500,12 +500,12 @@
-15
-16
-17
+17
+18
+19
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 15
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 17
def initialize ( client: )
@client = client
@@ -548,12 +548,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 13
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 15
def client
@client
@@ -708,8 +708,6 @@
-28
-29
30
31
32
@@ -720,10 +718,12 @@
37
38
39
-40
+40
+41
+42
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 28
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 30
def create ( description: " " , metadata: " " , body: " " , headers: { } , status_code: nil )
path = ' /backends/http_response '
@@ -881,8 +881,6 @@
-51
-52
53
54
55
@@ -893,10 +891,12 @@
60
61
62
-63
+63
+64
+65
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 51
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 53
def create! ( description: " " , metadata: " " , body: " " , headers: { } , status_code: nil )
path = ' /backends/http_response '
@@ -982,16 +982,16 @@
-70
-71
72
73
74
75
-76
+76
+77
+78
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 70
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 72
def delete ( id: " " )
path = ' /backends/http_response/%{id} '
@@ -1071,16 +1071,16 @@
-83
-84
85
86
87
88
-89
+89
+90
+91
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 83
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 85
def delete! ( id: " " )
path = ' /backends/http_response/%{id} '
@@ -1160,18 +1160,18 @@
-96
-97
98
99
100
101
102
103
-104
+104
+105
+106
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 96
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 98
def get ( id: " " )
path = ' /backends/http_response/%{id} '
@@ -1253,18 +1253,18 @@
-111
-112
113
114
115
116
117
118
-119
+119
+120
+121
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 111
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 113
def get! ( id: " " )
path = ' /backends/http_response/%{id} '
@@ -1372,8 +1372,6 @@
-128
-129
130
131
132
@@ -1386,10 +1384,12 @@
139
140
141
-142
+142
+143
+144
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 128
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 130
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1503,8 +1503,6 @@
-151
-152
153
154
155
@@ -1519,10 +1517,12 @@
164
165
166
-167
+167
+168
+169
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 151
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 153
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1697,8 +1697,6 @@
-179
-180
181
182
183
@@ -1710,10 +1708,12 @@
189
190
191
-192
+192
+193
+194
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 179
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 181
def update ( id: " " , description: nil , metadata: nil , body: nil , headers: nil , status_code: nil )
path = ' /backends/http_response/%{id} '
@@ -1885,8 +1885,6 @@
-204
-205
206
207
208
@@ -1898,10 +1896,12 @@
214
215
216
-217
+217
+218
+219
- # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 204
+ # File 'lib/ngrokapi/services/http_response_backends_client.rb', line 206
def update! ( id: " " , description: nil , metadata: nil , body: nil , headers: nil , status_code: nil )
path = ' /backends/http_response/%{id} '
@@ -1927,9 +1927,9 @@
diff --git a/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html b/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html
index b4cdb3b..8c92901 100644
--- a/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html
+++ b/doc/NgrokAPI/Services/HTTPSEdgeMutualTLSModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::HTTPSEdgeMutualTLSModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/https/%{id}/mutual_tls '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/https/%{id}/mutual_tls '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/https/%{id}/mutual_tls '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/https/%{id}/mutual_tls '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/https/%{id}/mutual_tls '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/https_edge_mutual_tls_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/https/%{id}/mutual_tls '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html b/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html
index 0336bc9..0e08c99 100644
--- a/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html
+++ b/doc/NgrokAPI/Services/HTTPSEdgeTLSTerminationModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::HTTPSEdgeTLSTerminationModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/https/%{id}/tls_termination '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/https/%{id}/tls_termination '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/https/%{id}/tls_termination '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/https/%{id}/tls_termination '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/https/%{id}/tls_termination '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/https_edge_tls_termination_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/https/%{id}/tls_termination '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/IPPoliciesClient.html b/doc/NgrokAPI/Services/IPPoliciesClient.html
index e626d76..128aa61 100644
--- a/doc/NgrokAPI/Services/IPPoliciesClient.html
+++ b/doc/NgrokAPI/Services/IPPoliciesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::IPPoliciesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 20
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 22
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 18
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 20
def client
@client
@@ -658,8 +658,6 @@
-33
-34
35
36
37
@@ -667,10 +665,12 @@
39
40
41
-42
+42
+43
+44
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 33
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 35
def create ( description: " " , metadata: " " , action: nil )
path = ' /ip_policies '
@@ -773,8 +773,6 @@
-54
-55
56
57
58
@@ -782,10 +780,12 @@
60
61
62
-63
+63
+64
+65
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 54
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 56
def create! ( description: " " , metadata: " " , action: nil )
path = ' /ip_policies '
@@ -870,16 +870,16 @@
-74
-75
76
77
78
79
-80
+80
+81
+82
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 74
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 76
def delete ( id: " " )
path = ' /ip_policies/%{id} '
@@ -961,16 +961,16 @@
-92
-93
94
95
96
97
-98
+98
+99
+100
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 92
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 94
def delete! ( id: " " )
path = ' /ip_policies/%{id} '
@@ -1052,18 +1052,18 @@
-107
-108
109
110
111
112
113
114
-115
+115
+116
+117
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 107
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 109
def get ( id: " " )
path = ' /ip_policies/%{id} '
@@ -1147,18 +1147,18 @@
-125
-126
127
128
129
130
131
132
-133
+133
+134
+135
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 125
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 127
def get! ( id: " " )
path = ' /ip_policies/%{id} '
@@ -1268,8 +1268,6 @@
-144
-145
146
147
148
@@ -1282,10 +1280,12 @@
155
156
157
-158
+158
+159
+160
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 144
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 146
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1401,8 +1401,6 @@
-170
-171
172
173
174
@@ -1417,10 +1415,12 @@
183
184
185
-186
+186
+187
+188
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 170
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 172
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1543,8 +1543,6 @@
-197
-198
199
200
201
@@ -1553,10 +1551,12 @@
204
205
206
-207
+207
+208
+209
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 197
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 199
def update ( id: " " , description: nil , metadata: nil )
path = ' /ip_policies/%{id} '
@@ -1673,8 +1673,6 @@
-219
-220
221
222
223
@@ -1683,10 +1681,12 @@
226
227
228
-229
+229
+230
+231
- # File 'lib/ngrokapi/services/ip_policies_client.rb', line 219
+ # File 'lib/ngrokapi/services/ip_policies_client.rb', line 221
def update! ( id: " " , description: nil , metadata: nil )
path = ' /ip_policies/%{id} '
@@ -1709,9 +1709,9 @@
diff --git a/doc/NgrokAPI/Services/IPPolicyRulesClient.html b/doc/NgrokAPI/Services/IPPolicyRulesClient.html
index 8f7cf66..406bea1 100644
--- a/doc/NgrokAPI/Services/IPPolicyRulesClient.html
+++ b/doc/NgrokAPI/Services/IPPolicyRulesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::IPPolicyRulesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -207,7 +207,7 @@
- #create (description: "", metadata: "", cidr:, ip_policy_id:, action: nil) ⇒ NgrokAPI::Models::IPPolicyRule
+ #create (description: "", metadata: "", cidr:, ip_policy_id:, action:) ⇒ NgrokAPI::Models::IPPolicyRule
@@ -231,7 +231,7 @@
- #create! (description: "", metadata: "", cidr:, ip_policy_id:, action: nil) ⇒ NgrokAPI::Models::IPPolicyRule
+ #create! (description: "", metadata: "", cidr:, ip_policy_id:, action:) ⇒ NgrokAPI::Models::IPPolicyRule
@@ -502,12 +502,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 18
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 20
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 16
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 18
def client
@client
@@ -575,7 +575,7 @@
- #create (description: "", metadata: "", cidr:, ip_policy_id:, action: nil) ⇒ NgrokAPI::Models::IPPolicyRule
+ #create (description: "", metadata: "", cidr:, ip_policy_id:, action:) ⇒ NgrokAPI::Models::IPPolicyRule
@@ -671,8 +671,6 @@
(string )
- (defaults to: nil )
-
—
@@ -708,8 +706,6 @@
-33
-34
35
36
37
@@ -720,12 +716,14 @@
42
43
44
-45
+45
+46
+47
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 33
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 35
-def create ( description: " " , metadata: " " , cidr: , ip_policy_id: , action: nil )
+def create ( description: " " , metadata: " " , cidr: , ip_policy_id: , action: )
path = ' /ip_policy_rules '
replacements = {
}
@@ -746,7 +744,7 @@
- #create! (description: "", metadata: "", cidr:, ip_policy_id:, action: nil) ⇒ NgrokAPI::Models::IPPolicyRule
+ #create! (description: "", metadata: "", cidr:, ip_policy_id:, action:) ⇒ NgrokAPI::Models::IPPolicyRule
@@ -842,8 +840,6 @@
(string )
- (defaults to: nil )
-
—
@@ -879,8 +875,6 @@
-59
-60
61
62
63
@@ -891,12 +885,14 @@
68
69
70
-71
+71
+72
+73
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 59
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 61
-def create! ( description: " " , metadata: " " , cidr: , ip_policy_id: , action: nil )
+def create! ( description: " " , metadata: " " , cidr: , ip_policy_id: , action: )
path = ' /ip_policy_rules '
replacements = {
}
@@ -982,16 +978,16 @@
-80
-81
82
83
84
85
-86
+86
+87
+88
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 80
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 82
def delete ( id: " " )
path = ' /ip_policy_rules/%{id} '
@@ -1073,16 +1069,16 @@
-96
-97
98
99
100
101
-102
+102
+103
+104
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 96
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 98
def delete! ( id: " " )
path = ' /ip_policy_rules/%{id} '
@@ -1164,18 +1160,18 @@
-111
-112
113
114
115
116
117
118
-119
+119
+120
+121
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 111
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 113
def get ( id: " " )
path = ' /ip_policy_rules/%{id} '
@@ -1259,18 +1255,18 @@
-129
-130
131
132
133
134
135
136
-137
+137
+138
+139
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 129
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 131
def get! ( id: " " )
path = ' /ip_policy_rules/%{id} '
@@ -1380,8 +1376,6 @@
-148
-149
150
151
152
@@ -1394,10 +1388,12 @@
159
160
161
-162
+162
+163
+164
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 148
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 150
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1513,8 +1509,6 @@
-174
-175
176
177
178
@@ -1529,10 +1523,12 @@
187
188
189
-190
+190
+191
+192
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 174
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 176
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1673,8 +1669,6 @@
-202
-203
204
205
206
@@ -1684,10 +1678,12 @@
210
211
212
-213
+213
+214
+215
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 202
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 204
def update ( id: " " , description: nil , metadata: nil , cidr: nil )
path = ' /ip_policy_rules/%{id} '
@@ -1823,8 +1819,6 @@
-226
-227
228
229
230
@@ -1834,10 +1828,12 @@
234
235
236
-237
+237
+238
+239
- # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 226
+ # File 'lib/ngrokapi/services/ip_policy_rules_client.rb', line 228
def update! ( id: " " , description: nil , metadata: nil , cidr: nil )
path = ' /ip_policy_rules/%{id} '
@@ -1861,9 +1857,9 @@
diff --git a/doc/NgrokAPI/Services/IPRestrictionsClient.html b/doc/NgrokAPI/Services/IPRestrictionsClient.html
index 18c5d4d..999097f 100644
--- a/doc/NgrokAPI/Services/IPRestrictionsClient.html
+++ b/doc/NgrokAPI/Services/IPRestrictionsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::IPRestrictionsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-22
-23
-24
+24
+25
+26
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 22
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 24
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 20
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 22
def client
@client
@@ -708,8 +708,6 @@
-37
-38
39
40
41
@@ -720,10 +718,12 @@
46
47
48
-49
+49
+50
+51
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 37
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 39
def create ( description: " " , metadata: " " , enforced: False , type: , ip_policy_ids: )
path = ' /ip_restrictions '
@@ -879,8 +879,6 @@
-63
-64
65
66
67
@@ -891,10 +889,12 @@
72
73
74
-75
+75
+76
+77
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 63
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 65
def create! ( description: " " , metadata: " " , enforced: False , type: , ip_policy_ids: )
path = ' /ip_restrictions '
@@ -982,16 +982,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 84
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 86
def delete ( id: " " )
path = ' /ip_restrictions/%{id} '
@@ -1073,16 +1073,16 @@
-100
-101
102
103
104
105
-106
+106
+107
+108
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 100
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 102
def delete! ( id: " " )
path = ' /ip_restrictions/%{id} '
@@ -1164,18 +1164,18 @@
-115
-116
117
118
119
120
121
122
-123
+123
+124
+125
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 115
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 117
def get ( id: " " )
path = ' /ip_restrictions/%{id} '
@@ -1259,18 +1259,18 @@
-133
-134
135
136
137
138
139
140
-141
+141
+142
+143
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 133
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 135
def get! ( id: " " )
path = ' /ip_restrictions/%{id} '
@@ -1380,8 +1380,6 @@
-152
-153
154
155
156
@@ -1394,10 +1392,12 @@
163
164
165
-166
+166
+167
+168
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 152
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 154
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1513,8 +1513,6 @@
-178
-179
180
181
182
@@ -1529,10 +1527,12 @@
191
192
193
-194
+194
+195
+196
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 178
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 180
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1691,8 +1691,6 @@
-207
-208
209
210
211
@@ -1703,10 +1701,12 @@
216
217
218
-219
+219
+220
+221
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 207
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 209
def update ( id: " " , description: nil , metadata: nil , enforced: nil , ip_policy_ids: [ ] )
path = ' /ip_restrictions/%{id} '
@@ -1861,8 +1861,6 @@
-233
-234
235
236
237
@@ -1873,10 +1871,12 @@
242
243
244
-245
+245
+246
+247
- # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 233
+ # File 'lib/ngrokapi/services/ip_restrictions_client.rb', line 235
def update! ( id: " " , description: nil , metadata: nil , enforced: nil , ip_policy_ids: [ ] )
path = ' /ip_restrictions/%{id} '
@@ -1901,9 +1901,9 @@
diff --git a/doc/NgrokAPI/Services/ReservedAddrsClient.html b/doc/NgrokAPI/Services/ReservedAddrsClient.html
index 11e58aa..308c5a5 100644
--- a/doc/NgrokAPI/Services/ReservedAddrsClient.html
+++ b/doc/NgrokAPI/Services/ReservedAddrsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::ReservedAddrsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 19
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 21
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-17
-18
-19
+19
+20
+21
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 17
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 19
def client
@client
@@ -676,8 +676,6 @@
-32
-33
34
35
36
@@ -686,10 +684,12 @@
39
40
41
-42
+42
+43
+44
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 32
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 34
def create ( description: " " , metadata: " " , region: " " , endpoint_configuration_id: nil )
path = ' /reserved_addrs '
@@ -811,8 +811,6 @@
-54
-55
56
57
58
@@ -821,10 +819,12 @@
61
62
63
-64
+64
+65
+66
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 54
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 56
def create! ( description: " " , metadata: " " , region: " " , endpoint_configuration_id: nil )
path = ' /reserved_addrs '
@@ -910,16 +910,16 @@
-73
-74
75
76
77
78
-79
+79
+80
+81
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 73
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 75
def delete ( id: " " )
path = ' /reserved_addrs/%{id} '
@@ -1001,16 +1001,16 @@
-89
-90
91
92
93
94
-95
+95
+96
+97
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 89
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 91
def delete! ( id: " " )
path = ' /reserved_addrs/%{id} '
@@ -1092,18 +1092,18 @@
-104
-105
106
107
108
109
110
111
-112
+112
+113
+114
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 104
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 106
def get ( id: " " )
path = ' /reserved_addrs/%{id} '
@@ -1187,18 +1187,18 @@
-122
-123
124
125
126
127
128
129
-130
+130
+131
+132
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 122
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 124
def get! ( id: " " )
path = ' /reserved_addrs/%{id} '
@@ -1308,8 +1308,6 @@
-141
-142
143
144
145
@@ -1322,10 +1320,12 @@
152
153
154
-155
+155
+156
+157
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 141
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 143
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1441,8 +1441,6 @@
-167
-168
169
170
171
@@ -1457,10 +1455,12 @@
180
181
182
-183
+183
+184
+185
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 167
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 169
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1583,8 +1583,6 @@
-194
-195
196
197
198
@@ -1593,10 +1591,12 @@
201
202
203
-204
+204
+205
+206
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 194
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 196
def update ( id: " " , description: nil , metadata: nil , endpoint_configuration_id: nil )
path = ' /reserved_addrs/%{id} '
@@ -1713,8 +1713,6 @@
-216
-217
218
219
220
@@ -1723,10 +1721,12 @@
223
224
225
-226
+226
+227
+228
- # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 216
+ # File 'lib/ngrokapi/services/reserved_addrs_client.rb', line 218
def update! ( id: " " , description: nil , metadata: nil , endpoint_configuration_id: nil )
path = ' /reserved_addrs/%{id} '
@@ -1749,9 +1749,9 @@
diff --git a/doc/NgrokAPI/Services/ReservedDomainsClient.html b/doc/NgrokAPI/Services/ReservedDomainsClient.html
index cf9aa53..990873a 100644
--- a/doc/NgrokAPI/Services/ReservedDomainsClient.html
+++ b/doc/NgrokAPI/Services/ReservedDomainsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::ReservedDomainsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -207,7 +207,7 @@
- #create (name:, region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #create (name: "", domain: "", region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
@@ -231,7 +231,7 @@
- #create! (name:, region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #create! (name: "", domain: "", region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
@@ -521,7 +521,7 @@
- #update (id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #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) ⇒ NgrokAPI::Models::ReservedDomain
@@ -545,7 +545,7 @@
- #update! (id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #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) ⇒ NgrokAPI::Models::ReservedDomain
@@ -598,12 +598,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 20
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 22
def initialize ( client: )
@client = client
@@ -646,12 +646,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 18
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 20
def client
@client
@@ -671,7 +671,7 @@
- #create (name:, region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #create (name: "", domain: "", region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
@@ -693,16 +693,18 @@
- name
+ domain
(string )
+ (defaults to: "" )
+
—
-
the domain name to reserve. It may be a full domain name like app.example.com. If the name does not contain a '.' it will reserve that subdomain on ngrok.io.
+
hostname of the reserved domain
@@ -824,8 +826,6 @@
-36
-37
38
39
40
@@ -837,17 +837,19 @@
46
47
48
-49
+49
+50
+51
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 36
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 38
-def create ( name: , region: " " , description: " " , metadata: " " , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
+def create ( name: " " , domain: " " , region: " " , description: " " , metadata: " " , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
path = ' /reserved_domains '
replacements = {
}
data = { }
- data [ :name ] = name if name
+ data [ :domain ] = domain if domain
data [ :region ] = region if region
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
@@ -864,7 +866,7 @@
- #create! (name:, region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #create! (name: "", domain: "", region: "", description: "", metadata: "", http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
@@ -886,16 +888,18 @@
- name
+ domain
(string )
+ (defaults to: "" )
+
—
-
the domain name to reserve. It may be a full domain name like app.example.com. If the name does not contain a '.' it will reserve that subdomain on ngrok.io.
+
hostname of the reserved domain
@@ -1017,8 +1021,6 @@
-64
-65
66
67
68
@@ -1030,17 +1032,19 @@
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 64
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 66
-def create! ( name: , region: " " , description: " " , metadata: " " , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
+def create! ( name: " " , domain: " " , region: " " , description: " " , metadata: " " , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
path = ' /reserved_domains '
replacements = {
}
data = { }
- data [ :name ] = name if name
+ data [ :domain ] = domain if domain
data [ :region ] = region if region
data [ :description ] = description if description
data [ :metadata ] = metadata if metadata
@@ -1122,16 +1126,16 @@
-86
-87
88
89
90
91
-92
+92
+93
+94
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 86
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 88
def delete ( id: " " )
path = ' /reserved_domains/%{id} '
@@ -1213,16 +1217,16 @@
-102
-103
104
105
106
107
-108
+108
+109
+110
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 102
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 104
def delete! ( id: " " )
path = ' /reserved_domains/%{id} '
@@ -1304,16 +1308,16 @@
-287
-288
289
290
291
292
-293
+293
+294
+295
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 287
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 289
def delete_certificate ( id: " " )
path = ' /reserved_domains/%{id}/certificate '
@@ -1395,16 +1399,16 @@
-303
-304
305
306
307
308
-309
+309
+310
+311
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 303
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 305
def delete_certificate! ( id: " " )
path = ' /reserved_domains/%{id}/certificate '
@@ -1486,16 +1490,16 @@
-256
-257
258
259
260
261
-262
+262
+263
+264
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 256
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 258
def delete_certificate_management_policy ( id: " " )
path = ' /reserved_domains/%{id}/certificate_management_policy '
@@ -1577,16 +1581,16 @@
-272
-273
274
275
276
277
-278
+278
+279
+280
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 272
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 274
def delete_certificate_management_policy! ( id: " " )
path = ' /reserved_domains/%{id}/certificate_management_policy '
@@ -1668,18 +1672,18 @@
-117
-118
119
120
121
122
123
124
-125
+125
+126
+127
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 117
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 119
def get ( id: " " )
path = ' /reserved_domains/%{id} '
@@ -1763,18 +1767,18 @@
-135
-136
137
138
139
140
141
142
-143
+143
+144
+145
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 135
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 137
def get! ( id: " " )
path = ' /reserved_domains/%{id} '
@@ -1884,8 +1888,6 @@
-154
-155
156
157
158
@@ -1898,10 +1900,12 @@
165
166
167
-168
+168
+169
+170
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 154
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 156
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -2017,8 +2021,6 @@
-180
-181
182
183
184
@@ -2033,10 +2035,12 @@
193
194
195
-196
+196
+197
+198
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 180
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 182
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -2063,7 +2067,7 @@
- #update (id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #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) ⇒ NgrokAPI::Models::ReservedDomain
@@ -2195,8 +2199,6 @@
-209
-210
211
212
213
@@ -2207,12 +2209,14 @@
218
219
220
-221
+221
+222
+223
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 209
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 211
-def update ( id: " " , description: nil , metadata: nil , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
+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 )
path = ' /reserved_domains/%{id} '
replacements = {
id: id ,
@@ -2233,7 +2237,7 @@
- #update! (id: "", description: nil, metadata: nil, http_endpoint_configuration_id: nil, https_endpoint_configuration_id: nil, certificate_id: nil, certificate_management_policy: nil) ⇒ NgrokAPI::Models::ReservedDomain
+ #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) ⇒ NgrokAPI::Models::ReservedDomain
@@ -2365,8 +2369,6 @@
-235
-236
237
238
239
@@ -2377,12 +2379,14 @@
244
245
246
-247
+247
+248
+249
- # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 235
+ # File 'lib/ngrokapi/services/reserved_domains_client.rb', line 237
-def update! ( id: " " , description: nil , metadata: nil , http_endpoint_configuration_id: nil , https_endpoint_configuration_id: nil , certificate_id: nil , certificate_management_policy: nil )
+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 )
path = ' /reserved_domains/%{id} '
replacements = {
id: id ,
@@ -2405,9 +2409,9 @@
diff --git a/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html b/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html
index 9995075..feeb77f 100644
--- a/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html
+++ b/doc/NgrokAPI/Services/SSHCertificateAuthoritiesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::SSHCertificateAuthoritiesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 18
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 20
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 16
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 18
def client
@client
@@ -712,8 +712,6 @@
-33
-34
35
36
37
@@ -724,10 +722,12 @@
42
43
44
-45
+45
+46
+47
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 33
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 35
def create ( description: " " , metadata: " " , private_key_type: " " , elliptic_curve: " " , key_size: 0 )
path = ' /ssh_certificate_authorities '
@@ -887,8 +887,6 @@
-59
-60
61
62
63
@@ -899,10 +897,12 @@
68
69
70
-71
+71
+72
+73
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 59
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 61
def create! ( description: " " , metadata: " " , private_key_type: " " , elliptic_curve: " " , key_size: 0 )
path = ' /ssh_certificate_authorities '
@@ -990,16 +990,16 @@
-80
-81
82
83
84
85
-86
+86
+87
+88
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 80
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 82
def delete ( id: " " )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1081,16 +1081,16 @@
-96
-97
98
99
100
101
-102
+102
+103
+104
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 96
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 98
def delete! ( id: " " )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1172,18 +1172,18 @@
-111
-112
113
114
115
116
117
118
-119
+119
+120
+121
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 111
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 113
def get ( id: " " )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1267,18 +1267,18 @@
-129
-130
131
132
133
134
135
136
-137
+137
+138
+139
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 129
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 131
def get! ( id: " " )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1388,8 +1388,6 @@
-148
-149
150
151
152
@@ -1402,10 +1400,12 @@
159
160
161
-162
+162
+163
+164
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 148
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 150
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1521,8 +1521,6 @@
-174
-175
176
177
178
@@ -1537,10 +1535,12 @@
187
188
189
-190
+190
+191
+192
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 174
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 176
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1663,8 +1663,6 @@
-201
-202
203
204
205
@@ -1673,10 +1671,12 @@
208
209
210
-211
+211
+212
+213
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 201
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 203
def update ( id: " " , description: nil , metadata: nil )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1793,8 +1793,6 @@
-223
-224
225
226
227
@@ -1803,10 +1801,12 @@
230
231
232
-233
+233
+234
+235
- # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 223
+ # File 'lib/ngrokapi/services/ssh_certificate_authorities_client.rb', line 225
def update! ( id: " " , description: nil , metadata: nil )
path = ' /ssh_certificate_authorities/%{id} '
@@ -1829,9 +1829,9 @@
diff --git a/doc/NgrokAPI/Services/SSHCredentialsClient.html b/doc/NgrokAPI/Services/SSHCredentialsClient.html
index c16537b..b3b9603 100644
--- a/doc/NgrokAPI/Services/SSHCredentialsClient.html
+++ b/doc/NgrokAPI/Services/SSHCredentialsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::SSHCredentialsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -207,7 +207,7 @@
- #create (description: "", metadata: "", acl: [], public_key:) ⇒ NgrokAPI::Models::SSHCredential
+ #create (description: "", metadata: "", acl: [], public_key:, owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::SSHCredential
@@ -231,7 +231,7 @@
- #create! (description: "", metadata: "", acl: [], public_key:) ⇒ NgrokAPI::Models::SSHCredential
+ #create! (description: "", metadata: "", acl: [], public_key:, owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::SSHCredential
@@ -502,12 +502,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 18
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 20
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 16
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 18
def client
@client
@@ -575,7 +575,7 @@
- #create (description: "", metadata: "", acl: [], public_key:) ⇒ NgrokAPI::Models::SSHCredential
+ #create (description: "", metadata: "", acl: [], public_key:, owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::SSHCredential
@@ -644,7 +644,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -661,6 +661,24 @@
—
the PEM-encoded public key of the SSH keypair that will be used to authenticate
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -692,9 +710,6 @@
-33
-34
-35
36
37
38
@@ -703,12 +718,16 @@
41
42
43
-44
+44
+45
+46
+47
+48
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 33
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 36
-def create ( description: " " , metadata: " " , acl: [ ] , public_key: )
+def create ( description: " " , metadata: " " , acl: [ ] , public_key: , owner_id: nil , owner_email: " " )
path = ' /ssh_credentials '
replacements = {
}
@@ -717,6 +736,7 @@
data [ :metadata ] = metadata if metadata
data [ :acl ] = acl if acl
data [ :public_key ] = public_key if public_key
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data )
NgrokAPI :: Models :: SSHCredential . new ( client: self , attrs: result )
end
@@ -728,7 +748,7 @@
- #create! (description: "", metadata: "", acl: [], public_key:) ⇒ NgrokAPI::Models::SSHCredential
+ #create! (description: "", metadata: "", acl: [], public_key:, owner_id: nil, owner_email: "") ⇒ NgrokAPI::Models::SSHCredential
@@ -797,7 +817,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -814,6 +834,24 @@
—
the PEM-encoded public key of the SSH keypair that will be used to authenticate
+
+
+
+
+
+
+ owner_id
+
+
+ (string )
+
+
+ (defaults to: nil )
+
+
+ —
+
+
If supplied at credential creation, ownership will be assigned to the specified User or Bot. Only admins may specify an owner other than themselves. Defaults to the authenticated User or Bot.
@@ -845,23 +883,24 @@
-58
-59
-60
-61
-62
63
64
65
66
67
68
-69
+69
+70
+71
+72
+73
+74
+75
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 58
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 63
-def create! ( description: " " , metadata: " " , acl: [ ] , public_key: )
+def create! ( description: " " , metadata: " " , acl: [ ] , public_key: , owner_id: nil , owner_email: " " )
path = ' /ssh_credentials '
replacements = {
}
@@ -870,6 +909,7 @@
data [ :metadata ] = metadata if metadata
data [ :acl ] = acl if acl
data [ :public_key ] = public_key if public_key
+ data [ :owner_id ] = owner_id if owner_id
result = @client . post ( path % replacements , data: data , danger: true )
NgrokAPI :: Models :: SSHCredential . new ( client: self , attrs: result )
end
@@ -946,16 +986,16 @@
-78
-79
-80
-81
-82
-83
-84
+84
+85
+86
+87
+88
+89
+90
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 78
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 84
def delete ( id: " " )
path = ' /ssh_credentials/%{id} '
@@ -1037,16 +1077,16 @@
-94
-95
-96
-97
-98
-99
-100
+100
+101
+102
+103
+104
+105
+106
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 94
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 100
def delete! ( id: " " )
path = ' /ssh_credentials/%{id} '
@@ -1128,18 +1168,18 @@
-109
-110
-111
-112
-113
-114
115
116
-117
+117
+118
+119
+120
+121
+122
+123
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 109
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 115
def get ( id: " " )
path = ' /ssh_credentials/%{id} '
@@ -1223,18 +1263,18 @@
-127
-128
-129
-130
-131
-132
133
134
-135
+135
+136
+137
+138
+139
+140
+141
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 127
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 133
def get! ( id: " " )
path = ' /ssh_credentials/%{id} '
@@ -1344,12 +1384,6 @@
-146
-147
-148
-149
-150
-151
152
153
154
@@ -1358,10 +1392,16 @@
157
158
159
-160
+160
+161
+162
+163
+164
+165
+166
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 146
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 152
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1477,12 +1517,6 @@
-172
-173
-174
-175
-176
-177
178
179
180
@@ -1493,10 +1527,16 @@
185
186
187
-188
+188
+189
+190
+191
+192
+193
+194
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 172
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 178
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1605,7 +1645,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -1637,21 +1677,21 @@
-200
-201
-202
-203
-204
-205
206
207
208
209
210
-211
+211
+212
+213
+214
+215
+216
+217
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 200
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 206
def update ( id: " " , description: nil , metadata: nil , acl: nil )
path = ' /ssh_credentials/%{id} '
@@ -1755,7 +1795,7 @@
—
-
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains and addresses the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
+
optional list of ACL rules. If unspecified, the credential will have no restrictions. The only allowed ACL rule at this time is the bind rule. The bind rule allows the caller to restrict what domains, addresses, and labels the token is allowed to bind. For example, to allow the token to open a tunnel on example.ngrok.io your ACL would include the rule bind:example.ngrok.io. Bind rules for domains may specify a leading wildcard to match multiple domains with a common suffix. For example, you may specify a rule of bind:*.example.com which will allow x.example.com, y.example.com, *.example.com, etc. Bind rules for labels may specify a wildcard key and/or value to match multiple labels. For example, you may specify a rule of bind:*=example which will allow x=example, y=example, etc. A rule of '*' is equivalent to no acl at all and will explicitly permit all actions.
@@ -1787,21 +1827,21 @@
-224
-225
-226
-227
-228
-229
230
231
232
233
234
-235
+235
+236
+237
+238
+239
+240
+241
- # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 224
+ # File 'lib/ngrokapi/services/ssh_credentials_client.rb', line 230
def update! ( id: " " , description: nil , metadata: nil , acl: nil )
path = ' /ssh_credentials/%{id} '
@@ -1825,9 +1865,9 @@
diff --git a/doc/NgrokAPI/Services/SSHHostCertificatesClient.html b/doc/NgrokAPI/Services/SSHHostCertificatesClient.html
index d90f91f..3b05917 100644
--- a/doc/NgrokAPI/Services/SSHHostCertificatesClient.html
+++ b/doc/NgrokAPI/Services/SSHHostCertificatesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::SSHHostCertificatesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 19
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 21
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-17
-18
-19
+19
+20
+21
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 17
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 19
def client
@client
@@ -744,8 +744,6 @@
-36
-37
38
39
40
@@ -758,10 +756,12 @@
47
48
49
-50
+50
+51
+52
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 36
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 38
def create ( ssh_certificate_authority_id: , public_key: , principals: [ ] , valid_after: " " , valid_until: " " , description: " " , metadata: " " )
path = ' /ssh_host_certificates '
@@ -955,8 +955,6 @@
-66
-67
68
69
70
@@ -969,10 +967,12 @@
77
78
79
-80
+80
+81
+82
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 66
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 68
def create! ( ssh_certificate_authority_id: , public_key: , principals: [ ] , valid_after: " " , valid_until: " " , description: " " , metadata: " " )
path = ' /ssh_host_certificates '
@@ -1062,16 +1062,16 @@
-89
-90
91
92
93
94
-95
+95
+96
+97
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 89
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 91
def delete ( id: " " )
path = ' /ssh_host_certificates/%{id} '
@@ -1153,16 +1153,16 @@
-105
-106
107
108
109
110
-111
+111
+112
+113
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 105
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 107
def delete! ( id: " " )
path = ' /ssh_host_certificates/%{id} '
@@ -1244,18 +1244,18 @@
-120
-121
122
123
124
125
126
127
-128
+128
+129
+130
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 120
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 122
def get ( id: " " )
path = ' /ssh_host_certificates/%{id} '
@@ -1339,18 +1339,18 @@
-138
-139
140
141
142
143
144
145
-146
+146
+147
+148
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 138
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 140
def get! ( id: " " )
path = ' /ssh_host_certificates/%{id} '
@@ -1460,8 +1460,6 @@
-157
-158
159
160
161
@@ -1474,10 +1472,12 @@
168
169
170
-171
+171
+172
+173
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 157
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 159
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1593,8 +1593,6 @@
-183
-184
185
186
187
@@ -1609,10 +1607,12 @@
196
197
198
-199
+199
+200
+201
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 183
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 185
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1735,8 +1735,6 @@
-210
-211
212
213
214
@@ -1745,10 +1743,12 @@
217
218
219
-220
+220
+221
+222
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 210
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 212
def update ( id: " " , description: nil , metadata: nil )
path = ' /ssh_host_certificates/%{id} '
@@ -1865,8 +1865,6 @@
-232
-233
234
235
236
@@ -1875,10 +1873,12 @@
239
240
241
-242
+242
+243
+244
- # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 232
+ # File 'lib/ngrokapi/services/ssh_host_certificates_client.rb', line 234
def update! ( id: " " , description: nil , metadata: nil )
path = ' /ssh_host_certificates/%{id} '
@@ -1901,9 +1901,9 @@
diff --git a/doc/NgrokAPI/Services/SSHUserCertificatesClient.html b/doc/NgrokAPI/Services/SSHUserCertificatesClient.html
index eca9423..c6e0d9f 100644
--- a/doc/NgrokAPI/Services/SSHUserCertificatesClient.html
+++ b/doc/NgrokAPI/Services/SSHUserCertificatesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::SSHUserCertificatesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 19
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 21
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-17
-18
-19
+19
+20
+21
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 17
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 19
def client
@client
@@ -658,7 +658,7 @@
—
-
A map of critical options included in the certificate. Only two critical options are currently defined by OpenSSH: force-command and source-address. See the OpenSSH certificate protocol spec github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys`_ for additional details.
+
A map of critical options included in the certificate. Only two critical options are currently defined by OpenSSH: force-command and source-address. See the OpenSSH certificate protocol spec <https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys>_ for additional details.
@@ -676,7 +676,7 @@
—
-
A map of extensions included in the certificate. Extensions are additional metadata that can be interpreted by the SSH server for any purpose. These can be used to permit or deny the ability to open a terminal, do port forwarding, x11 forwarding, and more. If unspecified, the certificate will include limited permissions with the following extension map: {"permit-pty": "", "permit-user-rc": ""} OpenSSH understands a number of predefined extensions. See the OpenSSH certificate protocol spec github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys`_ for additional details.
+
A map of extensions included in the certificate. Extensions are additional metadata that can be interpreted by the SSH server for any purpose. These can be used to permit or deny the ability to open a terminal, do port forwarding, x11 forwarding, and more. If unspecified, the certificate will include limited permissions with the following extension map: {"permit-pty": "", "permit-user-rc": ""} OpenSSH understands a number of predefined extensions. See the OpenSSH certificate protocol spec <https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys>_ for additional details.
@@ -780,8 +780,6 @@
-38
-39
40
41
42
@@ -796,10 +794,12 @@
51
52
53
-54
+54
+55
+56
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 38
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 40
def create ( ssh_certificate_authority_id: , public_key: , principals: [ ] , critical_options: { } , extensions: { } , valid_after: " " , valid_until: " " , description: " " , metadata: " " )
path = ' /ssh_user_certificates '
@@ -909,7 +909,7 @@
—
-
A map of critical options included in the certificate. Only two critical options are currently defined by OpenSSH: force-command and source-address. See the OpenSSH certificate protocol spec github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys`_ for additional details.
+
A map of critical options included in the certificate. Only two critical options are currently defined by OpenSSH: force-command and source-address. See the OpenSSH certificate protocol spec <https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys>_ for additional details.
@@ -927,7 +927,7 @@
—
-
A map of extensions included in the certificate. Extensions are additional metadata that can be interpreted by the SSH server for any purpose. These can be used to permit or deny the ability to open a terminal, do port forwarding, x11 forwarding, and more. If unspecified, the certificate will include limited permissions with the following extension map: {"permit-pty": "", "permit-user-rc": ""} OpenSSH understands a number of predefined extensions. See the OpenSSH certificate protocol spec github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys`_ for additional details.
+
A map of extensions included in the certificate. Extensions are additional metadata that can be interpreted by the SSH server for any purpose. These can be used to permit or deny the ability to open a terminal, do port forwarding, x11 forwarding, and more. If unspecified, the certificate will include limited permissions with the following extension map: {"permit-pty": "", "permit-user-rc": ""} OpenSSH understands a number of predefined extensions. See the OpenSSH certificate protocol spec <https://github.com/openssh/openssh-portable/blob/master/PROTOCOL.certkeys>_ for additional details.
@@ -1031,8 +1031,6 @@
-72
-73
74
75
76
@@ -1047,10 +1045,12 @@
85
86
87
-88
+88
+89
+90
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 72
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 74
def create! ( ssh_certificate_authority_id: , public_key: , principals: [ ] , critical_options: { } , extensions: { } , valid_after: " " , valid_until: " " , description: " " , metadata: " " )
path = ' /ssh_user_certificates '
@@ -1142,16 +1142,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 97
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 99
def delete ( id: " " )
path = ' /ssh_user_certificates/%{id} '
@@ -1233,16 +1233,16 @@
-113
-114
115
116
117
118
-119
+119
+120
+121
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 113
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 115
def delete! ( id: " " )
path = ' /ssh_user_certificates/%{id} '
@@ -1324,18 +1324,18 @@
-128
-129
130
131
132
133
134
135
-136
+136
+137
+138
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 128
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 130
def get ( id: " " )
path = ' /ssh_user_certificates/%{id} '
@@ -1419,18 +1419,18 @@
-146
-147
148
149
150
151
152
153
-154
+154
+155
+156
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 146
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 148
def get! ( id: " " )
path = ' /ssh_user_certificates/%{id} '
@@ -1540,8 +1540,6 @@
-165
-166
167
168
169
@@ -1554,10 +1552,12 @@
176
177
178
-179
+179
+180
+181
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 165
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 167
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1673,8 +1673,6 @@
-191
-192
193
194
195
@@ -1689,10 +1687,12 @@
204
205
206
-207
+207
+208
+209
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 191
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 193
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1815,8 +1815,6 @@
-218
-219
220
221
222
@@ -1825,10 +1823,12 @@
225
226
227
-228
+228
+229
+230
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 218
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 220
def update ( id: " " , description: nil , metadata: nil )
path = ' /ssh_user_certificates/%{id} '
@@ -1945,8 +1945,6 @@
-240
-241
242
243
244
@@ -1955,10 +1953,12 @@
247
248
249
-250
+250
+251
+252
- # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 240
+ # File 'lib/ngrokapi/services/ssh_user_certificates_client.rb', line 242
def update! ( id: " " , description: nil , metadata: nil )
path = ' /ssh_user_certificates/%{id} '
@@ -1981,9 +1981,9 @@
diff --git a/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html b/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html
index 8908fe7..6fb3ca9 100644
--- a/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html
+++ b/doc/NgrokAPI/Services/TCPEdgeBackendModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TCPEdgeBackendModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tcp/%{id}/backend '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tcp/%{id}/backend '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tcp/%{id}/backend '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tcp/%{id}/backend '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tcp/%{id}/backend '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tcp_edge_backend_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tcp/%{id}/backend '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html
index fc44788..f2491d8 100644
--- a/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html
+++ b/doc/NgrokAPI/Services/TCPEdgeIPRestrictionModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TCPEdgeIPRestrictionModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tcp_edge_ip_restriction_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tcp/%{id}/ip_restriction '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TLSCertificatesClient.html b/doc/NgrokAPI/Services/TLSCertificatesClient.html
index e553d96..5b797a2 100644
--- a/doc/NgrokAPI/Services/TLSCertificatesClient.html
+++ b/doc/NgrokAPI/Services/TLSCertificatesClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TLSCertificatesClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-21
-22
-23
+23
+24
+25
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 21
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 23
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 19
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 21
def client
@client
@@ -642,7 +642,7 @@
—
-
chain of PEM-encoded certificates, leaf first. See Certificate Bundles ngrok.com/docs/api#tls-certificates-pem`_ .
+
chain of PEM-encoded certificates, leaf first. See Certificate Bundles <https://ngrok.com/docs/cloud-edge/endpoints#certificate-chains>_ .
@@ -658,7 +658,7 @@
—
-
private key for the TLS certificate, PEM-encoded. See Private Keys ngrok.com/docs/ngrok-link#tls-certificates-key`_ .
+
private key for the TLS certificate, PEM-encoded. See Private Keys <https://ngrok.com/docs/cloud-edge/endpoints#private-keys>_ .
@@ -690,8 +690,6 @@
-35
-36
37
38
39
@@ -701,10 +699,12 @@
43
44
45
-46
+46
+47
+48
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 35
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 37
def create ( description: " " , metadata: " " , certificate_pem: , private_key_pem: )
path = ' /tls_certificates '
@@ -793,7 +793,7 @@
—
-
chain of PEM-encoded certificates, leaf first. See Certificate Bundles ngrok.com/docs/api#tls-certificates-pem`_ .
+
chain of PEM-encoded certificates, leaf first. See Certificate Bundles <https://ngrok.com/docs/cloud-edge/endpoints#certificate-chains>_ .
@@ -809,7 +809,7 @@
—
-
private key for the TLS certificate, PEM-encoded. See Private Keys ngrok.com/docs/ngrok-link#tls-certificates-key`_ .
+
private key for the TLS certificate, PEM-encoded. See Private Keys <https://ngrok.com/docs/cloud-edge/endpoints#private-keys>_ .
@@ -841,8 +841,6 @@
-59
-60
61
62
63
@@ -852,10 +850,12 @@
67
68
69
-70
+70
+71
+72
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 59
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 61
def create! ( description: " " , metadata: " " , certificate_pem: , private_key_pem: )
path = ' /tls_certificates '
@@ -942,16 +942,16 @@
-79
-80
81
82
83
84
-85
+85
+86
+87
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 79
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 81
def delete ( id: " " )
path = ' /tls_certificates/%{id} '
@@ -1033,16 +1033,16 @@
-95
-96
97
98
99
100
-101
+101
+102
+103
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 95
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 97
def delete! ( id: " " )
path = ' /tls_certificates/%{id} '
@@ -1124,18 +1124,18 @@
-110
-111
112
113
114
115
116
117
-118
+118
+119
+120
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 110
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 112
def get ( id: " " )
path = ' /tls_certificates/%{id} '
@@ -1219,18 +1219,18 @@
-128
-129
130
131
132
133
134
135
-136
+136
+137
+138
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 128
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 130
def get! ( id: " " )
path = ' /tls_certificates/%{id} '
@@ -1340,8 +1340,6 @@
-147
-148
149
150
151
@@ -1354,10 +1352,12 @@
158
159
160
-161
+161
+162
+163
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 147
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 149
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1473,8 +1473,6 @@
-173
-174
175
176
177
@@ -1489,10 +1487,12 @@
186
187
188
-189
+189
+190
+191
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 173
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 175
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1615,8 +1615,6 @@
-200
-201
202
203
204
@@ -1625,10 +1623,12 @@
207
208
209
-210
+210
+211
+212
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 200
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 202
def update ( id: " " , description: nil , metadata: nil )
path = ' /tls_certificates/%{id} '
@@ -1745,8 +1745,6 @@
-222
-223
224
225
226
@@ -1755,10 +1753,12 @@
229
230
231
-232
+232
+233
+234
- # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 222
+ # File 'lib/ngrokapi/services/tls_certificates_client.rb', line 224
def update! ( id: " " , description: nil , metadata: nil )
path = ' /tls_certificates/%{id} '
@@ -1781,9 +1781,9 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html
index 863c4bc..210e5d5 100644
--- a/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html
+++ b/doc/NgrokAPI/Services/TLSEdgeBackendModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TLSEdgeBackendModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tls/%{id}/backend '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tls/%{id}/backend '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tls/%{id}/backend '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tls/%{id}/backend '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/backend '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tls_edge_backend_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/backend '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html
index f4eb19b..00a6ff5 100644
--- a/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html
+++ b/doc/NgrokAPI/Services/TLSEdgeIPRestrictionModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TLSEdgeIPRestrictionModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tls_edge_ip_restriction_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/ip_restriction '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html
index 027d08f..b5dc2e7 100644
--- a/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html
+++ b/doc/NgrokAPI/Services/TLSEdgeMutualTLSModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TLSEdgeMutualTLSModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tls_edge_mutual_tls_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/mutual_tls '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html b/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html
index b207663..b4d295d 100644
--- a/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html
+++ b/doc/NgrokAPI/Services/TLSEdgeTLSTerminationModuleClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TLSEdgeTLSTerminationModuleClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -388,12 +388,12 @@
-13
-14
-15
+15
+16
+17
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 13
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 15
def initialize ( client: )
@client = client
@@ -436,12 +436,12 @@
-11
-12
-13
+13
+14
+15
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 11
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 13
def client
@client
@@ -524,16 +524,16 @@
-84
-85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 84
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 86
def delete ( id: " " )
path = ' /edges/tls/%{id}/tls_termination '
@@ -613,16 +613,16 @@
-97
-98
99
100
101
102
-103
+103
+104
+105
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 97
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 99
def delete! ( id: " " )
path = ' /edges/tls/%{id}/tls_termination '
@@ -702,18 +702,18 @@
-54
-55
56
57
58
59
60
61
-62
+62
+63
+64
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 54
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 56
def get ( id: " " )
path = ' /edges/tls/%{id}/tls_termination '
@@ -795,18 +795,18 @@
-69
-70
71
72
73
74
75
76
-77
+77
+78
+79
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 69
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 71
def get! ( id: " " )
path = ' /edges/tls/%{id}/tls_termination '
@@ -896,18 +896,18 @@
-23
-24
25
26
27
28
29
30
-31
+31
+32
+33
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 23
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 25
def replace ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/tls_termination '
@@ -997,18 +997,18 @@
-39
-40
41
42
43
44
45
46
-47
+47
+48
+49
- # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 39
+ # File 'lib/ngrokapi/services/tls_edge_tls_termination_module_client.rb', line 41
def replace! ( id: " " , a_module: nil )
path = ' /edges/tls/%{id}/tls_termination '
@@ -1029,9 +1029,9 @@
diff --git a/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html b/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html
index 5b612a0..786a877 100644
--- a/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html
+++ b/doc/NgrokAPI/Services/TunnelGroupBackendsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TunnelGroupBackendsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 18
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 20
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 16
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 18
def client
@client
@@ -676,8 +676,6 @@
-31
-32
33
34
35
@@ -686,10 +684,12 @@
38
39
40
-41
+41
+42
+43
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 31
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 33
def create ( description: " " , metadata: " " , labels: { } )
path = ' /backends/tunnel_group '
@@ -811,8 +811,6 @@
-53
-54
55
56
57
@@ -821,10 +819,12 @@
60
61
62
-63
+63
+64
+65
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 53
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 55
def create! ( description: " " , metadata: " " , labels: { } )
path = ' /backends/tunnel_group '
@@ -910,16 +910,16 @@
-72
-73
74
75
76
77
-78
+78
+79
+80
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 72
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 74
def delete ( id: " " )
path = ' /backends/tunnel_group/%{id} '
@@ -1001,16 +1001,16 @@
-88
-89
90
91
92
93
-94
+94
+95
+96
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 88
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 90
def delete! ( id: " " )
path = ' /backends/tunnel_group/%{id} '
@@ -1092,18 +1092,18 @@
-103
-104
105
106
107
108
109
110
-111
+111
+112
+113
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 103
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 105
def get ( id: " " )
path = ' /backends/tunnel_group/%{id} '
@@ -1187,18 +1187,18 @@
-121
-122
123
124
125
126
127
128
-129
+129
+130
+131
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 121
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 123
def get! ( id: " " )
path = ' /backends/tunnel_group/%{id} '
@@ -1308,8 +1308,6 @@
-140
-141
142
143
144
@@ -1322,10 +1320,12 @@
151
152
153
-154
+154
+155
+156
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 140
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 142
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1441,8 +1441,6 @@
-166
-167
168
169
170
@@ -1457,10 +1455,12 @@
179
180
181
-182
+182
+183
+184
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 166
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 168
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1601,8 +1601,6 @@
-194
-195
196
197
198
@@ -1612,10 +1610,12 @@
202
203
204
-205
+205
+206
+207
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 194
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 196
def update ( id: " " , description: nil , metadata: nil , labels: { } )
path = ' /backends/tunnel_group/%{id} '
@@ -1751,8 +1751,6 @@
-218
-219
220
221
222
@@ -1762,10 +1760,12 @@
226
227
228
-229
+229
+230
+231
- # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 218
+ # File 'lib/ngrokapi/services/tunnel_group_backends_client.rb', line 220
def update! ( id: " " , description: nil , metadata: nil , labels: { } )
path = ' /backends/tunnel_group/%{id} '
@@ -1789,9 +1789,9 @@
diff --git a/doc/NgrokAPI/Services/TunnelSessionsClient.html b/doc/NgrokAPI/Services/TunnelSessionsClient.html
index 9f1383a..654935b 100644
--- a/doc/NgrokAPI/Services/TunnelSessionsClient.html
+++ b/doc/NgrokAPI/Services/TunnelSessionsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TunnelSessionsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-19
-20
-21
+21
+22
+23
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 19
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 21
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-17
-18
-19
+19
+20
+21
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 17
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 19
def client
@client
@@ -640,18 +640,18 @@
-83
-84
85
86
87
88
89
90
-91
+91
+92
+93
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 83
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 85
def get ( id: " " )
path = ' /tunnel_sessions/%{id} '
@@ -735,18 +735,18 @@
-101
-102
103
104
105
106
107
108
-109
+109
+110
+111
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 101
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 103
def get! ( id: " " )
path = ' /tunnel_sessions/%{id} '
@@ -856,8 +856,6 @@
-32
-33
34
35
36
@@ -870,10 +868,12 @@
43
44
45
-46
+46
+47
+48
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 32
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 34
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -989,8 +989,6 @@
-58
-59
60
61
62
@@ -1005,10 +1003,12 @@
71
72
73
-74
+74
+75
+76
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 58
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 60
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1100,16 +1100,16 @@
-121
-122
123
124
125
126
-127
+127
+128
+129
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 121
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 123
def restart ( id: " " )
path = ' /tunnel_sessions/%{id}/restart '
@@ -1191,16 +1191,16 @@
-140
-141
142
143
144
145
-146
+146
+147
+148
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 140
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 142
def restart! ( id: " " )
path = ' /tunnel_sessions/%{id}/restart '
@@ -1282,16 +1282,16 @@
-156
-157
158
159
160
161
-162
+162
+163
+164
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 156
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 158
def stop ( id: " " )
path = ' /tunnel_sessions/%{id}/stop '
@@ -1373,16 +1373,16 @@
-173
-174
175
176
177
178
-179
+179
+180
+181
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 173
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 175
def stop! ( id: " " )
path = ' /tunnel_sessions/%{id}/stop '
@@ -1459,16 +1459,16 @@
-199
-200
201
202
203
204
-205
+205
+206
+207
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 199
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 201
def update ( id: " " , version: " " )
path = ' /tunnel_sessions/%{id}/update '
@@ -1545,16 +1545,16 @@
-226
-227
228
229
230
231
-232
+232
+233
+234
- # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 226
+ # File 'lib/ngrokapi/services/tunnel_sessions_client.rb', line 228
def update! ( id: " " , version: " " )
path = ' /tunnel_sessions/%{id}/update '
@@ -1573,9 +1573,9 @@
diff --git a/doc/NgrokAPI/Services/TunnelsClient.html b/doc/NgrokAPI/Services/TunnelsClient.html
index bae7954..39fb2cc 100644
--- a/doc/NgrokAPI/Services/TunnelsClient.html
+++ b/doc/NgrokAPI/Services/TunnelsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::TunnelsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -358,12 +358,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 18
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 20
def initialize ( client: )
@client = client
@@ -406,12 +406,12 @@
-16
-17
-18
+18
+19
+20
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 16
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 18
def client
@client
@@ -496,18 +496,18 @@
-82
-83
84
85
86
87
88
89
-90
+90
+91
+92
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 82
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 84
def get ( id: " " )
path = ' /tunnels/%{id} '
@@ -591,18 +591,18 @@
-100
-101
102
103
104
105
106
107
-108
+108
+109
+110
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 100
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 102
def get! ( id: " " )
path = ' /tunnels/%{id} '
@@ -712,8 +712,6 @@
-31
-32
33
34
35
@@ -726,10 +724,12 @@
42
43
44
-45
+45
+46
+47
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 31
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 33
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -845,8 +845,6 @@
-57
-58
59
60
61
@@ -861,10 +859,12 @@
70
71
72
-73
+73
+74
+75
- # File 'lib/ngrokapi/services/tunnels_client.rb', line 57
+ # File 'lib/ngrokapi/services/tunnels_client.rb', line 59
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -893,9 +893,9 @@
diff --git a/doc/NgrokAPI/Services/WeightedBackendsClient.html b/doc/NgrokAPI/Services/WeightedBackendsClient.html
index 8669eb1..a9d5410 100644
--- a/doc/NgrokAPI/Services/WeightedBackendsClient.html
+++ b/doc/NgrokAPI/Services/WeightedBackendsClient.html
@@ -6,7 +6,7 @@
Class: NgrokAPI::Services::WeightedBackendsClient
- — Documentation by YARD 0.9.27
+ — Documentation by YARD 0.9.34
@@ -502,12 +502,12 @@
-20
-21
-22
+22
+23
+24
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 20
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 22
def initialize ( client: )
@client = client
@@ -550,12 +550,12 @@
-18
-19
-20
+20
+21
+22
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 18
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 20
def client
@client
@@ -676,8 +676,6 @@
-33
-34
35
36
37
@@ -686,10 +684,12 @@
40
41
42
-43
+43
+44
+45
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 33
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 35
def create ( description: " " , metadata: " " , backends: { } )
path = ' /backends/weighted '
@@ -811,8 +811,6 @@
-55
-56
57
58
59
@@ -821,10 +819,12 @@
62
63
64
-65
+65
+66
+67
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 55
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 57
def create! ( description: " " , metadata: " " , backends: { } )
path = ' /backends/weighted '
@@ -910,16 +910,16 @@
-74
-75
76
77
78
79
-80
+80
+81
+82
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 74
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 76
def delete ( id: " " )
path = ' /backends/weighted/%{id} '
@@ -1001,16 +1001,16 @@
-90
-91
92
93
94
95
-96
+96
+97
+98
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 90
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 92
def delete! ( id: " " )
path = ' /backends/weighted/%{id} '
@@ -1092,18 +1092,18 @@
-105
-106
107
108
109
110
111
112
-113
+113
+114
+115
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 105
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 107
def get ( id: " " )
path = ' /backends/weighted/%{id} '
@@ -1187,18 +1187,18 @@
-123
-124
125
126
127
128
129
130
-131
+131
+132
+133
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 123
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 125
def get! ( id: " " )
path = ' /backends/weighted/%{id} '
@@ -1308,8 +1308,6 @@
-142
-143
144
145
146
@@ -1322,10 +1320,12 @@
153
154
155
-156
+156
+157
+158
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 142
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 144
def list ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1441,8 +1441,6 @@
-168
-169
170
171
172
@@ -1457,10 +1455,12 @@
181
182
183
-184
+184
+185
+186
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 168
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 170
def list! ( before_id: nil , limit: nil , url: nil )
result = @client . list (
@@ -1601,8 +1601,6 @@
-196
-197
198
199
200
@@ -1612,10 +1610,12 @@
204
205
206
-207
+207
+208
+209
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 196
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 198
def update ( id: " " , description: nil , metadata: nil , backends: { } )
path = ' /backends/weighted/%{id} '
@@ -1751,8 +1751,6 @@
-220
-221
222
223
224
@@ -1762,10 +1760,12 @@
228
229
230
-231
+231
+232
+233
- # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 220
+ # File 'lib/ngrokapi/services/weighted_backends_client.rb', line 222
def update! ( id: " " , description: nil , metadata: nil , backends: { } )
path = ' /backends/weighted/%{id} '
@@ -1789,9 +1789,9 @@
diff --git a/doc/_index.html b/doc/_index.html
index 1432251..294b44d 100644
--- a/doc/_index.html
+++ b/doc/_index.html
@@ -4,7 +4,7 @@
- Documentation by YARD 0.9.27
+ Documentation by YARD 0.9.34
@@ -52,7 +52,7 @@
- Documentation by YARD 0.9.27
+
Documentation by YARD 0.9.34
Alphabetic Index
@@ -143,6 +143,27 @@
+
+ AgentIngressCertJob
+
+ (NgrokAPI::Models)
+
+
+
+
+ AgentIngressCertPolicy
+
+ (NgrokAPI::Models)
+
+
+
+
+ AgentIngressCertStatus
+
+ (NgrokAPI::Models)
+
+
+
AgentIngressesClient
@@ -150,6 +171,49 @@
+
+ ApplicationSession
+
+ (NgrokAPI::Models)
+
+
+
+
+ ApplicationSessionsClient
+
+ (NgrokAPI::Services)
+
+
+
+
+ ApplicationUser
+
+ (NgrokAPI::Models)
+
+
+
+
+ ApplicationUsersClient
+
+ (NgrokAPI::Services)
+
+
+
+
+
+
+
+
@@ -376,6 +440,13 @@
+
+ EndpointOAuthAmazon
+
+ (NgrokAPI::Models)
+
+
+
EndpointOAuthFacebook
@@ -390,6 +461,13 @@
+
+ EndpointOAuthGitLab
+
+ (NgrokAPI::Models)
+
+
+
EndpointOAuthGoogle
@@ -397,6 +475,13 @@
+
+ EndpointOAuthLinkedIn
+
+ (NgrokAPI::Models)
+
+
+
EndpointOAuthMicrosoft
@@ -411,6 +496,13 @@
+
+ EndpointOAuthTwitch
+
+ (NgrokAPI::Models)
+
+
+
EndpointOIDC
@@ -565,6 +657,13 @@
+
+ EventTargetDatadog
+
+ (NgrokAPI::Models)
+
+
+
EventTargetFirehose
@@ -708,10 +807,20 @@
+
+ IdentityProvider
+
+ (NgrokAPI::Models)
+
+
+
+
+
+
L
@@ -723,13 +832,17 @@
+
+ Location
+
+ (NgrokAPI::Models)
+
+
+
-
-
-
M
+
+ U
+
+
+
+ UserAgent
+
+ (NgrokAPI::Models)
+
+
+
+
+
+
+
+
+
+