Class: Fog::AWS::RDS::SecurityGroup
- Inherits:
-
Model
- Object
- Model
- Fog::AWS::RDS::SecurityGroup
- Defined in:
- lib/fog/aws/models/rds/security_group.rb
Instance Method Summary collapse
- #authorize_cidrip(cidrip) ⇒ Object
-
#authorize_ec2_security_group(group_name, group_owner_id = owner_id) ⇒ Object
group_owner_id defaults to the current owner_id.
- #authorize_ingress(opts) ⇒ Object
-
#authorize_ip_address(ip) ⇒ Object
Add the ip address to the RDS security group.
-
#authorize_me ⇒ Object
Add the current machine to the RDS security group.
- #destroy ⇒ Object
- #ready? ⇒ Boolean
- #revoke_cidrip(cidrip) ⇒ Object
-
#revoke_ec2_security_group(group_name, group_owner_id = owner_id) ⇒ Object
group_owner_id defaults to the current owner_id.
- #revoke_ingress(opts) ⇒ Object
- #save ⇒ Object
Instance Method Details
#authorize_cidrip(cidrip) ⇒ Object
38 39 40 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 38 def (cidrip) ({'CIDRIP' => cidrip}) end |
#authorize_ec2_security_group(group_name, group_owner_id = owner_id) ⇒ Object
group_owner_id defaults to the current owner_id
31 32 33 34 35 36 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 31 def (group_name, group_owner_id=owner_id) ({ 'EC2SecurityGroupName' => group_name, 'EC2SecurityGroupOwnerId' => group_owner_id }) end |
#authorize_ingress(opts) ⇒ Object
52 53 54 55 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 52 def (opts) data = service.(id, opts).body['AuthorizeDBSecurityGroupIngressResult']['DBSecurityGroup'] merge_attributes(data) end |
#authorize_ip_address(ip) ⇒ Object
Add the ip address to the RDS security group.
48 49 50 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 48 def (ip) ("#{ip}/32") end |
#authorize_me ⇒ Object
Add the current machine to the RDS security group.
43 44 45 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 43 def (Fog::CurrentMachine.ip_address) end |
#destroy ⇒ Object
15 16 17 18 19 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 15 def destroy requires :id service.delete_db_security_group(id) true end |
#ready? ⇒ Boolean
11 12 13 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 11 def ready? (ec2_security_groups + ip_ranges).all?{|ingress| ingress['Status'] == 'authorized'} end |
#revoke_cidrip(cidrip) ⇒ Object
65 66 67 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 65 def revoke_cidrip(cidrip) revoke_ingress({'CIDRIP' => cidrip}) end |
#revoke_ec2_security_group(group_name, group_owner_id = owner_id) ⇒ Object
group_owner_id defaults to the current owner_id
58 59 60 61 62 63 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 58 def revoke_ec2_security_group(group_name, group_owner_id=owner_id) revoke_ingress({ 'EC2SecurityGroupName' => group_name, 'EC2SecurityGroupOwnerId' => group_owner_id }) end |
#revoke_ingress(opts) ⇒ Object
69 70 71 72 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 69 def revoke_ingress(opts) data = service.revoke_db_security_group_ingress(id, opts).body['RevokeDBSecurityGroupIngressResult']['DBSecurityGroup'] merge_attributes(data) end |
#save ⇒ Object
21 22 23 24 25 26 27 28 |
# File 'lib/fog/aws/models/rds/security_group.rb', line 21 def save requires :id requires :description data = service.create_db_security_group(id, description).body['CreateDBSecurityGroupResult']['DBSecurityGroup'] merge_attributes(data) true end |