Class: Aws::EC2::SecurityGroup
- Inherits:
-
Object
- Object
- Aws::EC2::SecurityGroup
- Defined in:
- gems/aws-sdk-ec2/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>
[VPC only] 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
[VPC only] 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
-
#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 'gems/aws-sdk-ec2/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
299 300 301 302 303 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 299 def ( = {}) = .merge(group_id: @id) resp = @client.() resp.data end |
#authorize_ingress(options = {}) ⇒ Types::AuthorizeSecurityGroupIngressResult
434 435 436 437 438 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 434 def ( = {}) = .merge(group_id: @id) resp = @client.() resp.data end |
#client ⇒ Client
83 84 85 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 83 def client @client end |
#create_tags(options = {}) ⇒ Tag::Collection
462 463 464 465 466 467 468 469 470 471 472 473 474 475 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 462 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = @client.() [: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
.
103 104 105 106 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 103 def data load unless @data @data end |
#data_loaded? ⇒ Boolean
111 112 113 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 111 def data_loaded? !!@data end |
#delete(options = {}) ⇒ EmptyStructure
540 541 542 543 544 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 540 def delete( = {}) = .merge(group_id: @id) resp = @client.delete_security_group() resp.data end |
#delete_tags(options = {}) ⇒ Tag::Collection
507 508 509 510 511 512 513 514 515 516 517 518 519 520 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 507 def ( = {}) batch = [] = Aws::Util.deep_merge(, resources: [@id]) resp = @client.() [: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 'gems/aws-sdk-ec2/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 'gems/aws-sdk-ec2/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 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 33 def id @id end |
#ip_permissions ⇒ Array<Types::IpPermission>
The inbound rules associated with the security group.
52 53 54 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 52 def data[:ip_permissions] end |
#ip_permissions_egress ⇒ Array<Types::IpPermission>
[VPC only] The outbound rules associated with the security group.
64 65 66 |
# File 'gems/aws-sdk-ec2/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 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 93 def load resp = @client.describe_security_groups(group_ids: [@id]) @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 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 58 def owner_id data[:owner_id] end |
#revoke_egress(options = {}) ⇒ Types::RevokeSecurityGroupEgressResult
621 622 623 624 625 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 621 def revoke_egress( = {}) = .merge(group_id: @id) resp = @client.revoke_security_group_egress() resp.data end |
#revoke_ingress(options = {}) ⇒ Types::RevokeSecurityGroupIngressResult
727 728 729 730 731 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 727 def revoke_ingress( = {}) = .merge(group_id: @id) resp = @client.revoke_security_group_ingress() resp.data end |
#tags ⇒ Array<Types::Tag>
Any tags assigned to the security group.
70 71 72 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 70 def data[:tags] end |
#vpc_id ⇒ String
[VPC only] The ID of the VPC for the security group.
76 77 78 |
# File 'gems/aws-sdk-ec2/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
195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 |
# File 'gems/aws-sdk-ec2/lib/aws-sdk-ec2/security_group.rb', line 195 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::Waiters::Waiter.new().wait({}) end |