diff --git a/openstack_cli/src/compute/v2/flavor/list.rs b/openstack_cli/src/compute/v2/flavor/list.rs index 6e8b694ac..9bd483fa4 100644 --- a/openstack_cli/src/compute/v2/flavor/list.rs +++ b/openstack_cli/src/compute/v2/flavor/list.rs @@ -69,7 +69,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/hypervisor/list.rs b/openstack_cli/src/compute/v2/hypervisor/list.rs index b084af3fc..7f4676c1a 100644 --- a/openstack_cli/src/compute/v2/hypervisor/list.rs +++ b/openstack_cli/src/compute/v2/hypervisor/list.rs @@ -73,7 +73,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/keypair/list.rs b/openstack_cli/src/compute/v2/keypair/list.rs index 67bdeb1e1..b0eb0e39c 100644 --- a/openstack_cli/src/compute/v2/keypair/list.rs +++ b/openstack_cli/src/compute/v2/keypair/list.rs @@ -70,7 +70,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/migration/get.rs b/openstack_cli/src/compute/v2/migration/get.rs index c693a2b26..ba611f16f 100644 --- a/openstack_cli/src/compute/v2/migration/get.rs +++ b/openstack_cli/src/compute/v2/migration/get.rs @@ -88,7 +88,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/server/create_backup_20.rs b/openstack_cli/src/compute/v2/server/create_backup_20.rs index d1482ec21..43927d844 100644 --- a/openstack_cli/src/compute/v2/server/create_backup_20.rs +++ b/openstack_cli/src/compute/v2/server/create_backup_20.rs @@ -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 { diff --git a/openstack_cli/src/compute/v2/server/create_backup_21.rs b/openstack_cli/src/compute/v2/server/create_backup_21.rs index cf0a0b0bd..693bb2c61 100644 --- a/openstack_cli/src/compute/v2/server/create_backup_21.rs +++ b/openstack_cli/src/compute/v2/server/create_backup_21.rs @@ -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 { diff --git a/openstack_cli/src/compute/v2/server/instance_action/list.rs b/openstack_cli/src/compute/v2/server/instance_action/list.rs index 1c58a27aa..23bdb6168 100644 --- a/openstack_cli/src/compute/v2/server/instance_action/list.rs +++ b/openstack_cli/src/compute/v2/server/instance_action/list.rs @@ -80,7 +80,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/server/list.rs b/openstack_cli/src/compute/v2/server/list.rs index 3bf253ef5..a1f4bc3e8 100644 --- a/openstack_cli/src/compute/v2/server/list.rs +++ b/openstack_cli/src/compute/v2/server/list.rs @@ -158,7 +158,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, #[arg(help_heading = "Query parameters", long)] locked: Option, diff --git a/openstack_cli/src/compute/v2/server/volume_attachment/list.rs b/openstack_cli/src/compute/v2/server/volume_attachment/list.rs index 36e900b8a..b9111b668 100644 --- a/openstack_cli/src/compute/v2/server/volume_attachment/list.rs +++ b/openstack_cli/src/compute/v2/server/volume_attachment/list.rs @@ -66,10 +66,10 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, #[arg(help_heading = "Query parameters", long)] - offset: Option, + offset: Option, } /// Path parameters diff --git a/openstack_cli/src/compute/v2/server_group/list.rs b/openstack_cli/src/compute/v2/server_group/list.rs index ed80da3d6..28edaad76 100644 --- a/openstack_cli/src/compute/v2/server_group/list.rs +++ b/openstack_cli/src/compute/v2/server_group/list.rs @@ -72,10 +72,10 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, #[arg(help_heading = "Query parameters", long)] - offset: Option, + offset: Option, } /// Path parameters diff --git a/openstack_cli/src/compute/v2/simple_tenant_usage/list.rs b/openstack_cli/src/compute/v2/simple_tenant_usage/list.rs index 5f37e2386..a1603ab7d 100644 --- a/openstack_cli/src/compute/v2/simple_tenant_usage/list.rs +++ b/openstack_cli/src/compute/v2/simple_tenant_usage/list.rs @@ -72,7 +72,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/compute/v2/simple_tenant_usage/show.rs b/openstack_cli/src/compute/v2/simple_tenant_usage/show.rs index 133109af3..490f6eeae 100644 --- a/openstack_cli/src/compute/v2/simple_tenant_usage/show.rs +++ b/openstack_cli/src/compute/v2/simple_tenant_usage/show.rs @@ -64,7 +64,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/identity/v3/domain/list.rs b/openstack_cli/src/identity/v3/domain/list.rs index d501e1d17..12ddb64df 100644 --- a/openstack_cli/src/identity/v3/domain/list.rs +++ b/openstack_cli/src/identity/v3/domain/list.rs @@ -71,7 +71,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// ID of the last fetched entry #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/identity/v3/group/list.rs b/openstack_cli/src/identity/v3/group/list.rs index 9cec97737..4b93e23a7 100644 --- a/openstack_cli/src/identity/v3/group/list.rs +++ b/openstack_cli/src/identity/v3/group/list.rs @@ -73,7 +73,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// ID of the last fetched entry #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/identity/v3/os_federation/identity_provider/create.rs b/openstack_cli/src/identity/v3/os_federation/identity_provider/create.rs index 174091c81..0a6e81081 100644 --- a/openstack_cli/src/identity/v3/os_federation/identity_provider/create.rs +++ b/openstack_cli/src/identity/v3/os_federation/identity_provider/create.rs @@ -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>, + authorization_ttl: Option>, /// The identity provider description #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/identity/v3/os_federation/identity_provider/set.rs b/openstack_cli/src/identity/v3/os_federation/identity_provider/set.rs index 8f1a5eaa2..4dd968284 100644 --- a/openstack_cli/src/identity/v3/os_federation/identity_provider/set.rs +++ b/openstack_cli/src/identity/v3/os_federation/identity_provider/set.rs @@ -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>, + authorization_ttl: Option>, /// The identity provider description #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/identity/v3/os_trust/trust/create.rs b/openstack_cli/src/identity/v3/os_trust/trust/create.rs index c8e451ab6..9fa2d75fb 100644 --- a/openstack_cli/src/identity/v3/os_trust/trust/create.rs +++ b/openstack_cli/src/identity/v3/os_trust/trust/create.rs @@ -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>, + redelegation_count: Option>, /// 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 diff --git a/openstack_cli/src/identity/v3/project/list.rs b/openstack_cli/src/identity/v3/project/list.rs index f558ca945..25397d9a9 100644 --- a/openstack_cli/src/identity/v3/project/list.rs +++ b/openstack_cli/src/identity/v3/project/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// ID of the last fetched entry #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/identity/v3/user/list.rs b/openstack_cli/src/identity/v3/user/list.rs index 2c3b102dd..153436e3e 100644 --- a/openstack_cli/src/identity/v3/user/list.rs +++ b/openstack_cli/src/identity/v3/user/list.rs @@ -81,7 +81,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// ID of the last fetched entry #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/image/v2/metadef/namespace/property/create.rs b/openstack_cli/src/image/v2/metadef/namespace/property/create.rs index d14760b11..08bc26f26 100644 --- a/openstack_cli/src/image/v2/metadef/namespace/property/create.rs +++ b/openstack_cli/src/image/v2/metadef/namespace/property/create.rs @@ -65,19 +65,19 @@ pub struct PropertyCommand { maximum: Option, #[arg(help_heading = "Body parameters", long)] - max_items: Option, + max_items: Option, #[arg(help_heading = "Body parameters", long)] - max_length: Option, + max_length: Option, #[arg(help_heading = "Body parameters", long)] minimum: Option, #[arg(help_heading = "Body parameters", long)] - min_items: Option, + min_items: Option, #[arg(help_heading = "Body parameters", long)] - min_length: Option, + min_length: Option, #[arg(help_heading = "Body parameters", long)] name: String, diff --git a/openstack_cli/src/image/v2/metadef/namespace/property/set.rs b/openstack_cli/src/image/v2/metadef/namespace/property/set.rs index 9fc02291f..4670d9d9a 100644 --- a/openstack_cli/src/image/v2/metadef/namespace/property/set.rs +++ b/openstack_cli/src/image/v2/metadef/namespace/property/set.rs @@ -65,19 +65,19 @@ pub struct PropertyCommand { maximum: Option, #[arg(help_heading = "Body parameters", long)] - max_items: Option, + max_items: Option, #[arg(help_heading = "Body parameters", long)] - max_length: Option, + max_length: Option, #[arg(help_heading = "Body parameters", long)] minimum: Option, #[arg(help_heading = "Body parameters", long)] - min_items: Option, + min_items: Option, #[arg(help_heading = "Body parameters", long)] - min_length: Option, + min_length: Option, #[arg(help_heading = "Body parameters", long)] name: String, diff --git a/openstack_cli/src/network/v2/address_group/list.rs b/openstack_cli/src/network/v2/address_group/list.rs index ae74a2708..1bf649ceb 100644 --- a/openstack_cli/src/network/v2/address_group/list.rs +++ b/openstack_cli/src/network/v2/address_group/list.rs @@ -91,7 +91,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/address_scope/list.rs b/openstack_cli/src/network/v2/address_scope/list.rs index f752b4162..540a59094 100644 --- a/openstack_cli/src/network/v2/address_scope/list.rs +++ b/openstack_cli/src/network/v2/address_scope/list.rs @@ -91,7 +91,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/agent/dhcp_network/list.rs b/openstack_cli/src/network/v2/agent/dhcp_network/list.rs index 497adb988..9eaf0832e 100644 --- a/openstack_cli/src/network/v2/agent/dhcp_network/list.rs +++ b/openstack_cli/src/network/v2/agent/dhcp_network/list.rs @@ -78,7 +78,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/agent/l3_router/list.rs b/openstack_cli/src/network/v2/agent/l3_router/list.rs index 5256cfa67..e1fab2374 100644 --- a/openstack_cli/src/network/v2/agent/l3_router/list.rs +++ b/openstack_cli/src/network/v2/agent/l3_router/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/agent/list.rs b/openstack_cli/src/network/v2/agent/list.rs index 4dea7de35..a7ba03a94 100644 --- a/openstack_cli/src/network/v2/agent/list.rs +++ b/openstack_cli/src/network/v2/agent/list.rs @@ -111,7 +111,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/auto_allocated_topology/list.rs b/openstack_cli/src/network/v2/auto_allocated_topology/list.rs index f589c372b..43e30e41f 100644 --- a/openstack_cli/src/network/v2/auto_allocated_topology/list.rs +++ b/openstack_cli/src/network/v2/auto_allocated_topology/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/availability_zone/list.rs b/openstack_cli/src/network/v2/availability_zone/list.rs index 7e965c175..ba9da523d 100644 --- a/openstack_cli/src/network/v2/availability_zone/list.rs +++ b/openstack_cli/src/network/v2/availability_zone/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/default_security_group_rule/list.rs b/openstack_cli/src/network/v2/default_security_group_rule/list.rs index 64e30ddf3..d2add7b99 100644 --- a/openstack_cli/src/network/v2/default_security_group_rule/list.rs +++ b/openstack_cli/src/network/v2/default_security_group_rule/list.rs @@ -98,7 +98,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/flavor/list.rs b/openstack_cli/src/network/v2/flavor/list.rs index f8f9372e8..ccd15da11 100644 --- a/openstack_cli/src/network/v2/flavor/list.rs +++ b/openstack_cli/src/network/v2/flavor/list.rs @@ -93,7 +93,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/flavor/next_provider/list.rs b/openstack_cli/src/network/v2/flavor/next_provider/list.rs index c37ed144e..146612e1b 100644 --- a/openstack_cli/src/network/v2/flavor/next_provider/list.rs +++ b/openstack_cli/src/network/v2/flavor/next_provider/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/flavor/service_profile/list.rs b/openstack_cli/src/network/v2/flavor/service_profile/list.rs index f1d844cb5..6ccc2fd27 100644 --- a/openstack_cli/src/network/v2/flavor/service_profile/list.rs +++ b/openstack_cli/src/network/v2/flavor/service_profile/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/floatingip/list.rs b/openstack_cli/src/network/v2/floatingip/list.rs index ec4bd7569..4d2eb25e2 100644 --- a/openstack_cli/src/network/v2/floatingip/list.rs +++ b/openstack_cli/src/network/v2/floatingip/list.rs @@ -104,7 +104,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/floatingip/port_forwarding/list.rs b/openstack_cli/src/network/v2/floatingip/port_forwarding/list.rs index 7a5e71fda..70686d491 100644 --- a/openstack_cli/src/network/v2/floatingip/port_forwarding/list.rs +++ b/openstack_cli/src/network/v2/floatingip/port_forwarding/list.rs @@ -108,7 +108,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/floatingip/tag/list.rs b/openstack_cli/src/network/v2/floatingip/tag/list.rs index a93bc6757..62c85da34 100644 --- a/openstack_cli/src/network/v2/floatingip/tag/list.rs +++ b/openstack_cli/src/network/v2/floatingip/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/floatingip_pool/list.rs b/openstack_cli/src/network/v2/floatingip_pool/list.rs index 1ec535249..c7860b30d 100644 --- a/openstack_cli/src/network/v2/floatingip_pool/list.rs +++ b/openstack_cli/src/network/v2/floatingip_pool/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/local_ip/list.rs b/openstack_cli/src/network/v2/local_ip/list.rs index d5d79e0bb..b60036f4b 100644 --- a/openstack_cli/src/network/v2/local_ip/list.rs +++ b/openstack_cli/src/network/v2/local_ip/list.rs @@ -73,7 +73,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// local_ip_address query parameter for /v2.0/local-ips API #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/network/v2/local_ip/port_association/list.rs b/openstack_cli/src/network/v2/local_ip/port_association/list.rs index f3aa2e3fa..6be1d6dd6 100644 --- a/openstack_cli/src/network/v2/local_ip/port_association/list.rs +++ b/openstack_cli/src/network/v2/local_ip/port_association/list.rs @@ -94,7 +94,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// local_ip_address query parameter for /// /v2.0/local_ips/{local_ip_id}/port_associations API diff --git a/openstack_cli/src/network/v2/log/log/list.rs b/openstack_cli/src/network/v2/log/log/list.rs index 93f7b25ba..83c4deefd 100644 --- a/openstack_cli/src/network/v2/log/log/list.rs +++ b/openstack_cli/src/network/v2/log/log/list.rs @@ -97,7 +97,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/log/loggable_resource/list.rs b/openstack_cli/src/network/v2/log/loggable_resource/list.rs index f77e30809..ab63c5de3 100644 --- a/openstack_cli/src/network/v2/log/loggable_resource/list.rs +++ b/openstack_cli/src/network/v2/log/loggable_resource/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/metering/metering_label/list.rs b/openstack_cli/src/network/v2/metering/metering_label/list.rs index 6f1d1a863..580dca478 100644 --- a/openstack_cli/src/network/v2/metering/metering_label/list.rs +++ b/openstack_cli/src/network/v2/metering/metering_label/list.rs @@ -89,7 +89,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/metering/metering_label_rule/list.rs b/openstack_cli/src/network/v2/metering/metering_label_rule/list.rs index 678e5fa55..71a909b59 100644 --- a/openstack_cli/src/network/v2/metering/metering_label_rule/list.rs +++ b/openstack_cli/src/network/v2/metering/metering_label_rule/list.rs @@ -104,7 +104,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/ndp_proxy/list.rs b/openstack_cli/src/network/v2/ndp_proxy/list.rs index 7c0017fd7..cddeed07d 100644 --- a/openstack_cli/src/network/v2/ndp_proxy/list.rs +++ b/openstack_cli/src/network/v2/ndp_proxy/list.rs @@ -65,7 +65,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/network/create.rs b/openstack_cli/src/network/v2/network/create.rs index 3a3b0cff9..022a6e743 100644 --- a/openstack_cli/src/network/v2/network/create.rs +++ b/openstack_cli/src/network/v2/network/create.rs @@ -98,7 +98,7 @@ struct Network { /// The maximum transmission unit (MTU) value to address fragmentation. /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[arg(help_heading = "Body parameters", long)] - mtu: Option, + mtu: Option, /// Human-readable name of the network. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/network/dhcp_agent/list.rs b/openstack_cli/src/network/v2/network/dhcp_agent/list.rs index fbe8b071a..0a8e67c5b 100644 --- a/openstack_cli/src/network/v2/network/dhcp_agent/list.rs +++ b/openstack_cli/src/network/v2/network/dhcp_agent/list.rs @@ -78,7 +78,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/network/list.rs b/openstack_cli/src/network/v2/network/list.rs index a9487f1a6..b6ce45282 100644 --- a/openstack_cli/src/network/v2/network/list.rs +++ b/openstack_cli/src/network/v2/network/list.rs @@ -104,7 +104,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 @@ -114,7 +114,7 @@ struct QueryParameters { /// mtu query parameter for /v2.0/networks API #[arg(help_heading = "Query parameters", long)] - mtu: Option, + mtu: Option, /// name query parameter for /v2.0/networks API #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/network/v2/network/set.rs b/openstack_cli/src/network/v2/network/set.rs index 584d36dba..ba8e1a51e 100644 --- a/openstack_cli/src/network/v2/network/set.rs +++ b/openstack_cli/src/network/v2/network/set.rs @@ -95,7 +95,7 @@ struct Network { /// The maximum transmission unit (MTU) value to address fragmentation. /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[arg(help_heading = "Body parameters", long)] - mtu: Option, + mtu: Option, /// Human-readable name of the network. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/network/tag/list.rs b/openstack_cli/src/network/v2/network/tag/list.rs index e596035c4..e3bb8362b 100644 --- a/openstack_cli/src/network/v2/network/tag/list.rs +++ b/openstack_cli/src/network/v2/network/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/network_ip_availability/list.rs b/openstack_cli/src/network/v2/network_ip_availability/list.rs index 70c4f07aa..3e64e86e9 100644 --- a/openstack_cli/src/network/v2/network_ip_availability/list.rs +++ b/openstack_cli/src/network/v2/network_ip_availability/list.rs @@ -86,7 +86,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/network_segment_range/list.rs b/openstack_cli/src/network/v2/network_segment_range/list.rs index d0db5e341..9497f1e2e 100644 --- a/openstack_cli/src/network/v2/network_segment_range/list.rs +++ b/openstack_cli/src/network/v2/network_segment_range/list.rs @@ -69,7 +69,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/network_segment_range/tag/list.rs b/openstack_cli/src/network/v2/network_segment_range/tag/list.rs index 083e0a9ac..d0bffe5c1 100644 --- a/openstack_cli/src/network/v2/network_segment_range/tag/list.rs +++ b/openstack_cli/src/network/v2/network_segment_range/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/policy/packet_rate_limit_rule/list.rs b/openstack_cli/src/network/v2/policy/packet_rate_limit_rule/list.rs index c518d1799..1b4ac205a 100644 --- a/openstack_cli/src/network/v2/policy/packet_rate_limit_rule/list.rs +++ b/openstack_cli/src/network/v2/policy/packet_rate_limit_rule/list.rs @@ -71,7 +71,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/policy/tag/list.rs b/openstack_cli/src/network/v2/policy/tag/list.rs index 97d15c3d5..fe6b7de5f 100644 --- a/openstack_cli/src/network/v2/policy/tag/list.rs +++ b/openstack_cli/src/network/v2/policy/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/port/binding/list.rs b/openstack_cli/src/network/v2/port/binding/list.rs index 2257a75bf..912d8007c 100644 --- a/openstack_cli/src/network/v2/port/binding/list.rs +++ b/openstack_cli/src/network/v2/port/binding/list.rs @@ -71,7 +71,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/port/list.rs b/openstack_cli/src/network/v2/port/list.rs index 17f3c465e..2edd01c8d 100644 --- a/openstack_cli/src/network/v2/port/list.rs +++ b/openstack_cli/src/network/v2/port/list.rs @@ -121,7 +121,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// mac_address query parameter for /v2.0/ports API #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/network/v2/port/tag/list.rs b/openstack_cli/src/network/v2/port/tag/list.rs index c45c2af31..939682c31 100644 --- a/openstack_cli/src/network/v2/port/tag/list.rs +++ b/openstack_cli/src/network/v2/port/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/alias_bandwidth_limit_rule/list.rs b/openstack_cli/src/network/v2/qos/alias_bandwidth_limit_rule/list.rs index 45e81601e..fbacbc564 100644 --- a/openstack_cli/src/network/v2/qos/alias_bandwidth_limit_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/alias_bandwidth_limit_rule/list.rs @@ -69,7 +69,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/alias_dscp_marking_rule/list.rs b/openstack_cli/src/network/v2/qos/alias_dscp_marking_rule/list.rs index bfd08ad94..6d275624a 100644 --- a/openstack_cli/src/network/v2/qos/alias_dscp_marking_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/alias_dscp_marking_rule/list.rs @@ -69,7 +69,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/alias_minimum_bandwidth_rule/list.rs b/openstack_cli/src/network/v2/qos/alias_minimum_bandwidth_rule/list.rs index 499f9effe..85f34476b 100644 --- a/openstack_cli/src/network/v2/qos/alias_minimum_bandwidth_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/alias_minimum_bandwidth_rule/list.rs @@ -70,7 +70,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/alias_minimum_packet_rate_rule/list.rs b/openstack_cli/src/network/v2/qos/alias_minimum_packet_rate_rule/list.rs index 3907ac7ea..131eed8ef 100644 --- a/openstack_cli/src/network/v2/qos/alias_minimum_packet_rate_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/alias_minimum_packet_rate_rule/list.rs @@ -70,7 +70,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/policy/bandwidth_limit_rule/list.rs b/openstack_cli/src/network/v2/qos/policy/bandwidth_limit_rule/list.rs index 14f50bd63..6dc86eedf 100644 --- a/openstack_cli/src/network/v2/qos/policy/bandwidth_limit_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/policy/bandwidth_limit_rule/list.rs @@ -86,7 +86,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/policy/dscp_marking_rule/list.rs b/openstack_cli/src/network/v2/qos/policy/dscp_marking_rule/list.rs index 644e36d2c..1e9672dd0 100644 --- a/openstack_cli/src/network/v2/qos/policy/dscp_marking_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/policy/dscp_marking_rule/list.rs @@ -91,7 +91,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/policy/list.rs b/openstack_cli/src/network/v2/qos/policy/list.rs index 1febbb02e..b113237b8 100644 --- a/openstack_cli/src/network/v2/qos/policy/list.rs +++ b/openstack_cli/src/network/v2/qos/policy/list.rs @@ -94,7 +94,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/policy/minimum_bandwidth_rule/list.rs b/openstack_cli/src/network/v2/qos/policy/minimum_bandwidth_rule/list.rs index 17787384f..63b913c9e 100644 --- a/openstack_cli/src/network/v2/qos/policy/minimum_bandwidth_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/policy/minimum_bandwidth_rule/list.rs @@ -91,7 +91,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/policy/minimum_packet_rate_rule/list.rs b/openstack_cli/src/network/v2/qos/policy/minimum_packet_rate_rule/list.rs index bf68a20cc..0c61e75b7 100644 --- a/openstack_cli/src/network/v2/qos/policy/minimum_packet_rate_rule/list.rs +++ b/openstack_cli/src/network/v2/qos/policy/minimum_packet_rate_rule/list.rs @@ -71,7 +71,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/qos/rule_type/list.rs b/openstack_cli/src/network/v2/qos/rule_type/list.rs index c790aabc5..511388f61 100644 --- a/openstack_cli/src/network/v2/qos/rule_type/list.rs +++ b/openstack_cli/src/network/v2/qos/rule_type/list.rs @@ -87,7 +87,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/quota/list.rs b/openstack_cli/src/network/v2/quota/list.rs index c37fef0b2..796cf6e53 100644 --- a/openstack_cli/src/network/v2/quota/list.rs +++ b/openstack_cli/src/network/v2/quota/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/rbac_policy/list.rs b/openstack_cli/src/network/v2/rbac_policy/list.rs index b9afaf86a..d3deb466c 100644 --- a/openstack_cli/src/network/v2/rbac_policy/list.rs +++ b/openstack_cli/src/network/v2/rbac_policy/list.rs @@ -87,7 +87,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/router/conntrack_helper/list.rs b/openstack_cli/src/network/v2/router/conntrack_helper/list.rs index 4c5f62dd0..c3f8fbb52 100644 --- a/openstack_cli/src/network/v2/router/conntrack_helper/list.rs +++ b/openstack_cli/src/network/v2/router/conntrack_helper/list.rs @@ -88,7 +88,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/router/l3_agent/list.rs b/openstack_cli/src/network/v2/router/l3_agent/list.rs index 7c87fd0ab..f8f58cdcd 100644 --- a/openstack_cli/src/network/v2/router/l3_agent/list.rs +++ b/openstack_cli/src/network/v2/router/l3_agent/list.rs @@ -78,7 +78,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/router/list.rs b/openstack_cli/src/network/v2/router/list.rs index a2b96f0a7..f05e5e6ff 100644 --- a/openstack_cli/src/network/v2/router/list.rs +++ b/openstack_cli/src/network/v2/router/list.rs @@ -99,7 +99,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/router/tag/list.rs b/openstack_cli/src/network/v2/router/tag/list.rs index f28fc1c57..f8c651513 100644 --- a/openstack_cli/src/network/v2/router/tag/list.rs +++ b/openstack_cli/src/network/v2/router/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/security_group/list.rs b/openstack_cli/src/network/v2/security_group/list.rs index 7ea5b4c99..6cdd667c6 100644 --- a/openstack_cli/src/network/v2/security_group/list.rs +++ b/openstack_cli/src/network/v2/security_group/list.rs @@ -90,7 +90,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/security_group/tag/list.rs b/openstack_cli/src/network/v2/security_group/tag/list.rs index 1531154a7..695db62e4 100644 --- a/openstack_cli/src/network/v2/security_group/tag/list.rs +++ b/openstack_cli/src/network/v2/security_group/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/security_group_rule/list.rs b/openstack_cli/src/network/v2/security_group_rule/list.rs index 2b0b37346..1ea012ec2 100644 --- a/openstack_cli/src/network/v2/security_group_rule/list.rs +++ b/openstack_cli/src/network/v2/security_group_rule/list.rs @@ -103,7 +103,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/segment/list.rs b/openstack_cli/src/network/v2/segment/list.rs index bd3f747a9..373ae4589 100644 --- a/openstack_cli/src/network/v2/segment/list.rs +++ b/openstack_cli/src/network/v2/segment/list.rs @@ -87,7 +87,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/service_profile/list.rs b/openstack_cli/src/network/v2/service_profile/list.rs index 0b301486d..7d8813bc1 100644 --- a/openstack_cli/src/network/v2/service_profile/list.rs +++ b/openstack_cli/src/network/v2/service_profile/list.rs @@ -97,7 +97,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/service_provider/list.rs b/openstack_cli/src/network/v2/service_provider/list.rs index db62324fb..de1a8297e 100644 --- a/openstack_cli/src/network/v2/service_provider/list.rs +++ b/openstack_cli/src/network/v2/service_provider/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/subnet/create.rs b/openstack_cli/src/network/v2/subnet/create.rs index 7518c3988..0699fd6b4 100644 --- a/openstack_cli/src/network/v2/subnet/create.rs +++ b/openstack_cli/src/network/v2/subnet/create.rs @@ -196,7 +196,7 @@ struct Subnet { /// not specified, the `default_prefixlen` value of the subnet pool will be /// used. #[arg(help_heading = "Body parameters", long)] - prefixlen: Option, + prefixlen: Option, /// The ID of a network segment the subnet is associated with. It is /// available when `segment` extension is enabled. diff --git a/openstack_cli/src/network/v2/subnet/list.rs b/openstack_cli/src/network/v2/subnet/list.rs index 8eb05814a..0050e3794 100644 --- a/openstack_cli/src/network/v2/subnet/list.rs +++ b/openstack_cli/src/network/v2/subnet/list.rs @@ -116,7 +116,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/subnet/tag/list.rs b/openstack_cli/src/network/v2/subnet/tag/list.rs index 52e7f1daf..0dc5abfb5 100644 --- a/openstack_cli/src/network/v2/subnet/tag/list.rs +++ b/openstack_cli/src/network/v2/subnet/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/subnetpool/create.rs b/openstack_cli/src/network/v2/subnetpool/create.rs index dd18d7934..b7bc8686e 100644 --- a/openstack_cli/src/network/v2/subnetpool/create.rs +++ b/openstack_cli/src/network/v2/subnetpool/create.rs @@ -75,7 +75,7 @@ struct Subnetpool { /// attributes are omitted when you create the subnet. Default is /// `min_prefixlen`. #[arg(help_heading = "Body parameters", long)] - default_prefixlen: Option, + default_prefixlen: Option, /// A per-project quota on the prefix space that can be allocated from the /// subnet pool for project subnets. Default is no quota is enforced on @@ -84,7 +84,7 @@ struct Subnetpool { /// `default_quota` is measured units of /64. All projects that use the /// subnet pool have the same prefix quota applied. #[arg(help_heading = "Body parameters", long)] - default_quota: Option, + default_quota: Option, /// A human-readable description for the resource. Default is an empty /// string. @@ -99,12 +99,12 @@ struct Subnetpool { /// IPv4 subnet pools, default is `32`. For IPv6 subnet pools, default is /// `128`. #[arg(help_heading = "Body parameters", long)] - max_prefixlen: Option, + max_prefixlen: Option, /// The smallest prefix that can be allocated from a subnet pool. For IPv4 /// subnet pools, default is `8`. For IPv6 subnet pools, default is `64`. #[arg(help_heading = "Body parameters", long)] - min_prefixlen: Option, + min_prefixlen: Option, /// Human-readable name of the resource. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/subnetpool/list.rs b/openstack_cli/src/network/v2/subnetpool/list.rs index 86174db74..e2dd1de97 100644 --- a/openstack_cli/src/network/v2/subnetpool/list.rs +++ b/openstack_cli/src/network/v2/subnetpool/list.rs @@ -80,11 +80,11 @@ struct QueryParameters { /// default_prefixlen query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] - default_prefixlen: Option, + default_prefixlen: Option, /// default_quota query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] - default_quota: Option, + default_quota: Option, /// description query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] @@ -111,7 +111,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 @@ -121,11 +121,11 @@ struct QueryParameters { /// max_prefixlen query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] - max_prefixlen: Option, + max_prefixlen: Option, /// min_prefixlen query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] - min_prefixlen: Option, + min_prefixlen: Option, /// name query parameter for /v2.0/subnetpools API #[arg(help_heading = "Query parameters", long)] diff --git a/openstack_cli/src/network/v2/subnetpool/set.rs b/openstack_cli/src/network/v2/subnetpool/set.rs index 101f13e81..c9540d6f0 100644 --- a/openstack_cli/src/network/v2/subnetpool/set.rs +++ b/openstack_cli/src/network/v2/subnetpool/set.rs @@ -85,7 +85,7 @@ struct Subnetpool { /// attributes are omitted when you create the subnet. Default is /// `min_prefixlen`. #[arg(help_heading = "Body parameters", long)] - default_prefixlen: Option, + default_prefixlen: Option, /// A per-project quota on the prefix space that can be allocated from the /// subnet pool for project subnets. Default is no quota is enforced on @@ -94,7 +94,7 @@ struct Subnetpool { /// `default_quota` is measured units of /64. All projects that use the /// subnet pool have the same prefix quota applied. #[arg(help_heading = "Body parameters", long)] - default_quota: Option, + default_quota: Option, /// A human-readable description for the resource. Default is an empty /// string. @@ -109,12 +109,12 @@ struct Subnetpool { /// IPv4 subnet pools, default is `32`. For IPv6 subnet pools, default is /// `128`. #[arg(help_heading = "Body parameters", long)] - max_prefixlen: Option, + max_prefixlen: Option, /// The smallest prefix that can be allocated from a subnet pool. For IPv4 /// subnet pools, default is `8`. For IPv6 subnet pools, default is `64`. #[arg(help_heading = "Body parameters", long)] - min_prefixlen: Option, + min_prefixlen: Option, /// Human-readable name of the resource. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/subnetpool/tag/list.rs b/openstack_cli/src/network/v2/subnetpool/tag/list.rs index 47e45d801..dc48c0dba 100644 --- a/openstack_cli/src/network/v2/subnetpool/tag/list.rs +++ b/openstack_cli/src/network/v2/subnetpool/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/trunk/tag/list.rs b/openstack_cli/src/network/v2/trunk/tag/list.rs index abd51d99c..eed0447a7 100644 --- a/openstack_cli/src/network/v2/trunk/tag/list.rs +++ b/openstack_cli/src/network/v2/trunk/tag/list.rs @@ -61,7 +61,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/vpn/endpoint_group/list.rs b/openstack_cli/src/network/v2/vpn/endpoint_group/list.rs index 666e0a603..e119db283 100644 --- a/openstack_cli/src/network/v2/vpn/endpoint_group/list.rs +++ b/openstack_cli/src/network/v2/vpn/endpoint_group/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/vpn/ikepolicy/list.rs b/openstack_cli/src/network/v2/vpn/ikepolicy/list.rs index d151deb98..3da7dee6c 100644 --- a/openstack_cli/src/network/v2/vpn/ikepolicy/list.rs +++ b/openstack_cli/src/network/v2/vpn/ikepolicy/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/create.rs b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/create.rs index d9f412e1c..2b395e937 100644 --- a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/create.rs +++ b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/create.rs @@ -121,7 +121,7 @@ struct IpsecSiteConnection { /// The maximum transmission unit (MTU) value to address fragmentation. /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[arg(help_heading = "Body parameters", long)] - mtu: Option, + mtu: Option, /// Human-readable name of the resource. Default is an empty string. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/list.rs b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/list.rs index b687ed989..7f387d012 100644 --- a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/list.rs +++ b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/set.rs b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/set.rs index d4427d490..10c62e61a 100644 --- a/openstack_cli/src/network/v2/vpn/ipsec_site_connection/set.rs +++ b/openstack_cli/src/network/v2/vpn/ipsec_site_connection/set.rs @@ -123,7 +123,7 @@ struct IpsecSiteConnection { /// The maximum transmission unit (MTU) value to address fragmentation. /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[arg(help_heading = "Body parameters", long)] - mtu: Option, + mtu: Option, /// Human-readable name of the resource. Default is an empty string. #[arg(help_heading = "Body parameters", long)] diff --git a/openstack_cli/src/network/v2/vpn/ipsecpolicy/list.rs b/openstack_cli/src/network/v2/vpn/ipsecpolicy/list.rs index 71b90f2d1..0ab62e84d 100644 --- a/openstack_cli/src/network/v2/vpn/ipsecpolicy/list.rs +++ b/openstack_cli/src/network/v2/vpn/ipsecpolicy/list.rs @@ -79,7 +79,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/network/v2/vpn/vpnservice/list.rs b/openstack_cli/src/network/v2/vpn/vpnservice/list.rs index 1acd18d3c..6af8d33a7 100644 --- a/openstack_cli/src/network/v2/vpn/vpnservice/list.rs +++ b/openstack_cli/src/network/v2/vpn/vpnservice/list.rs @@ -81,7 +81,7 @@ struct QueryParameters { long("page-size"), visible_alias("limit") )] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_cli/src/placement/v1/resource_provider/inventory/set.rs b/openstack_cli/src/placement/v1/resource_provider/inventory/set.rs index 996df38a7..a63ca24c9 100644 --- a/openstack_cli/src/placement/v1/resource_provider/inventory/set.rs +++ b/openstack_cli/src/placement/v1/resource_provider/inventory/set.rs @@ -73,7 +73,7 @@ pub struct InventoryCommand { /// The amount of the resource a provider has reserved for its own use. #[arg(help_heading = "Body parameters", long)] - reserved: Option, + reserved: Option, /// A consistent view marker that assists with the management of concurrent /// resource provider updates. diff --git a/openstack_sdk/src/api/compute/v2/flavor/list.rs b/openstack_sdk/src/api/compute/v2/flavor/list.rs index e3c7fdafb..b5b3fb0ec 100644 --- a/openstack_sdk/src/api/compute/v2/flavor/list.rs +++ b/openstack_sdk/src/api/compute/v2/flavor/list.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { is_public: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/flavor/list_detailed.rs b/openstack_sdk/src/api/compute/v2/flavor/list_detailed.rs index 548feba03..93c6e8cd5 100644 --- a/openstack_sdk/src/api/compute/v2/flavor/list_detailed.rs +++ b/openstack_sdk/src/api/compute/v2/flavor/list_detailed.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { is_public: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/hypervisor/list.rs b/openstack_sdk/src/api/compute/v2/hypervisor/list.rs index 4b3d04e1d..6ce7f3839 100644 --- a/openstack_sdk/src/api/compute/v2/hypervisor/list.rs +++ b/openstack_sdk/src/api/compute/v2/hypervisor/list.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { hypervisor_hostname_pattern: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/hypervisor/list_detailed.rs b/openstack_sdk/src/api/compute/v2/hypervisor/list_detailed.rs index 9ed3da0ea..6fb9be293 100644 --- a/openstack_sdk/src/api/compute/v2/hypervisor/list_detailed.rs +++ b/openstack_sdk/src/api/compute/v2/hypervisor/list_detailed.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { hypervisor_hostname_pattern: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/keypair/list.rs b/openstack_sdk/src/api/compute/v2/keypair/list.rs index f1a47ccd7..701fae034 100644 --- a/openstack_sdk/src/api/compute/v2/keypair/list.rs +++ b/openstack_sdk/src/api/compute/v2/keypair/list.rs @@ -33,7 +33,7 @@ use crate::api::Pageable; #[builder(setter(strip_option))] pub struct Request<'a> { #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/migration/get.rs b/openstack_sdk/src/api/compute/v2/migration/get.rs index d597c1058..04f8f47cc 100644 --- a/openstack_sdk/src/api/compute/v2/migration/get.rs +++ b/openstack_sdk/src/api/compute/v2/migration/get.rs @@ -55,7 +55,7 @@ pub struct Request<'a> { instance_uuid: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/server/create_backup_20.rs b/openstack_sdk/src/api/compute/v2/server/create_backup_20.rs index 72df02efd..fcdba8c88 100644 --- a/openstack_sdk/src/api/compute/v2/server/create_backup_20.rs +++ b/openstack_sdk/src/api/compute/v2/server/create_backup_20.rs @@ -49,7 +49,7 @@ pub struct CreateBackup<'a> { /// when image count exceed the rotation count. #[serde()] #[builder(setter(into))] - pub(crate) rotation: i32, + pub(crate) rotation: u32, } impl<'a> CreateBackupBuilder<'a> { @@ -177,7 +177,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap() ) @@ -196,7 +196,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap() ) @@ -228,7 +228,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap(), ) @@ -259,7 +259,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap(), ) diff --git a/openstack_sdk/src/api/compute/v2/server/create_backup_21.rs b/openstack_sdk/src/api/compute/v2/server/create_backup_21.rs index 7f73cdf05..02ea3183f 100644 --- a/openstack_sdk/src/api/compute/v2/server/create_backup_21.rs +++ b/openstack_sdk/src/api/compute/v2/server/create_backup_21.rs @@ -49,7 +49,7 @@ pub struct CreateBackup<'a> { /// when image count exceed the rotation count. #[serde()] #[builder(setter(into))] - pub(crate) rotation: i32, + pub(crate) rotation: u32, } impl<'a> CreateBackupBuilder<'a> { @@ -177,7 +177,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap() ) @@ -196,7 +196,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap() ) @@ -228,7 +228,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap(), ) @@ -259,7 +259,7 @@ mod tests { CreateBackupBuilder::default() .backup_type("foo") .name("foo") - .rotation(123) + .rotation(7_u32) .build() .unwrap(), ) diff --git a/openstack_sdk/src/api/compute/v2/server/instance_action/list.rs b/openstack_sdk/src/api/compute/v2/server/instance_action/list.rs index b85eb86b4..660eb94aa 100644 --- a/openstack_sdk/src/api/compute/v2/server/instance_action/list.rs +++ b/openstack_sdk/src/api/compute/v2/server/instance_action/list.rs @@ -47,7 +47,7 @@ pub struct Request<'a> { changes_since: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/server/list.rs b/openstack_sdk/src/api/compute/v2/server/list.rs index 108c84e0f..8179bb472 100644 --- a/openstack_sdk/src/api/compute/v2/server/list.rs +++ b/openstack_sdk/src/api/compute/v2/server/list.rs @@ -122,7 +122,7 @@ pub struct Request<'a> { launched_at: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] locked: Option>, diff --git a/openstack_sdk/src/api/compute/v2/server/list_detailed.rs b/openstack_sdk/src/api/compute/v2/server/list_detailed.rs index 4aae1465c..e4444b3a5 100644 --- a/openstack_sdk/src/api/compute/v2/server/list_detailed.rs +++ b/openstack_sdk/src/api/compute/v2/server/list_detailed.rs @@ -120,7 +120,7 @@ pub struct Request<'a> { launched_at: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] locked: Option>, diff --git a/openstack_sdk/src/api/compute/v2/server/volume_attachment/list.rs b/openstack_sdk/src/api/compute/v2/server/volume_attachment/list.rs index 495d25a0f..5ba9db31d 100644 --- a/openstack_sdk/src/api/compute/v2/server/volume_attachment/list.rs +++ b/openstack_sdk/src/api/compute/v2/server/volume_attachment/list.rs @@ -33,10 +33,10 @@ use crate::api::Pageable; #[builder(setter(strip_option))] pub struct Request<'a> { #[builder(default)] - limit: Option, + limit: Option, #[builder(default)] - offset: Option, + offset: Option, /// server_id parameter for /// /v2.1/servers/{server_id}/os-volume_attachments/{id} API diff --git a/openstack_sdk/src/api/compute/v2/server_group/list.rs b/openstack_sdk/src/api/compute/v2/server_group/list.rs index eacf5c54b..2488f98e7 100644 --- a/openstack_sdk/src/api/compute/v2/server_group/list.rs +++ b/openstack_sdk/src/api/compute/v2/server_group/list.rs @@ -39,10 +39,10 @@ pub struct Request<'a> { all_projects: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default)] - offset: Option, + offset: Option, #[builder(setter(name = "_headers"), default, private)] _headers: Option, diff --git a/openstack_sdk/src/api/compute/v2/simple_tenant_usage/get.rs b/openstack_sdk/src/api/compute/v2/simple_tenant_usage/get.rs index fb8efc791..6141f6777 100644 --- a/openstack_sdk/src/api/compute/v2/simple_tenant_usage/get.rs +++ b/openstack_sdk/src/api/compute/v2/simple_tenant_usage/get.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { id: Cow<'a, str>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/compute/v2/simple_tenant_usage/list.rs b/openstack_sdk/src/api/compute/v2/simple_tenant_usage/list.rs index e62c97a53..f84bafb67 100644 --- a/openstack_sdk/src/api/compute/v2/simple_tenant_usage/list.rs +++ b/openstack_sdk/src/api/compute/v2/simple_tenant_usage/list.rs @@ -39,7 +39,7 @@ pub struct Request<'a> { end: Option>, #[builder(default)] - limit: Option, + limit: Option, #[builder(default, setter(into))] marker: Option>, diff --git a/openstack_sdk/src/api/identity/v3/domain/list.rs b/openstack_sdk/src/api/identity/v3/domain/list.rs index 1697557a4..397a4b628 100644 --- a/openstack_sdk/src/api/identity/v3/domain/list.rs +++ b/openstack_sdk/src/api/identity/v3/domain/list.rs @@ -38,7 +38,7 @@ pub struct Request<'a> { enabled: Option, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/identity/v3/group/head.rs b/openstack_sdk/src/api/identity/v3/group/head.rs index 5957daae9..fae69fca2 100644 --- a/openstack_sdk/src/api/identity/v3/group/head.rs +++ b/openstack_sdk/src/api/identity/v3/group/head.rs @@ -35,7 +35,7 @@ pub struct Request<'a> { domain_id: Option>, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/identity/v3/group/list.rs b/openstack_sdk/src/api/identity/v3/group/list.rs index fd741f954..05ae39093 100644 --- a/openstack_sdk/src/api/identity/v3/group/list.rs +++ b/openstack_sdk/src/api/identity/v3/group/list.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { domain_id: Option>, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/create.rs b/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/create.rs index ff65b0449..14698f493 100644 --- a/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/create.rs +++ b/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/create.rs @@ -36,7 +36,7 @@ pub struct IdentityProvider<'a> { /// default value configured in keystone will be used, if enabled. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) authorization_ttl: Option>, + pub(crate) authorization_ttl: Option>, /// The identity provider description #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/set.rs b/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/set.rs index b578cf2c6..14506a8c2 100644 --- a/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/set.rs +++ b/openstack_sdk/src/api/identity/v3/os_federation/identity_provider/set.rs @@ -34,7 +34,7 @@ pub struct IdentityProvider<'a> { /// default value configured in keystone will be used, if enabled. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) authorization_ttl: Option>, + pub(crate) authorization_ttl: Option>, /// The identity provider description #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/identity/v3/os_trust/trust/create.rs b/openstack_sdk/src/api/identity/v3/os_trust/trust/create.rs index 9f20a65c4..1ea9873ab 100644 --- a/openstack_sdk/src/api/identity/v3/os_trust/trust/create.rs +++ b/openstack_sdk/src/api/identity/v3/os_trust/trust/create.rs @@ -106,7 +106,7 @@ pub struct Trust<'a> { /// redelegatable, regardless of the value of allow_redelegation. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) redelegation_count: Option>, + pub(crate) redelegation_count: Option>, /// 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 diff --git a/openstack_sdk/src/api/identity/v3/project/list.rs b/openstack_sdk/src/api/identity/v3/project/list.rs index 2c59472c3..d461827d7 100644 --- a/openstack_sdk/src/api/identity/v3/project/list.rs +++ b/openstack_sdk/src/api/identity/v3/project/list.rs @@ -42,7 +42,7 @@ pub struct Request<'a> { is_domain: Option, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/identity/v3/user/head.rs b/openstack_sdk/src/api/identity/v3/user/head.rs index ad0fc923f..b4ba2eafe 100644 --- a/openstack_sdk/src/api/identity/v3/user/head.rs +++ b/openstack_sdk/src/api/identity/v3/user/head.rs @@ -43,7 +43,7 @@ pub struct Request<'a> { idp_id: Option>, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/identity/v3/user/list.rs b/openstack_sdk/src/api/identity/v3/user/list.rs index 98db9cdd9..706001b1c 100644 --- a/openstack_sdk/src/api/identity/v3/user/list.rs +++ b/openstack_sdk/src/api/identity/v3/user/list.rs @@ -44,7 +44,7 @@ pub struct Request<'a> { idp_id: Option>, #[builder(default)] - limit: Option, + limit: Option, /// ID of the last fetched entry #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/create.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/create.rs index b0a5a3dae..de5ce8555 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/create.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/create.rs @@ -83,11 +83,11 @@ pub struct Properties<'a> { #[serde(rename = "maxItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[serde(rename = "maxLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] @@ -95,11 +95,11 @@ pub struct Properties<'a> { #[serde(rename = "minItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[serde(rename = "minLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/object/create.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/object/create.rs index 27c2248fe..9755f465d 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/object/create.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/object/create.rs @@ -83,11 +83,11 @@ pub struct Properties<'a> { #[serde(rename = "maxItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[serde(rename = "maxLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] @@ -95,11 +95,11 @@ pub struct Properties<'a> { #[serde(rename = "minItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[serde(rename = "minLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/object/set.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/object/set.rs index 271893b67..641f942a5 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/object/set.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/object/set.rs @@ -83,11 +83,11 @@ pub struct Properties<'a> { #[serde(rename = "maxItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[serde(rename = "maxLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] @@ -95,11 +95,11 @@ pub struct Properties<'a> { #[serde(rename = "minItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[serde(rename = "minLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/property/create.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/property/create.rs index f2d95ae1e..6b93f2b7b 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/property/create.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/property/create.rs @@ -75,19 +75,19 @@ pub struct Request<'a> { pub(crate) maximum: Option, #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[builder(default, setter(into))] pub(crate) minimum: Option, #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[builder(setter(into))] pub(crate) name: Cow<'a, str>, diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/property/set.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/property/set.rs index e3468a44f..dcc0ef96f 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/property/set.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/property/set.rs @@ -75,19 +75,19 @@ pub struct Request<'a> { pub(crate) maximum: Option, #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[builder(default, setter(into))] pub(crate) minimum: Option, #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[builder(setter(into))] pub(crate) name: Cow<'a, str>, diff --git a/openstack_sdk/src/api/image/v2/metadef/namespace/set.rs b/openstack_sdk/src/api/image/v2/metadef/namespace/set.rs index f3d76982a..e7835ed73 100644 --- a/openstack_sdk/src/api/image/v2/metadef/namespace/set.rs +++ b/openstack_sdk/src/api/image/v2/metadef/namespace/set.rs @@ -83,11 +83,11 @@ pub struct Properties<'a> { #[serde(rename = "maxItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_items: Option, + pub(crate) max_items: Option, #[serde(rename = "maxLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_length: Option, + pub(crate) max_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] @@ -95,11 +95,11 @@ pub struct Properties<'a> { #[serde(rename = "minItems", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_items: Option, + pub(crate) min_items: Option, #[serde(rename = "minLength", skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_length: Option, + pub(crate) min_length: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/network/v2/address_group/list.rs b/openstack_sdk/src/api/network/v2/address_group/list.rs index 6cf373f7d..e1ef35e67 100644 --- a/openstack_sdk/src/api/network/v2/address_group/list.rs +++ b/openstack_sdk/src/api/network/v2/address_group/list.rs @@ -62,7 +62,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/address_scope/list.rs b/openstack_sdk/src/api/network/v2/address_scope/list.rs index c12ac0131..34bb90a7c 100644 --- a/openstack_sdk/src/api/network/v2/address_scope/list.rs +++ b/openstack_sdk/src/api/network/v2/address_scope/list.rs @@ -62,7 +62,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/agent/dhcp_network/list.rs b/openstack_sdk/src/api/network/v2/agent/dhcp_network/list.rs index b8a21b761..1a7c9f895 100644 --- a/openstack_sdk/src/api/network/v2/agent/dhcp_network/list.rs +++ b/openstack_sdk/src/api/network/v2/agent/dhcp_network/list.rs @@ -54,7 +54,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/agent/l3_router/list.rs b/openstack_sdk/src/api/network/v2/agent/l3_router/list.rs index 8260b951d..7293ec1e2 100644 --- a/openstack_sdk/src/api/network/v2/agent/l3_router/list.rs +++ b/openstack_sdk/src/api/network/v2/agent/l3_router/list.rs @@ -54,7 +54,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/agent/list.rs b/openstack_sdk/src/api/network/v2/agent/list.rs index 21d932c35..83440e3e2 100644 --- a/openstack_sdk/src/api/network/v2/agent/list.rs +++ b/openstack_sdk/src/api/network/v2/agent/list.rs @@ -82,7 +82,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/auto_allocated_topology/list.rs b/openstack_sdk/src/api/network/v2/auto_allocated_topology/list.rs index 931d4813b..a7b940a3a 100644 --- a/openstack_sdk/src/api/network/v2/auto_allocated_topology/list.rs +++ b/openstack_sdk/src/api/network/v2/auto_allocated_topology/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/availability_zone/list.rs b/openstack_sdk/src/api/network/v2/availability_zone/list.rs index 4e056d8a4..8045bbf64 100644 --- a/openstack_sdk/src/api/network/v2/availability_zone/list.rs +++ b/openstack_sdk/src/api/network/v2/availability_zone/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/default_security_group_rule/list.rs b/openstack_sdk/src/api/network/v2/default_security_group_rule/list.rs index 988a4cf62..766b78431 100644 --- a/openstack_sdk/src/api/network/v2/default_security_group_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/default_security_group_rule/list.rs @@ -69,7 +69,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/flavor/list.rs b/openstack_sdk/src/api/network/v2/flavor/list.rs index 31c7f49fd..5dcee96fe 100644 --- a/openstack_sdk/src/api/network/v2/flavor/list.rs +++ b/openstack_sdk/src/api/network/v2/flavor/list.rs @@ -64,7 +64,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/flavor/next_provider/list.rs b/openstack_sdk/src/api/network/v2/flavor/next_provider/list.rs index ea00918de..df9e75e9a 100644 --- a/openstack_sdk/src/api/network/v2/flavor/next_provider/list.rs +++ b/openstack_sdk/src/api/network/v2/flavor/next_provider/list.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/flavor/service_profile/list.rs b/openstack_sdk/src/api/network/v2/flavor/service_profile/list.rs index 35a4f9385..8abb0293d 100644 --- a/openstack_sdk/src/api/network/v2/flavor/service_profile/list.rs +++ b/openstack_sdk/src/api/network/v2/flavor/service_profile/list.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/floatingip/list.rs b/openstack_sdk/src/api/network/v2/floatingip/list.rs index 6ff704682..34b69bb21 100644 --- a/openstack_sdk/src/api/network/v2/floatingip/list.rs +++ b/openstack_sdk/src/api/network/v2/floatingip/list.rs @@ -76,7 +76,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/floatingip/port_forwarding/list.rs b/openstack_sdk/src/api/network/v2/floatingip/port_forwarding/list.rs index 1cc5a41ed..6c3b90fd0 100644 --- a/openstack_sdk/src/api/network/v2/floatingip/port_forwarding/list.rs +++ b/openstack_sdk/src/api/network/v2/floatingip/port_forwarding/list.rs @@ -84,7 +84,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/floatingip/tag/list.rs b/openstack_sdk/src/api/network/v2/floatingip/tag/list.rs index 4050c88e7..88cbce249 100644 --- a/openstack_sdk/src/api/network/v2/floatingip/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/floatingip/tag/list.rs @@ -36,7 +36,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/floatingip_pool/list.rs b/openstack_sdk/src/api/network/v2/floatingip_pool/list.rs index f4212b0ef..478323b56 100644 --- a/openstack_sdk/src/api/network/v2/floatingip_pool/list.rs +++ b/openstack_sdk/src/api/network/v2/floatingip_pool/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/local_ip/list.rs b/openstack_sdk/src/api/network/v2/local_ip/list.rs index 89c908f81..37f0f746a 100644 --- a/openstack_sdk/src/api/network/v2/local_ip/list.rs +++ b/openstack_sdk/src/api/network/v2/local_ip/list.rs @@ -43,7 +43,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// local_ip_address query parameter for /v2.0/local-ips API #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/network/v2/local_ip/port_association/list.rs b/openstack_sdk/src/api/network/v2/local_ip/port_association/list.rs index ef9219a86..74335b698 100644 --- a/openstack_sdk/src/api/network/v2/local_ip/port_association/list.rs +++ b/openstack_sdk/src/api/network/v2/local_ip/port_association/list.rs @@ -65,7 +65,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// local_ip_address query parameter for /// /v2.0/local_ips/{local_ip_id}/port_associations API diff --git a/openstack_sdk/src/api/network/v2/log/log/list.rs b/openstack_sdk/src/api/network/v2/log/log/list.rs index 2ecd92772..5a0aa394b 100644 --- a/openstack_sdk/src/api/network/v2/log/log/list.rs +++ b/openstack_sdk/src/api/network/v2/log/log/list.rs @@ -68,7 +68,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/log/loggable_resource/list.rs b/openstack_sdk/src/api/network/v2/log/loggable_resource/list.rs index bfe69a74c..8fe2dff8a 100644 --- a/openstack_sdk/src/api/network/v2/log/loggable_resource/list.rs +++ b/openstack_sdk/src/api/network/v2/log/loggable_resource/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/metering/metering_label/list.rs b/openstack_sdk/src/api/network/v2/metering/metering_label/list.rs index 7bd8e8025..af211218b 100644 --- a/openstack_sdk/src/api/network/v2/metering/metering_label/list.rs +++ b/openstack_sdk/src/api/network/v2/metering/metering_label/list.rs @@ -60,7 +60,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/metering/metering_label_rule/list.rs b/openstack_sdk/src/api/network/v2/metering/metering_label_rule/list.rs index 7c6b2144f..fc5894a1c 100644 --- a/openstack_sdk/src/api/network/v2/metering/metering_label_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/metering/metering_label_rule/list.rs @@ -75,7 +75,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/ndp_proxy/list.rs b/openstack_sdk/src/api/network/v2/ndp_proxy/list.rs index 3e2726130..8a7097111 100644 --- a/openstack_sdk/src/api/network/v2/ndp_proxy/list.rs +++ b/openstack_sdk/src/api/network/v2/ndp_proxy/list.rs @@ -35,7 +35,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/network/create.rs b/openstack_sdk/src/api/network/v2/network/create.rs index 16e7c3cb3..5fa36bf5a 100644 --- a/openstack_sdk/src/api/network/v2/network/create.rs +++ b/openstack_sdk/src/api/network/v2/network/create.rs @@ -98,7 +98,7 @@ pub struct Network<'a> { /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) mtu: Option, + pub(crate) mtu: Option, /// Human-readable name of the network. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/network/dhcp_agent/list.rs b/openstack_sdk/src/api/network/v2/network/dhcp_agent/list.rs index 05b759cb2..e0172bae7 100644 --- a/openstack_sdk/src/api/network/v2/network/dhcp_agent/list.rs +++ b/openstack_sdk/src/api/network/v2/network/dhcp_agent/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/network/list.rs b/openstack_sdk/src/api/network/v2/network/list.rs index 62b631b60..1d201b8a3 100644 --- a/openstack_sdk/src/api/network/v2/network/list.rs +++ b/openstack_sdk/src/api/network/v2/network/list.rs @@ -76,7 +76,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 @@ -86,7 +86,7 @@ pub struct Request<'a> { /// mtu query parameter for /v2.0/networks API #[builder(default)] - mtu: Option, + mtu: Option, /// name query parameter for /v2.0/networks API #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/network/v2/network/set.rs b/openstack_sdk/src/api/network/v2/network/set.rs index 2f60dd9d8..b585a3f09 100644 --- a/openstack_sdk/src/api/network/v2/network/set.rs +++ b/openstack_sdk/src/api/network/v2/network/set.rs @@ -85,7 +85,7 @@ pub struct Network<'a> { /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) mtu: Option, + pub(crate) mtu: Option, /// Human-readable name of the network. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/network/tag/list.rs b/openstack_sdk/src/api/network/v2/network/tag/list.rs index bb2f8f22c..7db0b406d 100644 --- a/openstack_sdk/src/api/network/v2/network/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/network/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/network_ip_availability/list.rs b/openstack_sdk/src/api/network/v2/network_ip_availability/list.rs index 084398e77..048492d2b 100644 --- a/openstack_sdk/src/api/network/v2/network_ip_availability/list.rs +++ b/openstack_sdk/src/api/network/v2/network_ip_availability/list.rs @@ -57,7 +57,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/network_segment_range/list.rs b/openstack_sdk/src/api/network/v2/network_segment_range/list.rs index 9014cd579..fe0e2ad16 100644 --- a/openstack_sdk/src/api/network/v2/network_segment_range/list.rs +++ b/openstack_sdk/src/api/network/v2/network_segment_range/list.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/network_segment_range/tag/list.rs b/openstack_sdk/src/api/network/v2/network_segment_range/tag/list.rs index 5cb2ef265..31ce9f1be 100644 --- a/openstack_sdk/src/api/network/v2/network_segment_range/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/network_segment_range/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/policy/packet_rate_limit_rule/list.rs b/openstack_sdk/src/api/network/v2/policy/packet_rate_limit_rule/list.rs index 86dc04938..cd0f22095 100644 --- a/openstack_sdk/src/api/network/v2/policy/packet_rate_limit_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/policy/packet_rate_limit_rule/list.rs @@ -41,7 +41,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/policy/tag/list.rs b/openstack_sdk/src/api/network/v2/policy/tag/list.rs index 26d36816f..3360e7115 100644 --- a/openstack_sdk/src/api/network/v2/policy/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/policy/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/port/binding/list.rs b/openstack_sdk/src/api/network/v2/port/binding/list.rs index f9aa1c428..01e29de0f 100644 --- a/openstack_sdk/src/api/network/v2/port/binding/list.rs +++ b/openstack_sdk/src/api/network/v2/port/binding/list.rs @@ -42,7 +42,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/port/list.rs b/openstack_sdk/src/api/network/v2/port/list.rs index bcf1291c5..53b541203 100644 --- a/openstack_sdk/src/api/network/v2/port/list.rs +++ b/openstack_sdk/src/api/network/v2/port/list.rs @@ -93,7 +93,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// mac_address query parameter for /v2.0/ports API #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/network/v2/port/tag/list.rs b/openstack_sdk/src/api/network/v2/port/tag/list.rs index 0ec98f2bf..b5dd658aa 100644 --- a/openstack_sdk/src/api/network/v2/port/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/port/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/alias_bandwidth_limit_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/alias_bandwidth_limit_rule/list.rs index a88ea7f86..c191eb248 100644 --- a/openstack_sdk/src/api/network/v2/qos/alias_bandwidth_limit_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/alias_bandwidth_limit_rule/list.rs @@ -39,7 +39,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/alias_dscp_marking_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/alias_dscp_marking_rule/list.rs index e60753a5d..e9b36f594 100644 --- a/openstack_sdk/src/api/network/v2/qos/alias_dscp_marking_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/alias_dscp_marking_rule/list.rs @@ -39,7 +39,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/alias_minimum_bandwidth_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/alias_minimum_bandwidth_rule/list.rs index 1157e6244..b12972fe0 100644 --- a/openstack_sdk/src/api/network/v2/qos/alias_minimum_bandwidth_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/alias_minimum_bandwidth_rule/list.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/alias_minimum_packet_rate_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/alias_minimum_packet_rate_rule/list.rs index ac6cb29ed..13e3618bf 100644 --- a/openstack_sdk/src/api/network/v2/qos/alias_minimum_packet_rate_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/alias_minimum_packet_rate_rule/list.rs @@ -40,7 +40,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/policy/bandwidth_limit_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/policy/bandwidth_limit_rule/list.rs index 8a0717713..e38cf5dd8 100644 --- a/openstack_sdk/src/api/network/v2/qos/policy/bandwidth_limit_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/policy/bandwidth_limit_rule/list.rs @@ -57,7 +57,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/policy/dscp_marking_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/policy/dscp_marking_rule/list.rs index 96f01d46d..7ffc52124 100644 --- a/openstack_sdk/src/api/network/v2/qos/policy/dscp_marking_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/policy/dscp_marking_rule/list.rs @@ -62,7 +62,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/policy/list.rs b/openstack_sdk/src/api/network/v2/qos/policy/list.rs index 04571b8e8..9aed95347 100644 --- a/openstack_sdk/src/api/network/v2/qos/policy/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/policy/list.rs @@ -66,7 +66,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/policy/minimum_bandwidth_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/policy/minimum_bandwidth_rule/list.rs index a741054cd..937b47fbc 100644 --- a/openstack_sdk/src/api/network/v2/qos/policy/minimum_bandwidth_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/policy/minimum_bandwidth_rule/list.rs @@ -62,7 +62,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/policy/minimum_packet_rate_rule/list.rs b/openstack_sdk/src/api/network/v2/qos/policy/minimum_packet_rate_rule/list.rs index e3b51fdde..00c5b1c1f 100644 --- a/openstack_sdk/src/api/network/v2/qos/policy/minimum_packet_rate_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/policy/minimum_packet_rate_rule/list.rs @@ -41,7 +41,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/qos/rule_type/list.rs b/openstack_sdk/src/api/network/v2/qos/rule_type/list.rs index 34ccf04e7..48de96d76 100644 --- a/openstack_sdk/src/api/network/v2/qos/rule_type/list.rs +++ b/openstack_sdk/src/api/network/v2/qos/rule_type/list.rs @@ -58,7 +58,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/quota/list.rs b/openstack_sdk/src/api/network/v2/quota/list.rs index 86ca96c3d..f540e69bb 100644 --- a/openstack_sdk/src/api/network/v2/quota/list.rs +++ b/openstack_sdk/src/api/network/v2/quota/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/rbac_policy/list.rs b/openstack_sdk/src/api/network/v2/rbac_policy/list.rs index e79cb165b..a7f3b7ed2 100644 --- a/openstack_sdk/src/api/network/v2/rbac_policy/list.rs +++ b/openstack_sdk/src/api/network/v2/rbac_policy/list.rs @@ -58,7 +58,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/router/conntrack_helper/list.rs b/openstack_sdk/src/api/network/v2/router/conntrack_helper/list.rs index ee3ce3cee..0a0a27123 100644 --- a/openstack_sdk/src/api/network/v2/router/conntrack_helper/list.rs +++ b/openstack_sdk/src/api/network/v2/router/conntrack_helper/list.rs @@ -59,7 +59,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/router/l3_agent/list.rs b/openstack_sdk/src/api/network/v2/router/l3_agent/list.rs index 64e8f3d78..dd5c42d38 100644 --- a/openstack_sdk/src/api/network/v2/router/l3_agent/list.rs +++ b/openstack_sdk/src/api/network/v2/router/l3_agent/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/router/list.rs b/openstack_sdk/src/api/network/v2/router/list.rs index 245724fe7..c8d9d999b 100644 --- a/openstack_sdk/src/api/network/v2/router/list.rs +++ b/openstack_sdk/src/api/network/v2/router/list.rs @@ -71,7 +71,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/router/tag/list.rs b/openstack_sdk/src/api/network/v2/router/tag/list.rs index f53f8c07e..055774b7a 100644 --- a/openstack_sdk/src/api/network/v2/router/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/router/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/security_group/list.rs b/openstack_sdk/src/api/network/v2/security_group/list.rs index 4b116d316..f746435e7 100644 --- a/openstack_sdk/src/api/network/v2/security_group/list.rs +++ b/openstack_sdk/src/api/network/v2/security_group/list.rs @@ -62,7 +62,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/security_group/tag/list.rs b/openstack_sdk/src/api/network/v2/security_group/tag/list.rs index 584de7533..af2523a8f 100644 --- a/openstack_sdk/src/api/network/v2/security_group/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/security_group/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/security_group_rule/list.rs b/openstack_sdk/src/api/network/v2/security_group_rule/list.rs index 854ce0154..90eb25698 100644 --- a/openstack_sdk/src/api/network/v2/security_group_rule/list.rs +++ b/openstack_sdk/src/api/network/v2/security_group_rule/list.rs @@ -74,7 +74,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/segment/list.rs b/openstack_sdk/src/api/network/v2/segment/list.rs index 18e5d0c0b..cf414b480 100644 --- a/openstack_sdk/src/api/network/v2/segment/list.rs +++ b/openstack_sdk/src/api/network/v2/segment/list.rs @@ -58,7 +58,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/service_profile/list.rs b/openstack_sdk/src/api/network/v2/service_profile/list.rs index e9cde7403..f360022a8 100644 --- a/openstack_sdk/src/api/network/v2/service_profile/list.rs +++ b/openstack_sdk/src/api/network/v2/service_profile/list.rs @@ -68,7 +68,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/service_provider/list.rs b/openstack_sdk/src/api/network/v2/service_provider/list.rs index cc6de9e68..cb656c05d 100644 --- a/openstack_sdk/src/api/network/v2/service_provider/list.rs +++ b/openstack_sdk/src/api/network/v2/service_provider/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/subnet/create.rs b/openstack_sdk/src/api/network/v2/subnet/create.rs index ec719737d..10191a0ef 100644 --- a/openstack_sdk/src/api/network/v2/subnet/create.rs +++ b/openstack_sdk/src/api/network/v2/subnet/create.rs @@ -194,7 +194,7 @@ pub struct Subnet<'a> { /// used. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) prefixlen: Option, + pub(crate) prefixlen: Option, /// The ID of a network segment the subnet is associated with. It is /// available when `segment` extension is enabled. diff --git a/openstack_sdk/src/api/network/v2/subnet/list.rs b/openstack_sdk/src/api/network/v2/subnet/list.rs index bf4c834b5..389740cd0 100644 --- a/openstack_sdk/src/api/network/v2/subnet/list.rs +++ b/openstack_sdk/src/api/network/v2/subnet/list.rs @@ -88,7 +88,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/subnet/tag/list.rs b/openstack_sdk/src/api/network/v2/subnet/tag/list.rs index a8191aed6..a922ae036 100644 --- a/openstack_sdk/src/api/network/v2/subnet/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/subnet/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/subnetpool/create.rs b/openstack_sdk/src/api/network/v2/subnetpool/create.rs index d8bffec31..69cb3bdf1 100644 --- a/openstack_sdk/src/api/network/v2/subnetpool/create.rs +++ b/openstack_sdk/src/api/network/v2/subnetpool/create.rs @@ -44,7 +44,7 @@ pub struct Subnetpool<'a> { /// `min_prefixlen`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) default_prefixlen: Option, + pub(crate) default_prefixlen: Option, /// A per-project quota on the prefix space that can be allocated from the /// subnet pool for project subnets. Default is no quota is enforced on @@ -54,7 +54,7 @@ pub struct Subnetpool<'a> { /// subnet pool have the same prefix quota applied. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) default_quota: Option, + pub(crate) default_quota: Option, /// A human-readable description for the resource. Default is an empty /// string. @@ -72,13 +72,13 @@ pub struct Subnetpool<'a> { /// `128`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_prefixlen: Option, + pub(crate) max_prefixlen: Option, /// The smallest prefix that can be allocated from a subnet pool. For IPv4 /// subnet pools, default is `8`. For IPv6 subnet pools, default is `64`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_prefixlen: Option, + pub(crate) min_prefixlen: Option, /// Human-readable name of the resource. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/subnetpool/list.rs b/openstack_sdk/src/api/network/v2/subnetpool/list.rs index 9dfaf2f9a..d9773a342 100644 --- a/openstack_sdk/src/api/network/v2/subnetpool/list.rs +++ b/openstack_sdk/src/api/network/v2/subnetpool/list.rs @@ -56,11 +56,11 @@ pub struct Request<'a> { /// default_prefixlen query parameter for /v2.0/subnetpools API #[builder(default)] - default_prefixlen: Option, + default_prefixlen: Option, /// default_quota query parameter for /v2.0/subnetpools API #[builder(default)] - default_quota: Option, + default_quota: Option, /// description query parameter for /v2.0/subnetpools API #[builder(default, setter(into))] @@ -83,7 +83,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 @@ -93,11 +93,11 @@ pub struct Request<'a> { /// max_prefixlen query parameter for /v2.0/subnetpools API #[builder(default)] - max_prefixlen: Option, + max_prefixlen: Option, /// min_prefixlen query parameter for /v2.0/subnetpools API #[builder(default)] - min_prefixlen: Option, + min_prefixlen: Option, /// name query parameter for /v2.0/subnetpools API #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/network/v2/subnetpool/set.rs b/openstack_sdk/src/api/network/v2/subnetpool/set.rs index b2b978340..1be54d677 100644 --- a/openstack_sdk/src/api/network/v2/subnetpool/set.rs +++ b/openstack_sdk/src/api/network/v2/subnetpool/set.rs @@ -44,7 +44,7 @@ pub struct Subnetpool<'a> { /// `min_prefixlen`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) default_prefixlen: Option, + pub(crate) default_prefixlen: Option, /// A per-project quota on the prefix space that can be allocated from the /// subnet pool for project subnets. Default is no quota is enforced on @@ -54,7 +54,7 @@ pub struct Subnetpool<'a> { /// subnet pool have the same prefix quota applied. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) default_quota: Option, + pub(crate) default_quota: Option, /// A human-readable description for the resource. Default is an empty /// string. @@ -72,13 +72,13 @@ pub struct Subnetpool<'a> { /// `128`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) max_prefixlen: Option, + pub(crate) max_prefixlen: Option, /// The smallest prefix that can be allocated from a subnet pool. For IPv4 /// subnet pools, default is `8`. For IPv6 subnet pools, default is `64`. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) min_prefixlen: Option, + pub(crate) min_prefixlen: Option, /// Human-readable name of the resource. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/subnetpool/tag/list.rs b/openstack_sdk/src/api/network/v2/subnetpool/tag/list.rs index 2be49b6a5..fd08d4717 100644 --- a/openstack_sdk/src/api/network/v2/subnetpool/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/subnetpool/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/trunk/tag/list.rs b/openstack_sdk/src/api/network/v2/trunk/tag/list.rs index e02421a2f..dfb7e8aee 100644 --- a/openstack_sdk/src/api/network/v2/trunk/tag/list.rs +++ b/openstack_sdk/src/api/network/v2/trunk/tag/list.rs @@ -31,7 +31,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/vpn/endpoint_group/list.rs b/openstack_sdk/src/api/network/v2/vpn/endpoint_group/list.rs index 8d2b947f6..a62a9eadd 100644 --- a/openstack_sdk/src/api/network/v2/vpn/endpoint_group/list.rs +++ b/openstack_sdk/src/api/network/v2/vpn/endpoint_group/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/vpn/ikepolicy/list.rs b/openstack_sdk/src/api/network/v2/vpn/ikepolicy/list.rs index 67c40c6b5..1c5bf3636 100644 --- a/openstack_sdk/src/api/network/v2/vpn/ikepolicy/list.rs +++ b/openstack_sdk/src/api/network/v2/vpn/ikepolicy/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/create.rs b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/create.rs index 89a74e961..8c320a047 100644 --- a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/create.rs +++ b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/create.rs @@ -97,7 +97,7 @@ pub struct IpsecSiteConnection<'a> { /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) mtu: Option, + pub(crate) mtu: Option, /// Human-readable name of the resource. Default is an empty string. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/list.rs b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/list.rs index 760369d11..17e3f52b8 100644 --- a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/list.rs +++ b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/set.rs b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/set.rs index f7bb525fb..a438a9afc 100644 --- a/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/set.rs +++ b/openstack_sdk/src/api/network/v2/vpn/ipsec_site_connection/set.rs @@ -87,7 +87,7 @@ pub struct IpsecSiteConnection<'a> { /// Minimum value is 68 for IPv4, and 1280 for IPv6. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) mtu: Option, + pub(crate) mtu: Option, /// Human-readable name of the resource. Default is an empty string. #[serde(skip_serializing_if = "Option::is_none")] diff --git a/openstack_sdk/src/api/network/v2/vpn/ipsecpolicy/list.rs b/openstack_sdk/src/api/network/v2/vpn/ipsecpolicy/list.rs index 088d2de33..bf9a2e802 100644 --- a/openstack_sdk/src/api/network/v2/vpn/ipsecpolicy/list.rs +++ b/openstack_sdk/src/api/network/v2/vpn/ipsecpolicy/list.rs @@ -50,7 +50,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/network/v2/vpn/vpnservice/list.rs b/openstack_sdk/src/api/network/v2/vpn/vpnservice/list.rs index a796aad40..e0c2ec84c 100644 --- a/openstack_sdk/src/api/network/v2/vpn/vpnservice/list.rs +++ b/openstack_sdk/src/api/network/v2/vpn/vpnservice/list.rs @@ -52,7 +52,7 @@ pub struct Request<'a> { /// use the ID of the last-seen item from the response as the marker /// parameter value in a subsequent limited request. #[builder(default)] - limit: Option, + limit: Option, /// 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 diff --git a/openstack_sdk/src/api/placement/v1/reshaper/create_134.rs b/openstack_sdk/src/api/placement/v1/reshaper/create_134.rs index 051915a21..110e16aca 100644 --- a/openstack_sdk/src/api/placement/v1/reshaper/create_134.rs +++ b/openstack_sdk/src/api/placement/v1/reshaper/create_134.rs @@ -151,7 +151,7 @@ pub struct InventoriesItem { #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) reserved: Option, + pub(crate) reserved: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/placement/v1/reshaper/create_138.rs b/openstack_sdk/src/api/placement/v1/reshaper/create_138.rs index 01adcf02a..5a986dfea 100644 --- a/openstack_sdk/src/api/placement/v1/reshaper/create_138.rs +++ b/openstack_sdk/src/api/placement/v1/reshaper/create_138.rs @@ -161,7 +161,7 @@ pub struct InventoriesItem { #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) reserved: Option, + pub(crate) reserved: Option, #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] diff --git a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/create.rs b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/create.rs index 96ff8eadd..6f0d345ec 100644 --- a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/create.rs +++ b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/create.rs @@ -61,7 +61,7 @@ pub struct InventoriesItem { /// The amount of the resource a provider has reserved for its own use. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) reserved: Option, + pub(crate) reserved: Option, /// A representation of the divisible amount of the resource that may be /// requested. For example, step_size = 5 means that only values divisible diff --git a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/replace.rs b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/replace.rs index a48d446d9..519bf64c3 100644 --- a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/replace.rs +++ b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/replace.rs @@ -63,7 +63,7 @@ pub struct InventoriesItem { /// The amount of the resource a provider has reserved for its own use. #[serde(skip_serializing_if = "Option::is_none")] #[builder(default, setter(into))] - pub(crate) reserved: Option, + pub(crate) reserved: Option, /// A representation of the divisible amount of the resource that may be /// requested. For example, step_size = 5 means that only values divisible diff --git a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/set.rs b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/set.rs index d607495be..92a4909f6 100644 --- a/openstack_sdk/src/api/placement/v1/resource_provider/inventory/set.rs +++ b/openstack_sdk/src/api/placement/v1/resource_provider/inventory/set.rs @@ -56,7 +56,7 @@ pub struct Request<'a> { /// The amount of the resource a provider has reserved for its own use. #[builder(default, setter(into))] - pub(crate) reserved: Option, + pub(crate) reserved: Option, /// A consistent view marker that assists with the management of concurrent /// resource provider updates. diff --git a/openstack_tui/src/cloud_worker/compute/v2/flavor/list_detailed.rs b/openstack_tui/src/cloud_worker/compute/v2/flavor/list_detailed.rs index e3bf38c2a..0f4c03447 100644 --- a/openstack_tui/src/cloud_worker/compute/v2/flavor/list_detailed.rs +++ b/openstack_tui/src/cloud_worker/compute/v2/flavor/list_detailed.rs @@ -34,7 +34,7 @@ pub struct ComputeFlavorList { #[builder(default)] pub is_public: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/compute/v2/hypervisor/list_detailed.rs b/openstack_tui/src/cloud_worker/compute/v2/hypervisor/list_detailed.rs index ba192f889..5515a572c 100644 --- a/openstack_tui/src/cloud_worker/compute/v2/hypervisor/list_detailed.rs +++ b/openstack_tui/src/cloud_worker/compute/v2/hypervisor/list_detailed.rs @@ -34,7 +34,7 @@ pub struct ComputeHypervisorList { #[builder(default)] pub hypervisor_hostname_pattern: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/compute/v2/server/instance_action/list.rs b/openstack_tui/src/cloud_worker/compute/v2/server/instance_action/list.rs index b4c99d70c..960cd853e 100644 --- a/openstack_tui/src/cloud_worker/compute/v2/server/instance_action/list.rs +++ b/openstack_tui/src/cloud_worker/compute/v2/server/instance_action/list.rs @@ -36,7 +36,7 @@ pub struct ComputeServerInstanceActionList { #[builder(default)] pub changes_since: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, pub server_id: String, diff --git a/openstack_tui/src/cloud_worker/compute/v2/server/list_detailed.rs b/openstack_tui/src/cloud_worker/compute/v2/server/list_detailed.rs index 416c09383..28ae0b50c 100644 --- a/openstack_tui/src/cloud_worker/compute/v2/server/list_detailed.rs +++ b/openstack_tui/src/cloud_worker/compute/v2/server/list_detailed.rs @@ -86,7 +86,7 @@ pub struct ComputeServerList { #[builder(default)] pub launched_at: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub locked: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/identity/v3/group/list.rs b/openstack_tui/src/cloud_worker/identity/v3/group/list.rs index 20b186d95..64eba79ec 100644 --- a/openstack_tui/src/cloud_worker/identity/v3/group/list.rs +++ b/openstack_tui/src/cloud_worker/identity/v3/group/list.rs @@ -36,7 +36,7 @@ pub struct IdentityGroupList { #[builder(default)] pub domain_name: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/identity/v3/project/list.rs b/openstack_tui/src/cloud_worker/identity/v3/project/list.rs index 9fa912c19..2487f0d6b 100644 --- a/openstack_tui/src/cloud_worker/identity/v3/project/list.rs +++ b/openstack_tui/src/cloud_worker/identity/v3/project/list.rs @@ -40,7 +40,7 @@ pub struct IdentityProjectList { #[builder(default)] pub is_domain: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/identity/v3/user/list.rs b/openstack_tui/src/cloud_worker/identity/v3/user/list.rs index f627ebc18..e4b619168 100644 --- a/openstack_tui/src/cloud_worker/identity/v3/user/list.rs +++ b/openstack_tui/src/cloud_worker/identity/v3/user/list.rs @@ -42,7 +42,7 @@ pub struct IdentityUserList { #[builder(default)] pub idp_name: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/network/v2/network/list.rs b/openstack_tui/src/cloud_worker/network/v2/network/list.rs index 0f0c4f6b2..a637d109d 100644 --- a/openstack_tui/src/cloud_worker/network/v2/network/list.rs +++ b/openstack_tui/src/cloud_worker/network/v2/network/list.rs @@ -40,11 +40,11 @@ pub struct NetworkNetworkList { #[builder(default)] pub is_default: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] - pub mtu: Option, + pub mtu: Option, #[builder(default)] pub name: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/network/v2/router/list.rs b/openstack_tui/src/cloud_worker/network/v2/router/list.rs index fe67a3264..d0f0cefdb 100644 --- a/openstack_tui/src/cloud_worker/network/v2/router/list.rs +++ b/openstack_tui/src/cloud_worker/network/v2/router/list.rs @@ -40,7 +40,7 @@ pub struct NetworkRouterList { #[builder(default)] pub id: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/network/v2/security_group/list.rs b/openstack_tui/src/cloud_worker/network/v2/security_group/list.rs index cda206235..6094856b5 100644 --- a/openstack_tui/src/cloud_worker/network/v2/security_group/list.rs +++ b/openstack_tui/src/cloud_worker/network/v2/security_group/list.rs @@ -36,7 +36,7 @@ pub struct NetworkSecurityGroupList { #[builder(default)] pub id: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/network/v2/security_group_rule/list.rs b/openstack_tui/src/cloud_worker/network/v2/security_group_rule/list.rs index 8e9e0e56b..8455d4cdf 100644 --- a/openstack_tui/src/cloud_worker/network/v2/security_group_rule/list.rs +++ b/openstack_tui/src/cloud_worker/network/v2/security_group_rule/list.rs @@ -44,7 +44,7 @@ pub struct NetworkSecurityGroupRuleList { #[builder(default)] pub name: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_tui/src/cloud_worker/network/v2/subnet/list.rs b/openstack_tui/src/cloud_worker/network/v2/subnet/list.rs index 212407bdc..af7c09f0f 100644 --- a/openstack_tui/src/cloud_worker/network/v2/subnet/list.rs +++ b/openstack_tui/src/cloud_worker/network/v2/subnet/list.rs @@ -48,7 +48,7 @@ pub struct NetworkSubnetList { #[builder(default)] pub ipv6_ra_mode: Option, #[builder(default)] - pub limit: Option, + pub limit: Option, #[builder(default)] pub marker: Option, #[builder(default)] diff --git a/openstack_types/data/compute/v2.100.yaml b/openstack_types/data/compute/v2.100.yaml index 83f0c84d1..126d578b4 100644 --- a/openstack_types/data/compute/v2.100.yaml +++ b/openstack_types/data/compute/v2.100.yaml @@ -12948,8 +12948,10 @@ components: type: string uptime: description: |- - The total uptime of the hypervisor and information about average load. Only - reported for active hosts where the virt driver supports this feature. + The response format of this api depends on the virt driver in use on a + given host. The libvirt driver returns the output of the uptime command + directly, the z/VM driver returns the ILP time. All other drivers + always return null. Note this value is cached and updated periodically. **New in version 2.88** type: string @@ -13199,8 +13201,10 @@ components: type: string uptime: description: |- - The total uptime of the hypervisor and information about average load. Only - reported for active hosts where the virt driver supports this feature. + The response format of this api depends on the virt driver in use on a + given host. The libvirt driver returns the output of the uptime command + directly, the z/VM driver returns the ILP time. All other drivers + always return null. Note this value is cached and updated periodically. **New in version 2.88** type: string @@ -21092,7 +21096,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21161,7 +21165,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -21509,7 +21513,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21578,7 +21582,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -21924,7 +21928,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21993,7 +21997,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -22347,7 +22351,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -22416,7 +22420,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -22780,7 +22784,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -22849,7 +22853,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -23208,7 +23212,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -23277,7 +23281,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -23638,7 +23642,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -23707,7 +23711,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24078,7 +24082,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -24147,7 +24151,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24526,7 +24530,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -24595,7 +24599,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24963,7 +24967,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25032,7 +25036,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -25410,7 +25414,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25479,7 +25483,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -25863,7 +25867,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25932,7 +25936,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -26326,7 +26330,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -26395,7 +26399,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -26794,7 +26798,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -26863,7 +26867,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -33312,7 +33316,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -33406,7 +33410,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -34013,7 +34017,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -34107,7 +34111,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -34700,7 +34704,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -34794,7 +34798,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -35401,7 +35405,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -35495,7 +35499,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -36112,7 +36116,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -36206,7 +36210,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -36818,7 +36822,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -36912,7 +36916,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -37521,7 +37525,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -37615,7 +37619,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -38234,7 +38238,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -38328,7 +38332,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -38967,7 +38971,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -39061,7 +39065,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -39683,7 +39687,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -39777,7 +39781,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -40417,7 +40421,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -40511,7 +40515,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -41157,7 +41161,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -41251,7 +41255,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -41919,7 +41923,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -42013,7 +42017,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -42699,7 +42703,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -42793,7 +42797,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 diff --git a/openstack_types/data/compute/v2.yaml b/openstack_types/data/compute/v2.yaml index 83f0c84d1..126d578b4 100644 --- a/openstack_types/data/compute/v2.yaml +++ b/openstack_types/data/compute/v2.yaml @@ -12948,8 +12948,10 @@ components: type: string uptime: description: |- - The total uptime of the hypervisor and information about average load. Only - reported for active hosts where the virt driver supports this feature. + The response format of this api depends on the virt driver in use on a + given host. The libvirt driver returns the output of the uptime command + directly, the z/VM driver returns the ILP time. All other drivers + always return null. Note this value is cached and updated periodically. **New in version 2.88** type: string @@ -13199,8 +13201,10 @@ components: type: string uptime: description: |- - The total uptime of the hypervisor and information about average load. Only - reported for active hosts where the virt driver supports this feature. + The response format of this api depends on the virt driver in use on a + given host. The libvirt driver returns the output of the uptime command + directly, the z/VM driver returns the ILP time. All other drivers + always return null. Note this value is cached and updated periodically. **New in version 2.88** type: string @@ -21092,7 +21096,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21161,7 +21165,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -21509,7 +21513,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21578,7 +21582,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -21924,7 +21928,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -21993,7 +21997,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -22347,7 +22351,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -22416,7 +22420,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -22780,7 +22784,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -22849,7 +22853,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -23208,7 +23212,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -23277,7 +23281,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -23638,7 +23642,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -23707,7 +23711,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24078,7 +24082,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -24147,7 +24151,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24526,7 +24530,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -24595,7 +24599,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -24963,7 +24967,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25032,7 +25036,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -25410,7 +25414,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25479,7 +25483,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -25863,7 +25867,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -25932,7 +25936,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -26326,7 +26330,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -26395,7 +26399,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -26794,7 +26798,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -26863,7 +26867,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -33312,7 +33316,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -33406,7 +33410,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -34013,7 +34017,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -34107,7 +34111,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -34700,7 +34704,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -34794,7 +34798,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -35401,7 +35405,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -35495,7 +35499,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -36112,7 +36116,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -36206,7 +36210,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -36818,7 +36822,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -36912,7 +36916,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -37521,7 +37525,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -37615,7 +37619,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -38234,7 +38238,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -38328,7 +38332,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -38967,7 +38971,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -39061,7 +39065,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -39683,7 +39687,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -39777,7 +39781,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -40417,7 +40421,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -40511,7 +40515,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -41157,7 +41161,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -41251,7 +41255,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -41919,7 +41923,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -42013,7 +42017,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 @@ -42699,7 +42703,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string no_device: {} snapshot_id: @@ -42793,7 +42797,7 @@ components: device_name: maxLength: 255 minLength: 1 - pattern: ^[a-zA-Z0-9._-r/]*$ + pattern: ^[a-zA-Z0-9._/-]*$ type: string device_type: maxLength: 255 diff --git a/openstack_types/src/compute/v2/hypervisor/response/get.rs b/openstack_types/src/compute/v2/hypervisor/response/get.rs index 13a2c2aa8..006372a50 100644 --- a/openstack_types/src/compute/v2/hypervisor/response/get.rs +++ b/openstack_types/src/compute/v2/hypervisor/response/get.rs @@ -165,9 +165,10 @@ pub struct HypervisorResponse { #[structable(optional, serialize)] pub status: Option, - /// The total uptime of the hypervisor and information about average load. - /// Only reported for active hosts where the virt driver supports this - /// feature. + /// The response format of this api depends on the virt driver in use on a + /// given host. The libvirt driver returns the output of the uptime command + /// directly, the z/VM driver returns the ILP time. All other drivers + /// always return null. Note this value is cached and updated periodically. /// /// **New in version 2.88** #[serde(default)] diff --git a/openstack_types/src/compute/v2/hypervisor/response/list_detailed.rs b/openstack_types/src/compute/v2/hypervisor/response/list_detailed.rs index aada21b7b..f773b49eb 100644 --- a/openstack_types/src/compute/v2/hypervisor/response/list_detailed.rs +++ b/openstack_types/src/compute/v2/hypervisor/response/list_detailed.rs @@ -165,9 +165,10 @@ pub struct HypervisorResponse { #[structable(optional, serialize)] pub status: Option, - /// The total uptime of the hypervisor and information about average load. - /// Only reported for active hosts where the virt driver supports this - /// feature. + /// The response format of this api depends on the virt driver in use on a + /// given host. The libvirt driver returns the output of the uptime command + /// directly, the z/VM driver returns the ILP time. All other drivers + /// always return null. Note this value is cached and updated periodically. /// /// **New in version 2.88** #[serde(default)] diff --git a/openstack_types/src/identity/v3/os_trust/trust/response/create.rs b/openstack_types/src/identity/v3/os_trust/trust/response/create.rs index d99afac4e..a046ee346 100644 --- a/openstack_types/src/identity/v3/os_trust/trust/response/create.rs +++ b/openstack_types/src/identity/v3/os_trust/trust/response/create.rs @@ -94,7 +94,7 @@ pub struct TrustResponse { /// redelegatable, regardless of the value of allow_redelegation. #[serde(default)] #[structable(optional)] - pub redelegation_count: Option, + pub redelegation_count: Option, /// 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 diff --git a/openstack_types/src/identity/v3/os_trust/trust/response/get.rs b/openstack_types/src/identity/v3/os_trust/trust/response/get.rs index d5d6ae94b..efa1d2a0f 100644 --- a/openstack_types/src/identity/v3/os_trust/trust/response/get.rs +++ b/openstack_types/src/identity/v3/os_trust/trust/response/get.rs @@ -94,7 +94,7 @@ pub struct TrustResponse { /// redelegatable, regardless of the value of allow_redelegation. #[serde(default)] #[structable(optional)] - pub redelegation_count: Option, + pub redelegation_count: Option, /// 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 diff --git a/openstack_types/src/identity/v3/os_trust/trust/response/list.rs b/openstack_types/src/identity/v3/os_trust/trust/response/list.rs index acd92c543..86dd95325 100644 --- a/openstack_types/src/identity/v3/os_trust/trust/response/list.rs +++ b/openstack_types/src/identity/v3/os_trust/trust/response/list.rs @@ -89,7 +89,7 @@ pub struct TrustResponse { /// redelegatable, regardless of the value of allow_redelegation. #[serde(default)] #[structable(optional, wide)] - pub redelegation_count: Option, + pub redelegation_count: Option, /// 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 diff --git a/openstack_types/src/image/v2/metadef/namespace/object/response/create.rs b/openstack_types/src/image/v2/metadef/namespace/object/response/create.rs index 2d9205a8b..73dd09904 100644 --- a/openstack_types/src/image/v2/metadef/namespace/object/response/create.rs +++ b/openstack_types/src/image/v2/metadef/namespace/object/response/create.rs @@ -125,15 +125,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/object/response/get.rs b/openstack_types/src/image/v2/metadef/namespace/object/response/get.rs index 31201f9aa..568844f2d 100644 --- a/openstack_types/src/image/v2/metadef/namespace/object/response/get.rs +++ b/openstack_types/src/image/v2/metadef/namespace/object/response/get.rs @@ -125,15 +125,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/object/response/list.rs b/openstack_types/src/image/v2/metadef/namespace/object/response/list.rs index 6a31a454d..61458f163 100644 --- a/openstack_types/src/image/v2/metadef/namespace/object/response/list.rs +++ b/openstack_types/src/image/v2/metadef/namespace/object/response/list.rs @@ -125,15 +125,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/object/response/set.rs b/openstack_types/src/image/v2/metadef/namespace/object/response/set.rs index e5051a8ea..2c9e6db6d 100644 --- a/openstack_types/src/image/v2/metadef/namespace/object/response/set.rs +++ b/openstack_types/src/image/v2/metadef/namespace/object/response/set.rs @@ -125,15 +125,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/property/response/create.rs b/openstack_types/src/image/v2/metadef/namespace/property/response/create.rs index 20a48c6d2..0e695be29 100644 --- a/openstack_types/src/image/v2/metadef/namespace/property/response/create.rs +++ b/openstack_types/src/image/v2/metadef/namespace/property/response/create.rs @@ -49,11 +49,11 @@ pub struct PropertyResponse { #[serde(default, rename = "maxItems")] #[structable(optional, title = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] #[structable(optional, title = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] #[structable(optional)] diff --git a/openstack_types/src/image/v2/metadef/namespace/property/response/get.rs b/openstack_types/src/image/v2/metadef/namespace/property/response/get.rs index 34ba38bb8..61c88caa2 100644 --- a/openstack_types/src/image/v2/metadef/namespace/property/response/get.rs +++ b/openstack_types/src/image/v2/metadef/namespace/property/response/get.rs @@ -49,11 +49,11 @@ pub struct PropertyResponse { #[serde(default, rename = "maxItems")] #[structable(optional, title = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] #[structable(optional, title = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] #[structable(optional)] diff --git a/openstack_types/src/image/v2/metadef/namespace/property/response/set.rs b/openstack_types/src/image/v2/metadef/namespace/property/response/set.rs index fb81f95ca..84ef4e635 100644 --- a/openstack_types/src/image/v2/metadef/namespace/property/response/set.rs +++ b/openstack_types/src/image/v2/metadef/namespace/property/response/set.rs @@ -49,11 +49,11 @@ pub struct PropertyResponse { #[serde(default, rename = "maxItems")] #[structable(optional, title = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] #[structable(optional, title = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] #[structable(optional)] diff --git a/openstack_types/src/image/v2/metadef/namespace/response/create.rs b/openstack_types/src/image/v2/metadef/namespace/response/create.rs index 1c66ff040..0428824d5 100644 --- a/openstack_types/src/image/v2/metadef/namespace/response/create.rs +++ b/openstack_types/src/image/v2/metadef/namespace/response/create.rs @@ -155,15 +155,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/response/get.rs b/openstack_types/src/image/v2/metadef/namespace/response/get.rs index 61f9dd57e..104bc0490 100644 --- a/openstack_types/src/image/v2/metadef/namespace/response/get.rs +++ b/openstack_types/src/image/v2/metadef/namespace/response/get.rs @@ -155,15 +155,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/response/list.rs b/openstack_types/src/image/v2/metadef/namespace/response/list.rs index ab47e5bf0..95aecbd5a 100644 --- a/openstack_types/src/image/v2/metadef/namespace/response/list.rs +++ b/openstack_types/src/image/v2/metadef/namespace/response/list.rs @@ -155,15 +155,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/image/v2/metadef/namespace/response/set.rs b/openstack_types/src/image/v2/metadef/namespace/response/set.rs index b62d721a0..507c2b5db 100644 --- a/openstack_types/src/image/v2/metadef/namespace/response/set.rs +++ b/openstack_types/src/image/v2/metadef/namespace/response/set.rs @@ -155,15 +155,15 @@ pub struct Properties { #[serde(default)] pub maximum: Option, #[serde(default, rename = "maxItems")] - pub max_items: Option, + pub max_items: Option, #[serde(default, rename = "maxLength")] - pub max_length: Option, + pub max_length: Option, #[serde(default)] pub minimum: Option, #[serde(default, rename = "minItems")] - pub min_items: Option, + pub min_items: Option, #[serde(default, rename = "minLength")] - pub min_length: Option, + pub min_length: Option, #[serde(default)] pub name: Option, #[serde(default)] diff --git a/openstack_types/src/placement/v1/resource_provider/inventory/response/create.rs b/openstack_types/src/placement/v1/resource_provider/inventory/response/create.rs index a18538aeb..845cfe7f0 100644 --- a/openstack_types/src/placement/v1/resource_provider/inventory/response/create.rs +++ b/openstack_types/src/placement/v1/resource_provider/inventory/response/create.rs @@ -43,7 +43,7 @@ pub struct InventoriesItem { #[serde(default)] pub min_unit: Option, #[serde(default)] - pub reserved: Option, + pub reserved: Option, #[serde(default)] pub step_size: Option, pub total: i32, diff --git a/openstack_types/src/placement/v1/resource_provider/inventory/response/get.rs b/openstack_types/src/placement/v1/resource_provider/inventory/response/get.rs index f5266f09e..cc0166708 100644 --- a/openstack_types/src/placement/v1/resource_provider/inventory/response/get.rs +++ b/openstack_types/src/placement/v1/resource_provider/inventory/response/get.rs @@ -50,7 +50,7 @@ pub struct InventoryResponse { /// The amount of the resource a provider has reserved for its own use. #[serde(default)] #[structable(optional)] - pub reserved: Option, + pub reserved: Option, /// A consistent view marker that assists with the management of concurrent /// resource provider updates. diff --git a/openstack_types/src/placement/v1/resource_provider/inventory/response/list.rs b/openstack_types/src/placement/v1/resource_provider/inventory/response/list.rs index 4b95ed188..36f994ce8 100644 --- a/openstack_types/src/placement/v1/resource_provider/inventory/response/list.rs +++ b/openstack_types/src/placement/v1/resource_provider/inventory/response/list.rs @@ -43,7 +43,7 @@ pub struct InventoriesItem { #[serde(default)] pub min_unit: Option, #[serde(default)] - pub reserved: Option, + pub reserved: Option, #[serde(default)] pub step_size: Option, pub total: i32, diff --git a/openstack_types/src/placement/v1/resource_provider/inventory/response/replace.rs b/openstack_types/src/placement/v1/resource_provider/inventory/response/replace.rs index c61836612..5e838643a 100644 --- a/openstack_types/src/placement/v1/resource_provider/inventory/response/replace.rs +++ b/openstack_types/src/placement/v1/resource_provider/inventory/response/replace.rs @@ -43,7 +43,7 @@ pub struct InventoriesItem { #[serde(default)] pub min_unit: Option, #[serde(default)] - pub reserved: Option, + pub reserved: Option, #[serde(default)] pub step_size: Option, pub total: i32, diff --git a/openstack_types/src/placement/v1/resource_provider/inventory/response/set.rs b/openstack_types/src/placement/v1/resource_provider/inventory/response/set.rs index 145d6f98c..3202f90f7 100644 --- a/openstack_types/src/placement/v1/resource_provider/inventory/response/set.rs +++ b/openstack_types/src/placement/v1/resource_provider/inventory/response/set.rs @@ -50,7 +50,7 @@ pub struct InventoryResponse { /// The amount of the resource a provider has reserved for its own use. #[serde(default)] #[structable(optional)] - pub reserved: Option, + pub reserved: Option, /// A consistent view marker that assists with the management of concurrent /// resource provider updates.