pub trait DeleteResourcePoolBucketGroupQoSInfoOps {
// Required method
fn delete_resource_pool_bucket_group_qos_info(
&self,
resource_pool: impl Into<String>,
resource_pool_bucket_group: impl Into<String>,
) -> impl Future<Output = Result<()>>;
}Required Methods§
Sourcefn delete_resource_pool_bucket_group_qos_info(
&self,
resource_pool: impl Into<String>,
resource_pool_bucket_group: impl Into<String>,
) -> impl Future<Output = Result<()>>
fn delete_resource_pool_bucket_group_qos_info( &self, resource_pool: impl Into<String>, resource_pool_bucket_group: impl Into<String>, ) -> impl Future<Output = Result<()>>
Delete QoS configuration for a bucket-group inside a resource pool.
Official document: https://www.alibabacloud.com/help/en/oss/developer-reference/deleteresourcepoolbucketgroupqosinfo
Dyn Compatibility§
This trait is not dyn compatible.
In older versions of Rust, dyn compatibility was called "object safety", so this trait is not object safe.