Sha256: ffc3ebd1ad48b4664861a0a12f2d47959f84a2137b64868c343b785dd521a004
Contents?: true
Size: 631 Bytes
Versions: 13
Compression:
Stored size: 631 Bytes
Contents
# frozen_string_literal: true module Awspec::Generator module Doc module Type class NatGateway < Base def initialize super @type_name = 'NatGateway' @type = Awspec::Type::NatGateway.new('nat-7ff7777f') @ret = @type.resource_via_client @matchers = [ Awspec::Type::NatGateway::STATES.map { |state| "be_#{state.tr('-', '_')}" }.join(', '), 'belong_to_vpc' ] @ignore_matchers = Awspec::Type::NatGateway::STATES.map { |state| "be_#{state.tr('-', '_')}" } @describes = [] end end end end end
Version data entries
13 entries across 13 versions & 1 rubygems