Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/create_327.rs
Original file line number Diff line number Diff line change
Expand Up @@ -175,6 +175,8 @@ impl AttachmentCommand {

let data = ep.query_async(client).await?;
op.output_single::<AttachmentResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/create_354.rs
Original file line number Diff line number Diff line change
Expand Up @@ -198,6 +198,8 @@ impl AttachmentCommand {

let data = ep.query_async(client).await?;
op.output_single::<AttachmentResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,8 @@ impl AttachmentCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,8 @@ impl AttachmentsCommand {
.query_async(client)
.await?;
op.output_list::<AttachmentResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/os_complete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl AttachmentCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/set_327.rs
Original file line number Diff line number Diff line change
Expand Up @@ -131,6 +131,8 @@ impl AttachmentCommand {

let data = ep.query_async(client).await?;
op.output_single::<AttachmentResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/attachment/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl AttachmentCommand {

let data = ep.query_async(client).await?;
op.output_single::<AttachmentResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/availability_zone/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ impl AvailabilityZonesCommand {

let data: Vec<serde_json::Value> = ep.query_async(client).await?;
op.output_list::<AvailabilityZoneResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/create_30.rs
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,8 @@ impl BackupCommand {

let data = ep.query_async(client).await?;
op.output_single::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/create_343.rs
Original file line number Diff line number Diff line change
Expand Up @@ -181,6 +181,8 @@ impl BackupCommand {

let data = ep.query_async(client).await?;
op.output_single::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/create_351.rs
Original file line number Diff line number Diff line change
Expand Up @@ -197,6 +197,8 @@ impl BackupCommand {

let data = ep.query_async(client).await?;
op.output_single::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -80,6 +80,8 @@ impl BackupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ impl ExportRecordCommand {

let data = ep.query_async(client).await?;
op.output_single::<ExportRecordResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,8 @@ impl ImportRecordCommand {

let data = ep.query_async(client).await?;
op.output_single::<ImportRecordResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,6 +155,8 @@ impl BackupsCommand {
.query_async(client)
.await?;
op.output_list::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/os_force_delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl BackupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/os_reset_status.rs
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,8 @@ impl BackupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/restore/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -119,6 +119,8 @@ impl RestoreCommand {

let data = ep.query_async(client).await?;
op.output_single::<RestoreResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/set_343.rs
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,8 @@ impl BackupCommand {

let data = ep.query_async(client).await?;
op.output_single::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/set_39.rs
Original file line number Diff line number Diff line change
Expand Up @@ -138,6 +138,8 @@ impl BackupCommand {

let data = ep.query_async(client).await?;
op.output_single::<BackupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/backup/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,8 @@ impl BackupCommand {
let find_data: serde_json::Value = find(find_ep).query_async(client).await?;

op.output_single::<BackupResponse>(find_data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/capability/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl CapabilityCommand {

let data = ep.query_async(client).await?;
op.output_single::<CapabilityResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cgsnapshot/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ impl CgsnapshotCommand {

let data = ep.query_async(client).await?;
op.output_single::<CgsnapshotResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cgsnapshot/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl CgsnapshotCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cgsnapshot/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ impl CgsnapshotsCommand {

let data = ep.query_async(client).await?;
op.output_single::<CgsnapshotResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cgsnapshot/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl CgsnapshotCommand {

let data = ep.query_async(client).await?;
op.output_single::<CgsnapshotResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cluster/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -142,6 +142,8 @@ impl ClustersCommand {

let data: Vec<serde_json::Value> = ep.query_async(client).await?;
op.output_list::<ClusterResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cluster/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,8 @@ impl ClusterCommand {

let data = ep.query_async(client).await?;
op.output_single::<ClusterResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/cluster/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl ClusterCommand {

let data = ep.query_async(client).await?;
op.output_single::<ClusterResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/consistencygroup/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,8 @@ impl ConsistencygroupCommand {

let data = ep.query_async(client).await?;
op.output_single::<ConsistencygroupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -90,6 +90,8 @@ impl CreateFromSrcCommand {

let data = ep.query_async(client).await?;
op.output_single::<CreateFromSrcResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/consistencygroup/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl ConsistencygroupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ impl DeleteCommand {

let data = ep.query_async(client).await?;
op.output_single::<DeleteResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/consistencygroup/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ impl ConsistencygroupsCommand {

let data = ep.query_async(client).await?;
op.output_single::<ConsistencygroupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/consistencygroup/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,6 +111,8 @@ impl ConsistencygroupCommand {

let data = ep.query_async(client).await?;
op.output_single::<ConsistencygroupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/consistencygroup/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ impl ConsistencygroupCommand {

let data = ep.query_async(client).await?;
op.output_single::<ConsistencygroupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/default_type/delete.rs
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,8 @@ impl DefaultTypeCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/default_type/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,8 @@ impl DefaultTypesCommand {

let data: Vec<serde_json::Value> = ep.query_async(client).await?;
op.output_list::<DefaultTypeResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/default_type/set_362.rs
Original file line number Diff line number Diff line change
Expand Up @@ -108,6 +108,8 @@ impl DefaultTypeCommand {

let data = ep.query_async(client).await?;
op.output_single::<DefaultTypeResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/default_type/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,8 @@ impl DefaultTypeCommand {

let data = ep.query_async(client).await?;
op.output_single::<DefaultTypeResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/extension/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,8 @@ impl ExtensionsCommand {

let data: Vec<serde_json::Value> = ep.query_async(client).await?;
op.output_list::<ExtensionResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/group/create_313.rs
Original file line number Diff line number Diff line change
Expand Up @@ -150,6 +150,8 @@ impl GroupCommand {

let data = ep.query_async(client).await?;
op.output_single::<GroupResponse>(data)?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,8 @@ impl GroupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
2 changes: 2 additions & 0 deletions openstack_cli/src/block_storage/v3/group/delete_313.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,6 +93,8 @@ impl GroupCommand {
.build()
.map_err(|x| OpenStackCliError::EndpointBuild(x.to_string()))?;
openstack_sdk::api::ignore(ep).query_async(client).await?;
// Show command specific hints
op.show_command_hint()?;
Ok(())
}
}
Loading
Loading