Method: SDM::HTTPNoAuth#initialize
- Defined in:
- lib/models/porcelain.rb
#initialize(default_path: nil, egress_filter: nil, headers_blacklist: nil, healthcheck_path: nil, healthy: nil, id: nil, name: nil, secret_store_id: nil, subdomain: nil, tags: nil, url: nil) ⇒ HTTPNoAuth
Returns a new instance of HTTPNoAuth.
3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 |
# File 'lib/models/porcelain.rb', line 3645 def initialize( default_path: nil, egress_filter: nil, headers_blacklist: nil, healthcheck_path: nil, healthy: nil, id: nil, name: nil, secret_store_id: nil, subdomain: nil, tags: nil, url: nil ) if default_path != nil @default_path = default_path end if egress_filter != nil @egress_filter = egress_filter end if headers_blacklist != nil @headers_blacklist = headers_blacklist end if healthcheck_path != nil @healthcheck_path = healthcheck_path end if healthy != nil @healthy = healthy end if id != nil @id = id end if name != nil @name = name end if secret_store_id != nil @secret_store_id = secret_store_id end if subdomain != nil @subdomain = subdomain end if != nil = end if url != nil @url = url end end |