<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-designateclient.git/designateclient/v2/cli, branch train-eol</title>
<subtitle>opendev.org: openstack/python-designateclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/'/>
<entry>
<title>Merge "Check item is one of six.string_types not just str"</title>
<updated>2018-08-11T05:46:59+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.openstack.org</email>
</author>
<published>2018-08-11T05:46:59+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=a870cffdf9eb292501796acabe8958b529d64708'/>
<id>a870cffdf9eb292501796acabe8958b529d64708</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix copy-pasta in quota command descriptions</title>
<updated>2018-06-29T21:12:32+00:00</updated>
<author>
<name>Ben Nemec</name>
<email>bnemec@redhat.com</email>
</author>
<published>2018-06-29T21:11:20+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=9d34339c063617e0f8d55013c4e27da4067beb0e'/>
<id>9d34339c063617e0f8d55013c4e27da4067beb0e</id>
<content type='text'>
These seem to have been copied from the blacklist command and don't
make sense for quotas.  They also appear in the openstackclient help
output which is confusing.

Change-Id: Ib5d2c0fd7da8cb18e230d84c5f344217ad853da7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
These seem to have been copied from the blacklist command and don't
make sense for quotas.  They also appear in the openstackclient help
output which is confusing.

Change-Id: Ib5d2c0fd7da8cb18e230d84c5f344217ad853da7
</pre>
</div>
</content>
</entry>
<entry>
<title>Check item is one of six.string_types not just str</title>
<updated>2018-04-16T15:01:16+00:00</updated>
<author>
<name>Graham Hayes</name>
<email>gr@ham.ie</email>
</author>
<published>2018-04-10T14:08:56+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=c0543004d06825c5b3d5f6f91b0ba2ad470fbf9c'/>
<id>c0543004d06825c5b3d5f6f91b0ba2ad470fbf9c</id>
<content type='text'>
Change-Id: I343d9f6bdb3509256191a44e686f24e0ebeb5d22
Closes-Bug: #1762612
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: I343d9f6bdb3509256191a44e686f24e0ebeb5d22
Closes-Bug: #1762612
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve the RecordSet Update UI</title>
<updated>2018-02-12T13:41:10+00:00</updated>
<author>
<name>Graham Hayes</name>
<email>gr@ham.ie</email>
</author>
<published>2018-02-12T13:41:10+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=653643b448f10bec6d6c6d899831318f6bdbcf82'/>
<id>653643b448f10bec6d6c6d899831318f6bdbcf82</id>
<content type='text'>
This adds the logic introduced in
I8fefd9d0f104170d50c5d5dc3cbcc53facda9baf to the "recordset set"
command as well.

This helps with the consistancy, and fixes some of the same issues
in the set command.

Change-Id: Ib943ed0eea436ad1a7ad0c3717f0fb6bd6b5b3f0
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This adds the logic introduced in
I8fefd9d0f104170d50c5d5dc3cbcc53facda9baf to the "recordset set"
command as well.

This helps with the consistancy, and fixes some of the same issues
in the set command.

Change-Id: Ib943ed0eea436ad1a7ad0c3717f0fb6bd6b5b3f0
</pre>
</div>
</content>
</entry>
<entry>
<title>Improve recordset create UI</title>
<updated>2017-12-07T14:18:31+00:00</updated>
<author>
<name>Jens Harbott</name>
<email>j.harbott@x-ion.de</email>
</author>
<published>2017-12-06T09:32:29+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=66e4955408eacb4859cfef01a31d013e34c28ffb'/>
<id>66e4955408eacb4859cfef01a31d013e34c28ffb</id>
<content type='text'>
The current implementation has '--records' as a quasi-positional
argument, with the nargs='+' parameter it can only be used at the end of
the command, which is confusing to users and doesn't comply with the
help message.

Add a new option '--record' that takes only exactly one record as
parameter and can be repeated when multiple records are present.
Deprecate the old option so it can be removed in the future.

