<feed xmlns='http://www.w3.org/2005/Atom'>
<title>delta/openstack/python-troveclient.git/troveclient/osc, branch train-em</title>
<subtitle>opendev.org: openstack/python-troveclient.git
</subtitle>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/'/>
<entry>
<title>Support region in CLI</title>
<updated>2020-09-15T21:15:48+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2020-09-15T21:14:25+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=564edb7f63ffdc8ae9e0e9fb33afbf4bf60902ce'/>
<id>564edb7f63ffdc8ae9e0e9fb33afbf4bf60902ce</id>
<content type='text'>
Change-Id: Ia0580a599fc2385d54def4e18e0780209b82eff7
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Change-Id: Ia0580a599fc2385d54def4e18e0780209b82eff7
</pre>
</div>
</content>
</entry>
<entry>
<title>Support to create public instance</title>
<updated>2019-09-11T09:40:06+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2019-09-11T08:47:13+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=4d543606913a11d2f00c0a28edbb3b9dd29b6c72'/>
<id>4d543606913a11d2f00c0a28edbb3b9dd29b6c72</id>
<content type='text'>
Add two params for creating instance:
'--is-public' and '--allowed-cidr'

Change-Id: I3bc69e3d56d250b562543f0de2c78c05fcaefead
Story: 2006500
Task: 36469
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Add two params for creating instance:
'--is-public' and '--allowed-cidr'

Change-Id: I3bc69e3d56d250b562543f0de2c78c05fcaefead
Story: 2006500
Task: 36469
</pre>
</div>
</content>
</entry>
<entry>
<title>Support backup filtering</title>
<updated>2019-08-25T11:33:26+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2019-08-25T01:10:29+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=982b3f035a3eed4c788c26b7ba5b913782e04961'/>
<id>982b3f035a3eed4c788c26b7ba5b913782e04961</id>
<content type='text'>
To get all the backups of an instance:

    openstack database backup list --instance-id &lt;instance-id&gt;

Admin user gets backups of all the projects:

    openstack database backup list --all-projects

Story: #2006433
Task: #36346
Change-Id: I871d1ffa27805158024e8ecbe1dceae725c4deac
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
To get all the backups of an instance:

    openstack database backup list --instance-id &lt;instance-id&gt;

Admin user gets backups of all the projects:

    openstack database backup list --all-projects

Story: #2006433
Task: #36346
Change-Id: I871d1ffa27805158024e8ecbe1dceae725c4deac
</pre>
</div>
</content>
</entry>
<entry>
<title>Support to batch delete database instances</title>
<updated>2019-06-06T01:38:35+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2019-06-06T01:11:35+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=16d1dedb54dc70a6f0ae7e5068fd5582f0539a5a'/>
<id>16d1dedb54dc70a6f0ae7e5068fd5582f0539a5a</id>
<content type='text'>
Allow users to delete database instances in batch, usage:

usage: openstack database instance delete [-h] instance [instance ...]

Change-Id: I88a15ba1910f7b3294067b54ae4a7a9b4c4a17a5
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Allow users to delete database instances in batch, usage:

usage: openstack database instance delete [-h] instance [instance ...]

Change-Id: I88a15ba1910f7b3294067b54ae4a7a9b4c4a17a5
</pre>
</div>
</content>
</entry>
<entry>
<title>Get all the database instances by admin</title>
<updated>2019-05-20T12:12:14+00:00</updated>
<author>
<name>Lingxian Kong</name>
<email>anlin.kong@gmail.com</email>
</author>
<published>2019-05-19T22:32:34+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=7a791177e86b8ce84267fb860ada36d6daf0417b'/>
<id>7a791177e86b8ce84267fb860ada36d6daf0417b</id>
<content type='text'>
Currently, there is no way for the admin user to get databases of all
the projects, which is very important for auditing or billing purpose.

With this change, admin user can get all the database instances by
running:

$ openstack database instances list --all-projects

Change-Id: I318907b1d4a63017f4a6f7967312770f8784c1f4
Story: #2005735
Task: #33393
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently, there is no way for the admin user to get databases of all
the projects, which is very important for auditing or billing purpose.

With this change, admin user can get all the database instances by
running:

$ openstack database instances list --all-projects

