class Fog::AWS::Compute::InternetGateways

Public Class Methods

new(attributes) click to toggle source
Creates a new internet gateway

AWS.internet_gateways.new

==== Returns

Returns the details of the new InternetGateway

>> AWS.internet_gateways.new

> <Fog::AWS::Compute::InternetGateway

id=nil, attachment_set=nil, tag_set=nil >

Calls superclass method
# File lib/fog/aws/models/compute/internet_gateways.rb, line 27
def initialize(attributes)
  self.filters ||= {}
  super
end

Public Instance Methods

all(filters_arg = filters) click to toggle source
Returns an array of all InternetGateways that have been created

AWS.internet_gateways.all

==== Returns

Returns an array of all InternetGateways

>> AWS.internet_gateways.all <Fog::AWS::Compute::InternetGateways filters={} [ <Fog::AWS::Compute::InternetGateway id=“igw-some-id”, attachment_set={“vpcId”=>“vpc-some-id”, “state”=>“available”}, tag_set={} > ] >

# File lib/fog/aws/models/compute/internet_gateways.rb, line 53
def all(filters_arg = filters)
  unless filters_arg.is_a?(Hash)
    Fog::Logger.warning("all with #{filters_arg.class} param is deprecated, use all('internet-gateway-id' => []) instead [light_black](#{caller.first})[/]")
    filters_arg = {'internet-gateway-id' => [*filters_arg]}
  end
  filters = filters_arg
  data = service.describe_internet_gateways(filters).body
  load(data['internetGatewaySet'])
end
get(internet_gateway_id) click to toggle source
Used to retrieve an InternetGateway

You can run the following command to get the details:
AWS.internet_gateways.get("igw-12345678")

==== Returns

>> AWS.internet_gateways.get(“igw-12345678”)

> <Fog::AWS::Compute::InternetGateway

id=“igw-12345678”, attachment_set={“vpcId”=>“vpc-12345678”, “state”=>“available”}, tag_set={} >

# File lib/fog/aws/models/compute/internet_gateways.rb, line 78
def get(internet_gateway_id)
  if internet_gateway_id
    self.class.new(:service => service).all('internet-gateway-id' => internet_gateway_id).first
  end
end