Class: Waterworks::HttpProxy
- Inherits:
-
PipelineObject
- Object
- PipelineObject
- Waterworks::HttpProxy
- Defined in:
- lib/waterworks/resources/http_proxy.rb
Class Method Summary collapse
Instance Method Summary collapse
-
#initialize(id = nil, name = nil) ⇒ HttpProxy
constructor
A new instance of HttpProxy.
Methods inherited from PipelineObject
#<=>, base_attrs, #collect_attrs!, from_hash, from_json, #set_attrs, #sourceify, #to_fhash, #to_hash, #to_json
Constructor Details
#initialize(id = nil, name = nil) ⇒ HttpProxy
Returns a new instance of HttpProxy.
21 22 23 |
# File 'lib/waterworks/resources/http_proxy.rb', line 21 def initialize(id = nil, name = nil) super(id, name).set_attrs(type: 'HttpProxy') end |
Class Method Details
.safe_fields ⇒ Object
5 6 7 8 9 10 11 12 13 14 15 16 17 |
# File 'lib/waterworks/resources/http_proxy.rb', line 5 def self.safe_fields { parent: :ref, password: :string, s3NoProxy: :string, username: :string, windowsDomain: :string, windowsWorkgroup: :string, hostname: :string, port: :string, type: :string, }.merge superclass.safe_fields end |