1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80
|
# frozen_string_literal: true
require 'fog/core/collection'
require 'fog/aliyun/models/compute/vpc'
module Fog
module Compute
class Aliyun
class Vpcs < Fog::Collection
model Fog::Compute::Aliyun::VPC
# Creates a new VPC
#
# Aliyun.vpcs.new
#
# ==== Returns
#
# Returns the details of the new VPC
#
# >> Aliyun.vpcs.new
# <Fog::Aliyun::VPC::VPC
# id=nil,
# state=nil,
# cidr_block=nil,
# dhcp_options_id=nil
# tags=nil
# tenancy=nil
# >
#
# Returns an array of all VPCs that have been created
#
# Aliyun.vpcs.all
#
# ==== Returns
#
# Returns an array of all VPCs
#
# >> Aliyun.vpcs.all
# <Fog::Aliyun::VPC::VPCs
# [
# <Fog::Aliyun::VPC::VPC
# id="vpc-12345678",
# TODO
# >
# ]
# >
#
def all(filters_arg = {})
unless filters_arg.is_a?(Hash)
Fog::Logger.warning("all with #{filters_arg.class} param is deprecated, use all('vpcId' => []) instead [light_black](#{caller.first})[/]")
filters_arg = { 'vpcId' => [*filters_arg] }
end
data = Fog::JSON.decode(service.list_vpcs(filters_arg).body)['Vpcs']['Vpc']
load(data)
end
# Used to retrieve a VPC
# vpc_id is required to get the associated VPC information.
#
# You can run the following command to get the details:
# Aliyun.vpcs.get("vpc-12345678")
#
# ==== Returns
#
# >> Aliyun.vpcs.get("vpc-12345678")
# <Fog::Aliyun::Compute::VPC
# id="vpc-12345678",
# TODO
# >
#
def get(vpcId)
$vpc = self.class.new(service: service).all(:vpcId => vpcId)[0] if vpcId
end
end
end
end
end
|