Change-Id: I318907b1d4a63017f4a6f7967312770f8784c1f4
Story: #2005735
Task: #33393
</pre>
</div>
</content>
</entry>
<entry>
<title>Fix wrong keyword arguments</title>
<updated>2018-10-02T07:49:06+00:00</updated>
<author>
<name>Yotaro Konishi</name>
<email>konishi.yotaro@jp.fujitsu.com</email>
</author>
<published>2018-09-27T06:41:38+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=84b1b0ae6255bf35e02d4659336f40bf30250b07'/>
<id>84b1b0ae6255bf35e02d4659336f40bf30250b07</id>
<content type='text'>
Currently 'openstack database flavor list' command fails when using
'--datastore-type' and '--datastore-version-id' options. This change
fixes the issue by correcting keyword arguments.

This change also adds a test case of listing flavors with the optional
arguments.

Change-Id: I37be4911d4dda1529e2550344a912e0aa3c50558
Closes-Bug: #1794663
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
Currently 'openstack database flavor list' command fails when using
'--datastore-type' and '--datastore-version-id' options. This change
fixes the issue by correcting keyword arguments.

This change also adds a test case of listing flavors with the optional
arguments.

Change-Id: I37be4911d4dda1529e2550344a912e0aa3c50558
Closes-Bug: #1794663
</pre>
</div>
</content>
</entry>
<entry>
<title>Sync two parameters of cluster-create to OSC</title>
<updated>2018-08-21T11:06:11+00:00</updated>
<author>
<name>zhanggang</name>
<email>zhanggang@cmss.chinamobile.com</email>
</author>
<published>2018-08-15T08:10:01+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=0ce6255bfdc01874f1de4ee664a3adc3127d1b3a'/>
<id>0ce6255bfdc01874f1de4ee664a3adc3127d1b3a</id>
<content type='text'>
The previous patches have add configuration and extended_properties
to "trove cluster-create"[1][2], this commit add the two paramenters
to OSC, user can pass configuration and extended_properties during
"openstack database cluster create".

[1] https://review.openstack.org/#/c/583125/
[2] https://review.openstack.org/#/c/589047/

Change-Id: Ic8e3ba4e92d3b65fa65875675f58eead5827976a
Signed-off-by: zhanggang &lt;zhanggang@cmss.chinamobile.com&gt;
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
The previous patches have add configuration and extended_properties
to "trove cluster-create"[1][2], this commit add the two paramenters
to OSC, user can pass configuration and extended_properties during
"openstack database cluster create".

[1] https://review.openstack.org/#/c/583125/
[2] https://review.openstack.org/#/c/589047/

Change-Id: Ic8e3ba4e92d3b65fa65875675f58eead5827976a
Signed-off-by: zhanggang &lt;zhanggang@cmss.chinamobile.com&gt;
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add promote-to-replica-source to OSC"</title>
<updated>2018-07-18T06:21:52+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.openstack.org</email>
</author>
<published>2018-07-18T06:21:52+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=3adf5fe392102c088b72c4dac6f10eaf1f0e7983'/>
<id>3adf5fe392102c088b72c4dac6f10eaf1f0e7983</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add execution-delete to OSC"</title>
<updated>2018-07-18T05:52:02+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.openstack.org</email>
</author>
<published>2018-07-18T05:52:02+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=048dd502fa8273e138cf76b752e39a912b16d534'/>
<id>048dd502fa8273e138cf76b752e39a912b16d534</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
<entry>
<title>Merge "Add configuration-default to OSC"</title>
<updated>2018-07-17T14:32:37+00:00</updated>
<author>
<name>Zuul</name>
<email>zuul@review.openstack.org</email>
</author>
<published>2018-07-17T14:32:37+00:00</published>
<link rel='alternate' type='text/html' href='http://git.baserock.org/cgit/delta/openstack/python-troveclient.git/commit/?id=cb1d3672ab4ba38b869b39da2b0a670813e8f726'/>
<id>cb1d3672ab4ba38b869b39da2b0a670813e8f726</id>
<content type='text'>
</content>
<content type='xhtml'>
<div xmlns='http://www.w3.org/1999/xhtml'>
<pre>
</pre>
</div>
</content>
</entry>
</feed>
