From 08d14dc00df2251a8e8c8920951cd1e87ccba934 Mon Sep 17 00:00:00 2001 From: "sonu.kumar" Date: Thu, 8 Oct 2015 11:30:15 +0530 Subject: [PATCH] Removes name argument from openstack recordset set command Closes-Bug: #1499867 Change-Id: Iec4d52aadb588caa7aa5302ae68112908f8e3cec --- designateclient/v2/cli/recordsets.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/designateclient/v2/cli/recordsets.py b/designateclient/v2/cli/recordsets.py index 6d254d4..71479f7 100644 --- a/designateclient/v2/cli/recordsets.py +++ b/designateclient/v2/cli/recordsets.py @@ -112,7 +112,6 @@ class SetRecordSetCommand(show.ShowOne): parser.add_argument('zone_id', help="Zone ID") parser.add_argument('id', help="RecordSet ID") - parser.add_argument('--name', help="RecordSet Name") parser.add_argument('--records', help="Records", nargs='+') description_group = parser.add_mutually_exclusive_group() @@ -128,9 +127,6 @@ class SetRecordSetCommand(show.ShowOne): def take_action(self, parsed_args): data = {} - if parsed_args.name: - data['name'] = parsed_args.name - if parsed_args.no_description: data['description'] = None elif parsed_args.description: