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
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/flavor/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/hypervisor/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/keypair/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/migration/get.rs
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/server/create_backup_20.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct CreateBackup {
/// The rotation of the back up image, the oldest image will be removed
/// when image count exceed the rotation count.
#[arg(help_heading = "Body parameters", long)]
rotation: i32,
rotation: u32,
}

impl ServerCommand {
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/server/create_backup_21.rs
Original file line number Diff line number Diff line change
Expand Up @@ -84,7 +84,7 @@ struct CreateBackup {
/// The rotation of the back up image, the oldest image will be removed
/// when image count exceed the rotation count.
#[arg(help_heading = "Body parameters", long)]
rotation: i32,
rotation: u32,
}

impl ServerCommand {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/server/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -158,7 +158,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

#[arg(help_heading = "Query parameters", long)]
locked: Option<String>,
Expand Down
4 changes: 2 additions & 2 deletions openstack_cli/src/compute/v2/server/volume_attachment/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,10 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

#[arg(help_heading = "Query parameters", long)]
offset: Option<i32>,
offset: Option<u32>,
}

/// Path parameters
Expand Down
4 changes: 2 additions & 2 deletions openstack_cli/src/compute/v2/server_group/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,10 +72,10 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

#[arg(help_heading = "Query parameters", long)]
offset: Option<i32>,
offset: Option<u32>,
}

/// Path parameters
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/simple_tenant_usage/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/compute/v2/simple_tenant_usage/show.rs
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/identity/v3/domain/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// ID of the last fetched entry
#[arg(help_heading = "Query parameters", long)]
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/identity/v3/group/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// ID of the last fetched entry
#[arg(help_heading = "Query parameters", long)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ struct IdentityProvider {
/// through mapping and persisted in the database. If left unset, the
/// default value configured in keystone will be used, if enabled.
#[arg(help_heading = "Body parameters", long)]
authorization_ttl: Option<Option<i32>>,
authorization_ttl: Option<Option<u32>>,

/// The identity provider description
#[arg(help_heading = "Body parameters", long)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ struct IdentityProvider {
/// through mapping and persisted in the database. If left unset, the
/// default value configured in keystone will be used, if enabled.
#[arg(help_heading = "Body parameters", long)]
authorization_ttl: Option<Option<i32>>,
authorization_ttl: Option<Option<u32>>,

/// The identity provider description
#[arg(help_heading = "Body parameters", long)]
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/identity/v3/os_trust/trust/create.rs
Original file line number Diff line number Diff line change
Expand Up @@ -127,7 +127,7 @@ struct Trust {
/// resulting value is 0, this means that the new trust will not be
/// redelegatable, regardless of the value of allow_redelegation.
#[arg(help_heading = "Body parameters", long)]
redelegation_count: Option<Option<i32>>,
redelegation_count: Option<Option<u32>>,

/// Specifies how many times the trust can be used to obtain a token. This
/// value is decreased each time a token is issued through the trust. Once
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/identity/v3/project/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// ID of the last fetched entry
#[arg(help_heading = "Query parameters", long)]
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/identity/v3/user/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// ID of the last fetched entry
#[arg(help_heading = "Query parameters", long)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ pub struct PropertyCommand {
maximum: Option<f32>,

#[arg(help_heading = "Body parameters", long)]
max_items: Option<i32>,
max_items: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
max_length: Option<i32>,
max_length: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
minimum: Option<f32>,

#[arg(help_heading = "Body parameters", long)]
min_items: Option<i32>,
min_items: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
min_length: Option<i32>,
min_length: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
name: String,
Expand Down
8 changes: 4 additions & 4 deletions openstack_cli/src/image/v2/metadef/namespace/property/set.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,19 +65,19 @@ pub struct PropertyCommand {
maximum: Option<f32>,

#[arg(help_heading = "Body parameters", long)]
max_items: Option<i32>,
max_items: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
max_length: Option<i32>,
max_length: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
minimum: Option<f32>,

#[arg(help_heading = "Body parameters", long)]
min_items: Option<i32>,
min_items: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
min_length: Option<i32>,
min_length: Option<u32>,

#[arg(help_heading = "Body parameters", long)]
name: String,
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/address_group/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/address_scope/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/agent/dhcp_network/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/agent/l3_router/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/agent/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -111,7 +111,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/availability_zone/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/flavor/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/flavor/next_provider/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/floatingip/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/floatingip/tag/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/floatingip_pool/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/local_ip/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// local_ip_address query parameter for /v2.0/local-ips API
#[arg(help_heading = "Query parameters", long)]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -94,7 +94,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// local_ip_address query parameter for
/// /v2.0/local_ips/{local_ip_id}/port_associations API
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/log/log/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
2 changes: 1 addition & 1 deletion openstack_cli/src/network/v2/log/loggable_resource/list.rs
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ struct QueryParameters {
long("page-size"),
visible_alias("limit")
)]
limit: Option<i32>,
limit: Option<u32>,

/// The ID of the last-seen item. Use the limit parameter to make an
/// initial limited request and use the ID of the last-seen item from the
Expand Down
Loading