Sha256: da26bc65d8464e9b1d274aeba727494b89855f79327036480f4fbda7763fe340
Contents?: true
Size: 1.88 KB
Versions: 2
Compression:
Stored size: 1.88 KB
Contents
require_relative 'ionoscloud_base' class Chef class Knife class IonoscloudNatgatewayLanRemove < Knife include Knife::IonoscloudBase banner 'knife ionoscloud natgateway lan remove LAN_ID [LAN_ID] (options)' option :datacenter_id, short: '-D DATACENTER_ID', long: '--datacenter-id DATACENTER_ID', description: 'Name of the data center' option :natgateway_id, short: '-G NATGATEWAY_ID', long: '--natgateway-id NATGATEWAY_ID', description: 'ID of the NAT Gateway' def initialize(args = []) super(args) @description = 'Removes the specified LANS from a Nat Gateway under a data center.' @directory = 'compute-engine' @required_options = [:datacenter_id, :natgateway_id, :ionoscloud_username, :ionoscloud_password] end def run $stdout.sync = true handle_extra_config validate_required_params(@required_options, config) return unless @name_args.length > 0 natgateways_api = Ionoscloud::NATGatewaysApi.new(api_client) natgateway = natgateways_api.datacenters_natgateways_find_by_nat_gateway_id(config[:datacenter_id], config[:natgateway_id]) natgateway.properties.lans = natgateway.properties.lans.reject { |lan| @name_args.map { |el| Integer(el) }.include? lan.id } natgateway, _, headers = natgateways_api.datacenters_natgateways_patch_with_http_info(config[:datacenter_id], config[:natgateway_id], natgateway.properties) print "#{ui.color("Removing LANS #{@name_args} from the NAT Gateway...", :magenta)}" dot = ui.color('.', :magenta) api_client.wait_for { print dot; is_done? get_request_id headers } print_natgateway(natgateways_api.datacenters_natgateways_find_by_nat_gateway_id(config[:datacenter_id], natgateway.id)) end end end end
Version data entries
2 entries across 2 versions & 1 rubygems
Version | Path |
---|---|
knife-ionoscloud-6.1.1 | lib/chef/knife/ionoscloud_natgateway_lan_remove.rb |
knife-ionoscloud-6.1.0 | lib/chef/knife/ionoscloud_natgateway_lan_remove.rb |