Class: NgrokAPI::Models::KubernetesOperatorDeployment

Inherits:
Object
  • Object
show all
Defined in:
lib/ngrokapi/models/kubernetes_operator_deployment.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(client: nil, attrs: {}) ⇒ KubernetesOperatorDeployment

Returns a new instance of KubernetesOperatorDeployment.



15
16
17
18
19
20
21
22
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 15

def initialize(client: nil, attrs: {})
  @client = client
  @attrs = attrs
  @name = @attrs['name']
  @namespace = @attrs['namespace']
  @version = @attrs['version']
  @cluster_name = @attrs['cluster_name']
end

Instance Attribute Details

#attrsObject (readonly)

Returns the value of attribute attrs.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def attrs
  @attrs
end

#clientObject (readonly)

Returns the value of attribute client.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def client
  @client
end

#cluster_nameObject (readonly)

Returns the value of attribute cluster_name.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def cluster_name
  @cluster_name
end

#nameObject (readonly)

Returns the value of attribute name.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def name
  @name
end

#namespaceObject (readonly)

Returns the value of attribute namespace.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def namespace
  @namespace
end

#versionObject (readonly)

Returns the value of attribute version.



8
9
10
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 8

def version
  @version
end

Instance Method Details

#==(other) ⇒ Object



24
25
26
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 24

def ==(other)
  @attrs == other.attrs
end

#to_hObject



32
33
34
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 32

def to_h
  @attrs.to_h
end

#to_sObject



28
29
30
# File 'lib/ngrokapi/models/kubernetes_operator_deployment.rb', line 28

def to_s
  @attrs.to_s
end