[][src]Struct camunda_client::models::multi_form_deployment_dto::MultiFormDeploymentDto

pub struct MultiFormDeploymentDto {
    pub tenant_id: Option<String>,
    pub deployment_source: Option<String>,
    pub deploy_changed_only: Option<bool>,
    pub enable_duplicate_filtering: Option<bool>,
    pub deployment_name: Option<String>,
    pub data: Option<PathBuf>,
}

Fields

tenant_id: Option<String>

The tenant id for the deployment to be created.

deployment_source: Option<String>

The source for the deployment to be created.

deploy_changed_only: Option<bool>

A flag indicating whether the process engine should perform duplicate checking on a per-resource basis. If set to true, only those resources that have actually changed are deployed. Checks are made against resources included previous deployments of the same name and only against the latest versions of those resources. If set to true, the option enable-duplicate-filtering is overridden and set to true.

enable_duplicate_filtering: Option<bool>

A flag indicating whether the process engine should perform duplicate checking for the deployment or not. This allows you to check if a deployment with the same name and the same resouces already exists and if true, not create a new deployment but instead return the existing deployment. The default value is false.

deployment_name: Option<String>

The name for the deployment to be created.

data: Option<PathBuf>

The binary data to create the deployment resource. It is possible to have more than one form part with different form part names for the binary data to create a deployment.

Implementations

impl MultiFormDeploymentDto[src]

Trait Implementations

impl Clone for MultiFormDeploymentDto[src]

impl Debug for MultiFormDeploymentDto[src]

impl<'de> Deserialize<'de> for MultiFormDeploymentDto[src]

impl PartialEq<MultiFormDeploymentDto> for MultiFormDeploymentDto[src]

impl Serialize for MultiFormDeploymentDto[src]

impl StructuralPartialEq for MultiFormDeploymentDto[src]

Auto Trait Implementations

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> DeserializeOwned for T where
    T: for<'de> Deserialize<'de>, 
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 

type Err = <U as TryFrom<T>>::Err