Class: Fastly::AclApi
- Inherits:
-
Object
- Object
- Fastly::AclApi
- Defined in:
- lib/fastly/api/acl_api.rb
Instance Attribute Summary collapse
-
#api_client ⇒ Object
Returns the value of attribute api_client.
Instance Method Summary collapse
-
#create_acl(opts = {}) ⇒ AclResponse
Create a new ACL Create a new ACL attached to the specified service version.
-
#create_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Create a new ACL Create a new ACL attached to the specified service version.
-
#delete_acl(opts = {}) ⇒ InlineResponse200
Delete an ACL Delete an ACL from the specified service version.
-
#delete_acl_with_http_info(opts = {}) ⇒ Array<(InlineResponse200, Integer, Hash)>
Delete an ACL Delete an ACL from the specified service version.
-
#get_acl(opts = {}) ⇒ AclResponse
Describe an ACL Retrieve a single ACL by name for the version and service.
-
#get_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Describe an ACL Retrieve a single ACL by name for the version and service.
-
#initialize(api_client = ApiClient.default) ⇒ AclApi
constructor
A new instance of AclApi.
-
#list_acls(opts = {}) ⇒ Array<AclResponse>
List ACLs List ACLs.
-
#list_acls_with_http_info(opts = {}) ⇒ Array<(Array<AclResponse>, Integer, Hash)>
List ACLs List ACLs.
-
#update_acl(opts = {}) ⇒ AclResponse
Update an ACL Update an ACL for a particular service and version.
-
#update_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Update an ACL Update an ACL for a particular service and version.
Constructor Details
Instance Attribute Details
#api_client ⇒ Object
Returns the value of attribute api_client.
15 16 17 |
# File 'lib/fastly/api/acl_api.rb', line 15 def api_client @api_client end |
Instance Method Details
#create_acl(opts = {}) ⇒ AclResponse
Create a new ACL Create a new ACL attached to the specified service version. A new, empty ACL must be attached to a draft version of a service. The version associated with the ACL must be activated to be used.
26 27 28 29 |
# File 'lib/fastly/api/acl_api.rb', line 26 def create_acl(opts = {}) data, _status_code, _headers = create_acl_with_http_info(opts) data end |
#create_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Create a new ACL Create a new ACL attached to the specified service version. A new, empty ACL must be attached to a draft version of a service. The version associated with the ACL must be activated to be used.
37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 |
# File 'lib/fastly/api/acl_api.rb', line 37 def create_acl_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AclApi.create_acl ...' end # unbox the parameters from the hash service_id = opts[:'service_id'] version_id = opts[:'version_id'] # verify the required parameter 'service_id' is set if @api_client.config.client_side_validation && service_id.nil? fail ArgumentError, "Missing the required parameter 'service_id' when calling AclApi.create_acl" end # verify the required parameter 'version_id' is set if @api_client.config.client_side_validation && version_id.nil? fail ArgumentError, "Missing the required parameter 'version_id' when calling AclApi.create_acl" end # resource path local_var_path = '/service/{service_id}/version/{version_id}/acl'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/x-www-form-urlencoded']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} form_params['name'] = opts[:'name'] if !opts[:'name'].nil? # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'AclResponse' # auth_names auth_names = opts[:debug_auth_names] || ['token'] = opts.merge( :operation => :"AclApi.create_acl", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:POST, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AclApi#create_acl\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#delete_acl(opts = {}) ⇒ InlineResponse200
Delete an ACL Delete an ACL from the specified service version. To remove an ACL from use, the ACL must be deleted from a draft version and the version without the ACL must be activated.
104 105 106 107 |
# File 'lib/fastly/api/acl_api.rb', line 104 def delete_acl(opts = {}) data, _status_code, _headers = delete_acl_with_http_info(opts) data end |
#delete_acl_with_http_info(opts = {}) ⇒ Array<(InlineResponse200, Integer, Hash)>
Delete an ACL Delete an ACL from the specified service version. To remove an ACL from use, the ACL must be deleted from a draft version and the version without the ACL must be activated.
115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 |
# File 'lib/fastly/api/acl_api.rb', line 115 def delete_acl_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AclApi.delete_acl ...' end # unbox the parameters from the hash service_id = opts[:'service_id'] version_id = opts[:'version_id'] acl_name = opts[:'acl_name'] # verify the required parameter 'service_id' is set if @api_client.config.client_side_validation && service_id.nil? fail ArgumentError, "Missing the required parameter 'service_id' when calling AclApi.delete_acl" end # verify the required parameter 'version_id' is set if @api_client.config.client_side_validation && version_id.nil? fail ArgumentError, "Missing the required parameter 'version_id' when calling AclApi.delete_acl" end # verify the required parameter 'acl_name' is set if @api_client.config.client_side_validation && acl_name.nil? fail ArgumentError, "Missing the required parameter 'acl_name' when calling AclApi.delete_acl" end # resource path local_var_path = '/service/{service_id}/version/{version_id}/acl/{acl_name}'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)).sub('{' + 'acl_name' + '}', CGI.escape(acl_name.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'InlineResponse200' # auth_names auth_names = opts[:debug_auth_names] || ['token'] = opts.merge( :operation => :"AclApi.delete_acl", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:DELETE, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AclApi#delete_acl\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#get_acl(opts = {}) ⇒ AclResponse
Describe an ACL Retrieve a single ACL by name for the version and service.
181 182 183 184 |
# File 'lib/fastly/api/acl_api.rb', line 181 def get_acl(opts = {}) data, _status_code, _headers = get_acl_with_http_info(opts) data end |
#get_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Describe an ACL Retrieve a single ACL by name for the version and service.
192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 |
# File 'lib/fastly/api/acl_api.rb', line 192 def get_acl_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AclApi.get_acl ...' end # unbox the parameters from the hash service_id = opts[:'service_id'] version_id = opts[:'version_id'] acl_name = opts[:'acl_name'] # verify the required parameter 'service_id' is set if @api_client.config.client_side_validation && service_id.nil? fail ArgumentError, "Missing the required parameter 'service_id' when calling AclApi.get_acl" end # verify the required parameter 'version_id' is set if @api_client.config.client_side_validation && version_id.nil? fail ArgumentError, "Missing the required parameter 'version_id' when calling AclApi.get_acl" end # verify the required parameter 'acl_name' is set if @api_client.config.client_side_validation && acl_name.nil? fail ArgumentError, "Missing the required parameter 'acl_name' when calling AclApi.get_acl" end # resource path local_var_path = '/service/{service_id}/version/{version_id}/acl/{acl_name}'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)).sub('{' + 'acl_name' + '}', CGI.escape(acl_name.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'AclResponse' # auth_names auth_names = opts[:debug_auth_names] || ['token'] = opts.merge( :operation => :"AclApi.get_acl", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AclApi#get_acl\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#list_acls(opts = {}) ⇒ Array<AclResponse>
List ACLs List ACLs.
257 258 259 260 |
# File 'lib/fastly/api/acl_api.rb', line 257 def list_acls(opts = {}) data, _status_code, _headers = list_acls_with_http_info(opts) data end |
#list_acls_with_http_info(opts = {}) ⇒ Array<(Array<AclResponse>, Integer, Hash)>
List ACLs List ACLs.
267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 |
# File 'lib/fastly/api/acl_api.rb', line 267 def list_acls_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AclApi.list_acls ...' end # unbox the parameters from the hash service_id = opts[:'service_id'] version_id = opts[:'version_id'] # verify the required parameter 'service_id' is set if @api_client.config.client_side_validation && service_id.nil? fail ArgumentError, "Missing the required parameter 'service_id' when calling AclApi.list_acls" end # verify the required parameter 'version_id' is set if @api_client.config.client_side_validation && version_id.nil? fail ArgumentError, "Missing the required parameter 'version_id' when calling AclApi.list_acls" end # resource path local_var_path = '/service/{service_id}/version/{version_id}/acl'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # form parameters form_params = opts[:form_params] || {} # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'Array<AclResponse>' # auth_names auth_names = opts[:debug_auth_names] || ['token'] = opts.merge( :operation => :"AclApi.list_acls", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:GET, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AclApi#list_acls\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |
#update_acl(opts = {}) ⇒ AclResponse
Update an ACL Update an ACL for a particular service and version.
329 330 331 332 |
# File 'lib/fastly/api/acl_api.rb', line 329 def update_acl(opts = {}) data, _status_code, _headers = update_acl_with_http_info(opts) data end |
#update_acl_with_http_info(opts = {}) ⇒ Array<(AclResponse, Integer, Hash)>
Update an ACL Update an ACL for a particular service and version.
341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 |
# File 'lib/fastly/api/acl_api.rb', line 341 def update_acl_with_http_info(opts = {}) if @api_client.config.debugging @api_client.config.logger.debug 'Calling API: AclApi.update_acl ...' end # unbox the parameters from the hash service_id = opts[:'service_id'] version_id = opts[:'version_id'] acl_name = opts[:'acl_name'] # verify the required parameter 'service_id' is set if @api_client.config.client_side_validation && service_id.nil? fail ArgumentError, "Missing the required parameter 'service_id' when calling AclApi.update_acl" end # verify the required parameter 'version_id' is set if @api_client.config.client_side_validation && version_id.nil? fail ArgumentError, "Missing the required parameter 'version_id' when calling AclApi.update_acl" end # verify the required parameter 'acl_name' is set if @api_client.config.client_side_validation && acl_name.nil? fail ArgumentError, "Missing the required parameter 'acl_name' when calling AclApi.update_acl" end # resource path local_var_path = '/service/{service_id}/version/{version_id}/acl/{acl_name}'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'version_id' + '}', CGI.escape(version_id.to_s)).sub('{' + 'acl_name' + '}', CGI.escape(acl_name.to_s)) # query parameters query_params = opts[:query_params] || {} # header parameters header_params = opts[:header_params] || {} # HTTP header 'Accept' (if needed) header_params['Accept'] = @api_client.select_header_accept(['application/json']) # HTTP header 'Content-Type' content_type = @api_client.select_header_content_type(['application/x-www-form-urlencoded']) if !content_type.nil? header_params['Content-Type'] = content_type end # form parameters form_params = opts[:form_params] || {} form_params['name'] = opts[:'name'] if !opts[:'name'].nil? # http body (model) post_body = opts[:debug_body] # return_type return_type = opts[:debug_return_type] || 'AclResponse' # auth_names auth_names = opts[:debug_auth_names] || ['token'] = opts.merge( :operation => :"AclApi.update_acl", :header_params => header_params, :query_params => query_params, :form_params => form_params, :body => post_body, :auth_names => auth_names, :return_type => return_type ) data, status_code, headers = @api_client.call_api(:PUT, local_var_path, ) if @api_client.config.debugging @api_client.config.logger.debug "API called: AclApi#update_acl\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}" end return data, status_code, headers end |