All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.pulumi.azurenative.integrationspaces.outputs.BusinessProcessDevelopmentArtifactPropertiesResponse Maven / Gradle / Ivy

There is a newer version: 2.89.2
Show newest version
// *** WARNING: this file was generated by pulumi-java-gen. ***
// *** Do not edit by hand unless you're certain you know what you are doing! ***

package com.pulumi.azurenative.integrationspaces.outputs;

import com.pulumi.azurenative.integrationspaces.outputs.BusinessProcessIdentifierResponse;
import com.pulumi.azurenative.integrationspaces.outputs.BusinessProcessMappingItemResponse;
import com.pulumi.azurenative.integrationspaces.outputs.BusinessProcessStageResponse;
import com.pulumi.azurenative.integrationspaces.outputs.TrackingProfileDefinitionResponse;
import com.pulumi.core.annotations.CustomType;
import java.lang.String;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;

@CustomType
public final class BusinessProcessDevelopmentArtifactPropertiesResponse {
    /**
     * @return The business process mapping.
     * 
     */
    private @Nullable Map businessProcessMapping;
    /**
     * @return The business process stages.
     * 
     */
    private @Nullable Map businessProcessStages;
    /**
     * @return The description of the business process.
     * 
     */
    private @Nullable String description;
    /**
     * @return The business process identifier.
     * 
     */
    private @Nullable BusinessProcessIdentifierResponse identifier;
    /**
     * @return The tracking profile for the business process.
     * 
     */
    private @Nullable Map trackingProfiles;

    private BusinessProcessDevelopmentArtifactPropertiesResponse() {}
    /**
     * @return The business process mapping.
     * 
     */
    public Map businessProcessMapping() {
        return this.businessProcessMapping == null ? Map.of() : this.businessProcessMapping;
    }
    /**
     * @return The business process stages.
     * 
     */
    public Map businessProcessStages() {
        return this.businessProcessStages == null ? Map.of() : this.businessProcessStages;
    }
    /**
     * @return The description of the business process.
     * 
     */
    public Optional description() {
        return Optional.ofNullable(this.description);
    }
    /**
     * @return The business process identifier.
     * 
     */
    public Optional identifier() {
        return Optional.ofNullable(this.identifier);
    }
    /**
     * @return The tracking profile for the business process.
     * 
     */
    public Map trackingProfiles() {
        return this.trackingProfiles == null ? Map.of() : this.trackingProfiles;
    }

    public static Builder builder() {
        return new Builder();
    }

    public static Builder builder(BusinessProcessDevelopmentArtifactPropertiesResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Map businessProcessMapping;
        private @Nullable Map businessProcessStages;
        private @Nullable String description;
        private @Nullable BusinessProcessIdentifierResponse identifier;
        private @Nullable Map trackingProfiles;
        public Builder() {}
        public Builder(BusinessProcessDevelopmentArtifactPropertiesResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.businessProcessMapping = defaults.businessProcessMapping;
    	      this.businessProcessStages = defaults.businessProcessStages;
    	      this.description = defaults.description;
    	      this.identifier = defaults.identifier;
    	      this.trackingProfiles = defaults.trackingProfiles;
        }

        @CustomType.Setter
        public Builder businessProcessMapping(@Nullable Map businessProcessMapping) {

            this.businessProcessMapping = businessProcessMapping;
            return this;
        }
        @CustomType.Setter
        public Builder businessProcessStages(@Nullable Map businessProcessStages) {

            this.businessProcessStages = businessProcessStages;
            return this;
        }
        @CustomType.Setter
        public Builder description(@Nullable String description) {

            this.description = description;
            return this;
        }
        @CustomType.Setter
        public Builder identifier(@Nullable BusinessProcessIdentifierResponse identifier) {

            this.identifier = identifier;
            return this;
        }
        @CustomType.Setter
        public Builder trackingProfiles(@Nullable Map trackingProfiles) {

            this.trackingProfiles = trackingProfiles;
            return this;
        }
        public BusinessProcessDevelopmentArtifactPropertiesResponse build() {
            final var _resultValue = new BusinessProcessDevelopmentArtifactPropertiesResponse();
            _resultValue.businessProcessMapping = businessProcessMapping;
            _resultValue.businessProcessStages = businessProcessStages;
            _resultValue.description = description;
            _resultValue.identifier = identifier;
            _resultValue.trackingProfiles = trackingProfiles;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy