Class: Aws::EC2::SecurityGroup
- Inherits:
-
Object
- Object
- Aws::EC2::SecurityGroup
- Extended by:
- Deprecations
- Defined in:
- lib/aws-sdk-ec2/security_group.rb
Defined Under Namespace
Classes: Collection
Read-Only Attributes collapse
-
#description ⇒ String
A description of the security group.
-
#group_name ⇒ String
The name of the security group.
- #id ⇒ String (also: #group_id)
-
#ip_permissions ⇒ Array<Types::IpPermission>
The inbound rules associated with the security group.
-
#ip_permissions_egress ⇒ Array<Types::IpPermission>
The outbound rules associated with the security group.
-
#owner_id ⇒ String
The Amazon Web Services account ID of the owner of the security group.
-
#tags ⇒ Array<Types::Tag>
Any tags assigned to the security group.
-
#vpc_id ⇒ String
The ID of the VPC for the security group.
Actions collapse
- #authorize_egress(options = {}) ⇒ Types::AuthorizeSecurityGroupEgressResult
- #authorize_ingress(options = {}) ⇒ Types::AuthorizeSecurityGroupIngressResult
- #create_tags(options = {}) ⇒ Tag::Collection
- #delete(options = {}) ⇒ EmptyStructure
- #delete_tags(options = {}) ⇒ Tag::Collection
- #identifiers ⇒ Object deprecated private Deprecated.
- #revoke_egress(options = {}) ⇒ Types::RevokeSecurityGroupEgressResult
- #revoke_ingress(options = {}) ⇒ Types::RevokeSecurityGroupIngressResult
Instance Method Summary collapse
- #client ⇒ Client
-
#data ⇒ Types::SecurityGroup
Returns the data for this SecurityGroup.
-
#data_loaded? ⇒ Boolean
Returns ‘true` if this resource is loaded.
-
#initialize(*args) ⇒ SecurityGroup
constructor
A new instance of SecurityGroup.
-
#load ⇒ self
(also: #reload)
Loads, or reloads #data for the current SecurityGroup.
-
#wait_until(options = {}) {|resource| ... } ⇒ Resource
deprecated
Deprecated.
Use [Aws::EC2::Client] #wait_until instead
Constructor Details
#initialize(id, options = {}) ⇒ SecurityGroup #initialize(options = {}) ⇒ SecurityGroup
Returns a new instance of SecurityGroup.
22 23 24 25 26 27 28 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 22 def initialize(*args) = Hash === args.last ? args.pop.dup : {} @id = extract_id(args, ) @data = .delete(:data) @client = .delete(:client) || Client.new() @waiter_block_warned = false end |
Instance Method Details
#authorize_egress(options = {}) ⇒ Types::AuthorizeSecurityGroupEgressResult
303 304 305 306 307 308 309 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 303 def ( = {}) = .merge(group_id: @id) resp = Aws::Plugins::UserAgent.feature('resource') do @client.() end resp.data end |
#authorize_ingress(options = {}) ⇒ Types::AuthorizeSecurityGroupIngressResult
440 441 442 443 444 445 446 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 440 def ( = {}) = .merge(group_id: @id) resp = Aws::Plugins::UserAgent.feature('resource') do @client.() end resp.data end |
#client ⇒ Client
83 84 85 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 83 def client @client end |
#create_tags(options = {}) ⇒ Tag::Collection
470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 470 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = Aws::Plugins::UserAgent.feature('resource') do @client.() end [:tags].each do |t| batch << Tag.new( resource_id: @id, key: t[:key], value: t[:value], client: @client ) end Tag::Collection.new([batch], size: batch.size) end |
#data ⇒ Types::SecurityGroup
Returns the data for this Aws::EC2::SecurityGroup. Calls Client#describe_security_groups if #data_loaded? is ‘false`.
105 106 107 108 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 105 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
113 114 115 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 113 def data_loaded? !!@data end |
#delete(options = {}) ⇒ EmptyStructure
551 552 553 554 555 556 557 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 551 def delete( = {}) = .merge(group_id: @id) resp = Aws::Plugins::UserAgent.feature('resource') do @client.delete_security_group() end resp.data end |
#delete_tags(options = {}) ⇒ Tag::Collection
517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 517 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = Aws::Plugins::UserAgent.feature('resource') do @client.() end [:tags].each do |t| batch << Tag.new( resource_id: @id, key: t[:key], value: t[:value], client: @client ) end Tag::Collection.new([batch], size: batch.size) end |
#description ⇒ String
A description of the security group.
40 41 42 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 40 def description data[:description] end |
#group_name ⇒ String
The name of the security group.
46 47 48 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 46 def group_name data[:group_name] end |
#id ⇒ String Also known as: group_id
33 34 35 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 33 def id @id end |
#identifiers ⇒ Object
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
745 746 747 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 745 def identifiers { id: @id } end |
#ip_permissions ⇒ Array<Types::IpPermission>
The inbound rules associated with the security group.
52 53 54 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 52 def data[:ip_permissions] end |
#ip_permissions_egress ⇒ Array<Types::IpPermission>
The outbound rules associated with the security group.
64 65 66 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 64 def data[:ip_permissions_egress] end |
#load ⇒ self Also known as: reload
Loads, or reloads #data for the current Aws::EC2::SecurityGroup. Returns ‘self` making it possible to chain methods.
security_group.reload.data
93 94 95 96 97 98 99 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 93 def load resp = Aws::Plugins::UserAgent.feature('resource') do @client.describe_security_groups(group_ids: [@id]) end @data = resp.security_groups[0] self end |
#owner_id ⇒ String
The Amazon Web Services account ID of the owner of the security group.
58 59 60 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 58 def owner_id data[:owner_id] end |
#revoke_egress(options = {}) ⇒ Types::RevokeSecurityGroupEgressResult
634 635 636 637 638 639 640 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 634 def revoke_egress( = {}) = .merge(group_id: @id) resp = Aws::Plugins::UserAgent.feature('resource') do @client.revoke_security_group_egress() end resp.data end |
#revoke_ingress(options = {}) ⇒ Types::RevokeSecurityGroupIngressResult
735 736 737 738 739 740 741 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 735 def revoke_ingress( = {}) = .merge(group_id: @id) resp = Aws::Plugins::UserAgent.feature('resource') do @client.revoke_security_group_ingress() end resp.data end |
#tags ⇒ Array<Types::Tag>
Any tags assigned to the security group.
70 71 72 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 70 def data[:tags] end |
#vpc_id ⇒ String
The ID of the VPC for the security group.
76 77 78 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 76 def vpc_id data[:vpc_id] end |
#wait_until(options = {}) {|resource| ... } ⇒ Resource
Use [Aws::EC2::Client] #wait_until instead
The waiting operation is performed on a copy. The original resource remains unchanged.
Waiter polls an API operation until a resource enters a desired state.
## Basic Usage
Waiter will polls until it is successful, it fails by entering a terminal state, or until a maximum number of attempts are made.
# polls in a loop until condition is true
resource.wait_until() {|resource| condition}
## Example
instance.wait_until(max_attempts:10, delay:5) do |instance|
instance.state.name == 'running'
end
## Configuration
You can configure the maximum number of polling attempts, and the delay (in seconds) between each polling attempt. The waiting condition is set by passing a block to #wait_until:
# poll for ~25 seconds
resource.wait_until(max_attempts:5,delay:5) {|resource|...}
## Callbacks
You can be notified before each polling attempt and before each delay. If you throw ‘:success` or `:failure` from these callbacks, it will terminate the waiter.
started_at = Time.now
# poll for 1 hour, instead of a number of attempts
proc = Proc.new do |attempts, response|
throw :failure if Time.now - started_at > 3600
end
# disable max attempts
instance.wait_until(before_wait:proc, max_attempts:nil) {...}
## Handling Errors
When a waiter is successful, it returns the Resource. When a waiter fails, it raises an error.
begin
resource.wait_until(...)
rescue Aws::Waiters::Errors::WaiterFailed
# resource did not enter the desired state in time
end
attempts attempt in seconds invoked before each attempt invoked before each wait
197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 |
# File 'lib/aws-sdk-ec2/security_group.rb', line 197 def wait_until( = {}, &block) self_copy = self.dup attempts = 0 [:max_attempts] = 10 unless .key?(:max_attempts) [:delay] ||= 10 [:poller] = Proc.new do attempts += 1 if block.call(self_copy) [:success, self_copy] else self_copy.reload unless attempts == [:max_attempts] :retry end end Aws::Plugins::UserAgent.feature('resource') do Aws::Waiters::Waiter.new().wait({}) end end |