class Aws::Endpoints::URL
@api private
Attributes
Public Class Methods
Source
# File lib/aws-sdk-core/endpoints/url.rb, line 10 def initialize(url) uri = URI(url) @scheme = uri.scheme # only support http and https schemes raise ArgumentError unless %w[https http].include?(@scheme) # do not support query raise ArgumentError if uri.query @authority = _authority(url, uri) @path = uri.path @normalized_path = uri.path + (uri.path[-1] == '/' ? '' : '/') @is_ip = _is_ip(uri.host) end
Public Instance Methods
Source
# File lib/aws-sdk-core/endpoints/url.rb, line 31 def as_json(_options = {}) { 'scheme' => scheme, 'authority' => authority, 'path' => path, 'normalizedPath' => normalized_path, 'isIp' => is_ip } end
Private Instance Methods
Source
# File lib/aws-sdk-core/endpoints/url.rb, line 52 def _is_ip(authority) IPAddr.new(authority) true rescue IPAddr::InvalidAddressError false end