Class: Diplomat::Policy
- Inherits:
-
RestClient
- Object
- RestClient
- Diplomat::Policy
- Defined in:
- lib/diplomat/policy.rb
Overview
Methods for interacting with the Consul ACL Policy API endpoint
Instance Attribute Summary collapse
-
#acl ⇒ Object
readonly
Returns the value of attribute acl.
-
#id ⇒ Object
readonly
Returns the value of attribute id.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#create(value, options = {}) ⇒ Hash
Create a new ACL policy.
-
#delete(id, options = {}) ⇒ Bool
Delete an ACL policy by its UUID.
-
#list(options = {}) ⇒ List
List all the ACL policies.
-
#read(id, options = {}, not_found = :reject, found = :return) ⇒ Hash
Read ACL policy with the given UUID rubocop:disable PerceivedComplexity.
-
#update(value, options = {}) ⇒ Hash
Update an existing ACL policy.
Methods inherited from RestClient
access_method?, #concat_url, #configuration, #initialize, method_missing, respond_to?, respond_to_missing?, #use_named_parameter
Constructor Details
This class inherits a constructor from Diplomat::RestClient
Instance Attribute Details
#acl ⇒ Object (readonly)
Returns the value of attribute acl.
5 6 7 |
# File 'lib/diplomat/policy.rb', line 5 def acl @acl end |
#id ⇒ Object (readonly)
Returns the value of attribute id.
5 6 7 |
# File 'lib/diplomat/policy.rb', line 5 def id @id end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
5 6 7 |
# File 'lib/diplomat/policy.rb', line 5 def type @type end |
Instance Method Details
#create(value, options = {}) ⇒ Hash
Create a new ACL policy
82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 |
# File 'lib/diplomat/policy.rb', line 82 def create(value, = {}) blacklist = ['ID', 'iD', 'Id', :ID, :iD, :Id] & value.keys raise Diplomat::PolicyMalformed, 'ID should not be specified' unless blacklist.empty? id = value[:Name] || value['Name'] raise Diplomat::NameParameterRequired if id.nil? custom_params = use_cas(@options) @raw = send_put_request(@conn, ['/v1/acl/policy'], , value, custom_params) # rubocop:disable GuardClause if @raw.status == 200 return parse_body elsif @raw.status == 500 && @raw.body.chomp.include?('already exists') raise Diplomat::PolicyAlreadyExists, @raw.body else raise Diplomat::UnknownStatus, "status #{@raw.status}: #{@raw.body}" end end |
#delete(id, options = {}) ⇒ Bool
Delete an ACL policy by its UUID
107 108 109 110 |
# File 'lib/diplomat/policy.rb', line 107 def delete(id, = {}) @raw = send_delete_request(@conn, ["/v1/acl/policy/#{id}"], , nil) @raw.body.chomp == 'true' end |
#list(options = {}) ⇒ List
List all the ACL policies
49 50 51 52 53 54 |
# File 'lib/diplomat/policy.rb', line 49 def list( = {}) @raw = send_get_request(@conn_no_err, ['/v1/acl/policies'], ) raise Diplomat::AclNotFound if @raw.status == 403 parse_body end |
#read(id, options = {}, not_found = :reject, found = :return) ⇒ Hash
Read ACL policy with the given UUID rubocop:disable PerceivedComplexity
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
# File 'lib/diplomat/policy.rb', line 12 def read(id, = {}, not_found = :reject, found = :return) @options = custom_params = [] custom_params << use_consistency() @raw = send_get_request(@conn_no_err, ["/v1/acl/policy/#{id}"], , custom_params) if @raw.status == 200 && @raw.body.chomp != 'null' case found when :reject raise Diplomat::PolicyNotFound, id when :return return parse_body end elsif @raw.status == 404 case not_found when :reject raise Diplomat::PolicyNotFound, id when :return return nil end elsif @raw.status == 403 case not_found when :reject raise Diplomat::AclNotFound, id when :return return nil end else raise Diplomat::UnknownStatus, "status #{@raw.status}: #{@raw.body}" end end |
#update(value, options = {}) ⇒ Hash
Update an existing ACL policy
60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 |
# File 'lib/diplomat/policy.rb', line 60 def update(value, = {}) id = value[:ID] || value['ID'] raise Diplomat::IdParameterRequired if id.nil? policy_name = value[:Name] || value['Name'] raise Diplomat::NameParameterRequired if policy_name.nil? custom_params = use_cas(@options) @raw = send_put_request(@conn, ["/v1/acl/policy/#{id}"], , value, custom_params) if @raw.status == 200 parse_body elsif @raw.status == 400 raise Diplomat::PolicyMalformed, @raw.body else raise Diplomat::UnknownStatus, "status #{@raw.status}: #{@raw.body}" end end |