Class: NgrokAPI::Models::KubernetesOperatorBindingCreate
- Inherits:
-
Object
- Object
- NgrokAPI::Models::KubernetesOperatorBindingCreate
- Defined in:
- lib/ngrokapi/models/kubernetes_operator_binding_create.rb
Instance Attribute Summary collapse
-
#allowed_urls ⇒ Object
readonly
Returns the value of attribute allowed_urls.
-
#attrs ⇒ Object
readonly
Returns the value of attribute attrs.
-
#client ⇒ Object
readonly
Returns the value of attribute client.
-
#csr ⇒ Object
readonly
Returns the value of attribute csr.
-
#ingress_endpoint ⇒ Object
readonly
Returns the value of attribute ingress_endpoint.
-
#name ⇒ Object
readonly
Returns the value of attribute name.
Instance Method Summary collapse
- #==(other) ⇒ Object
-
#initialize(client: nil, attrs: {}) ⇒ KubernetesOperatorBindingCreate
constructor
A new instance of KubernetesOperatorBindingCreate.
- #to_h ⇒ Object
- #to_s ⇒ Object
Constructor Details
#initialize(client: nil, attrs: {}) ⇒ KubernetesOperatorBindingCreate
Returns a new instance of KubernetesOperatorBindingCreate.
15 16 17 18 19 20 21 22 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 15 def initialize(client: nil, attrs: {}) @client = client @attrs = attrs @name = @attrs['name'] @allowed_urls = @attrs['allowed_urls'] @csr = @attrs['csr'] @ingress_endpoint = @attrs['ingress_endpoint'] end |
Instance Attribute Details
#allowed_urls ⇒ Object (readonly)
Returns the value of attribute allowed_urls.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def allowed_urls @allowed_urls end |
#attrs ⇒ Object (readonly)
Returns the value of attribute attrs.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def attrs @attrs end |
#client ⇒ Object (readonly)
Returns the value of attribute client.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def client @client end |
#csr ⇒ Object (readonly)
Returns the value of attribute csr.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def csr @csr end |
#ingress_endpoint ⇒ Object (readonly)
Returns the value of attribute ingress_endpoint.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def ingress_endpoint @ingress_endpoint end |
#name ⇒ Object (readonly)
Returns the value of attribute name.
8 9 10 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 8 def name @name end |
Instance Method Details
#==(other) ⇒ Object
24 25 26 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 24 def ==(other) @attrs == other.attrs end |
#to_h ⇒ Object
32 33 34 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 32 def to_h @attrs.to_h end |
#to_s ⇒ Object
28 29 30 |
# File 'lib/ngrokapi/models/kubernetes_operator_binding_create.rb', line 28 def to_s @attrs.to_s end |