Class: SDM::RequestableResource

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

Overview

RequestableResource is a resource that can be requested via an AccessRequestConfig

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(access: nil, authentication: nil, healthy: nil, id: nil, name: nil, tags: nil, type: nil) ⇒ RequestableResource

Returns a new instance of RequestableResource.



10231
10232
10233
10234
10235
10236
10237
10238
10239
10240
10241
10242
10243
10244
10245
10246
10247
# File 'lib/models/porcelain.rb', line 10231

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 = tags == nil ? SDM::_porcelain_zero_value_tags() : tags
  @type = type == nil ? "" : type
end

Instance Attribute Details

#accessObject

The current state of the user's access to the resources



10217
10218
10219
# File 'lib/models/porcelain.rb', line 10217

def access
  @access
end

#authenticationObject

The type of authentication for the resource



10219
10220
10221
# File 'lib/models/porcelain.rb', line 10219

def authentication
  @authentication
end

#healthyObject

The health check status of the reasource



10221
10222
10223
# File 'lib/models/porcelain.rb', line 10221

def healthy
  @healthy
end

#idObject

The resource id.



10223
10224
10225
# File 'lib/models/porcelain.rb', line 10223

def id
  @id
end

#nameObject

The resource name.



10225
10226
10227
# File 'lib/models/porcelain.rb', line 10225

def name
  @name
end

#tagsObject

Any tags attached to this resource



10227
10228
10229
# File 'lib/models/porcelain.rb', line 10227

def tags
  @tags
end

#typeObject

The resource type



10229
10230
10231
# File 'lib/models/porcelain.rb', line 10229

def type
  @type
end

Instance Method Details

#to_json(options = {}) ⇒ Object



10249
10250
10251
10252
10253
10254
10255
# File 'lib/models/porcelain.rb', line 10249

def to_json(options = {})
  hash = {}
  self.instance_variables.each do |var|
    hash[var.id2name.delete_prefix("@")] = self.instance_variable_get var
  end
  hash.to_json
end