Class: SDM::RequestableResource
- Inherits:
-
Object
- Object
- SDM::RequestableResource
- Defined in:
- lib/models/porcelain.rb
Overview
RequestableResource is a resource that can be requested via an AccessRequestConfig
Instance Attribute Summary collapse
-
#access ⇒ Object
The current state of the user's access to the resources.
-
#authentication ⇒ Object
The type of authentication for the resource.
-
#healthy ⇒ Object
The health check status of the reasource.
-
#id ⇒ Object
The resource id.
-
#name ⇒ Object
The resource name.
-
#tags ⇒ Object
Any tags attached to this resource.
-
#type ⇒ Object
The resource type.
Instance Method Summary collapse
-
#initialize(access: nil, authentication: nil, healthy: nil, id: nil, name: nil, tags: nil, type: nil) ⇒ RequestableResource
constructor
A new instance of RequestableResource.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(access: nil, authentication: nil, healthy: nil, id: nil, name: nil, tags: nil, type: nil) ⇒ RequestableResource
Returns a new instance of RequestableResource.
8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 |
# File 'lib/models/porcelain.rb', line 8754 def initialize( access: nil, authentication: nil, healthy: nil, id: nil, name: nil, tags: nil, type: nil ) @access = access == nil ? "" : access @authentication = authentication == nil ? "" : authentication @healthy = healthy == nil ? false : healthy @id = id == nil ? "" : id @name = name == nil ? "" : name @tags = == nil ? SDM::() : @type = type == nil ? "" : type end |
Instance Attribute Details
#access ⇒ Object
The current state of the user's access to the resources
8740 8741 8742 |
# File 'lib/models/porcelain.rb', line 8740 def access @access end |
#authentication ⇒ Object
The type of authentication for the resource
8742 8743 8744 |
# File 'lib/models/porcelain.rb', line 8742 def authentication @authentication end |
#healthy ⇒ Object
The health check status of the reasource
8744 8745 8746 |
# File 'lib/models/porcelain.rb', line 8744 def healthy @healthy end |
#id ⇒ Object
The resource id.
8746 8747 8748 |
# File 'lib/models/porcelain.rb', line 8746 def id @id end |
#name ⇒ Object
The resource name.
8748 8749 8750 |
# File 'lib/models/porcelain.rb', line 8748 def name @name end |
#tags ⇒ Object
Any tags attached to this resource
8750 8751 8752 |
# File 'lib/models/porcelain.rb', line 8750 def @tags end |
#type ⇒ Object
The resource type
8752 8753 8754 |
# File 'lib/models/porcelain.rb', line 8752 def type @type end |
Instance Method Details
#to_json(options = {}) ⇒ Object
8772 8773 8774 8775 8776 8777 8778 |
# File 'lib/models/porcelain.rb', line 8772 def to_json( = {}) hash = {} self.instance_variables.each do |var| hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var end hash.to_json end |