pub struct RemoveWebAppRequest {
pub allow_missing: Option<bool>,
pub etag: Option<String>,
pub immediate: Option<bool>,
pub validate_only: Option<bool>,
}Expand description
There is no detailed description.
§Activities
This type is used in activities, which are methods you may call on this type or where this type is involved in. The list links the activity name, along with information about where it is used (one of request and response).
- web apps remove projects (request)
Fields§
§allow_missing: Option<bool>If set to true, and the App is not found, the request will succeed but no action will be taken on the server.
etag: Option<String>Checksum provided in the WebApp resource. If provided, this checksum ensures that the client has an up-to-date value before proceeding.
immediate: Option<bool>Determines whether to immediately delete the WebApp. If set to true, the App is immediately deleted from the Project and cannot be undeleted (that is, restored to the Project). If not set, defaults to false, which means the App will be set to expire in 30 days. Within the 30 days, the App may be restored to the Project using UndeleteWebApp
validate_only: Option<bool>If set to true, the request is only validated. The App will not be removed.
Trait Implementations§
Source§impl Clone for RemoveWebAppRequest
impl Clone for RemoveWebAppRequest
Source§fn clone(&self) -> RemoveWebAppRequest
fn clone(&self) -> RemoveWebAppRequest
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source. Read more