Class: SDM::ActiveDirectoryStore
- Inherits:
-
Object
- Object
- SDM::ActiveDirectoryStore
- Defined in:
- lib/models/porcelain.rb
Instance Attribute Summary collapse
-
#id ⇒ Object
Unique identifier of the SecretStore.
-
#name ⇒ Object
Unique human-readable name of the SecretStore.
-
#server_address ⇒ Object
Hostname of server that is hosting NDES (Network Device Enrollment Services).
-
#tags ⇒ Object
Tags is a map of key, value pairs.
Instance Method Summary collapse
-
#initialize(id: nil, name: nil, server_address: nil, tags: nil) ⇒ ActiveDirectoryStore
constructor
A new instance of ActiveDirectoryStore.
- #to_json(options = {}) ⇒ Object
Constructor Details
#initialize(id: nil, name: nil, server_address: nil, tags: nil) ⇒ ActiveDirectoryStore
Returns a new instance of ActiveDirectoryStore.
1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 |
# File 'lib/models/porcelain.rb', line 1559 def initialize( id: nil, name: nil, server_address: nil, tags: nil ) @id = id == nil ? "" : id @name = name == nil ? "" : name @server_address = server_address == nil ? "" : server_address @tags = == nil ? SDM::() : end |
Instance Attribute Details
#id ⇒ Object
Unique identifier of the SecretStore.
1550 1551 1552 |
# File 'lib/models/porcelain.rb', line 1550 def id @id end |
#name ⇒ Object
Unique human-readable name of the SecretStore.
1552 1553 1554 |
# File 'lib/models/porcelain.rb', line 1552 def name @name end |
#server_address ⇒ Object
Hostname of server that is hosting NDES (Network Device Enrollment Services). Often this is the same host as Active Directory Certificate Services
1555 1556 1557 |
# File 'lib/models/porcelain.rb', line 1555 def server_address @server_address end |
#tags ⇒ Object
Tags is a map of key, value pairs.
1557 1558 1559 |
# File 'lib/models/porcelain.rb', line 1557 def @tags end |
Instance Method Details
#to_json(options = {}) ⇒ Object
1571 1572 1573 1574 1575 1576 1577 |
# File 'lib/models/porcelain.rb', line 1571 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 |