Change-Id: I8fefd9d0f104170d50c5d5dc3cbcc53facda9baf
Closes-Bug: 1736161
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The current implementation has '--records' as a quasi-positional
argument, with the nargs='+' parameter it can only be used at the end of
the command, which is confusing to users and doesn't comply with the
help message.

Add a new option '--record' that takes only exactly one record as
parameter and can be repeated when multiple records are present.
Deprecate the old option so it can be removed in the future.

Change-Id: I8fefd9d0f104170d50c5d5dc3cbcc53facda9baf
Closes-Bug: 1736161
</pre>
</div>
</content>
</entry>
<entry>
<title>Add tsig key support to python-designateclient</title>
<updated>2017-07-07T12:16:30+00:00</updated>
<author>
<name>Rudolf Vriend</name>
<email>rudolf.vriend@sap.com</email>
</author>
<published>2017-07-07T12:00:17+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=b741282eaff277977507379bbd0de3454eb66232'/>
<id>b741282eaff277977507379bbd0de3454eb66232</id>
<content type='text'>
This fix adds support for the designate tsig keys api to
python-designateclient.

It will add tsigkey related crud commands to the openstackclient.

Change-Id: I84336c3aca85ca62771fd2115481eda32ee980d2
Closes-Bug: #1702506
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
This fix adds support for the designate tsig keys api to
python-designateclient.

It will add tsigkey related crud commands to the openstackclient.

Change-Id: I84336c3aca85ca62771fd2115481eda32ee980d2
Closes-Bug: #1702506
</pre>
</div>
</content>
</entry>
<entry>
<title>Add attribute support to create zone cli</title>
<updated>2017-01-31T23:05:08+00:00</updated>
<author>
<name>Graham Hayes</name>
<email>graham.hayes@hpe.com</email>
</author>
<published>2017-01-31T23:00:38+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=f265eb18e95a707d99fe4d52a856c6e661b9982f'/>
<id>f265eb18e95a707d99fe4d52a856c6e661b9982f</id>
<content type='text'>
also format attributes for cli display

Change-Id: Ia338f607e6d4b70610132ab66e15381981beb038
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
also format attributes for cli display

Change-Id: Ia338f607e6d4b70610132ab66e15381981beb038
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Resolve FloatingIP PTR records clis argument's description"</title>
<updated>2016-08-24T06:17:21+00:00</updated>
<author>
<name>Jenkins</name>
<email>jenkins@review.openstack.org</email>
</author>
<published>2016-08-24T06:17:21+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=32141c1dfcd3c7812a7b8b27ec1371f618d1e756'/>
<id>32141c1dfcd3c7812a7b8b27ec1371f618d1e756</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Resolve FloatingIP PTR records clis argument's description</title>
<updated>2016-08-08T11:42:46+00:00</updated>
<author>
<name>sonu.kumar</name>
<email>sonu.kumar@nectechnologies.in</email>
</author>
<published>2016-08-08T11:34:14+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=406a03555b54a307c8761dc67367a11f6bcc9d24'/>
<id>406a03555b54a307c8761dc67367a11f6bcc9d24</id>
<content type='text'>
Change-Id: Id284e43a53dddd158c1be3768422df42d49efeca
Closes-Bug: #1600775
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Id284e43a53dddd158c1be3768422df42d49efeca
Closes-Bug: #1600775
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix clis related to FloatingIP's ptr records</title>
<updated>2016-08-08T06:22:53+00:00</updated>
<author>
<name>sonu.kumar</name>
<email>sonu.kumar@nectechnologies.in</email>
</author>
<published>2016-08-08T06:16:07+00:00</published>
<link rel='alternate' type='text/html' href='http://91.123.203.49/cgit/delta/openstack/python-designateclient.git/commit/?id=a9ca09e54080eb64216dfe20f2844793675b3fc3'/>
<id>a9ca09e54080eb64216dfe20f2844793675b3fc3</id>
<content type='text'>
Change-Id: Ie39f1e86716a096402aafe814fcde821e66dbc5b
Closes-Bug: #1600781
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ie39f1e86716a096402aafe814fcde821e66dbc5b
Closes-Bug: #1600781
</pre>
</div>
</content>
</entry>
</feed>
