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

com.pulumi.azurenative.migrate.outputs.AutomationArtifactResponse Maven / Gradle / Ivy

There is a newer version: 2.82.0
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.migrate.outputs;

import com.pulumi.azurenative.migrate.outputs.AzureFileShareHydrationProfileResponse;
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 AutomationArtifactResponse {
    /**
     * @return Gets or sets the artifacts.
     * 
     */
    private @Nullable Map artifacts;
    /**
     * @return Azure file share profile for hydration of application folders not mounted on
     * the container file system.
     * 
     */
    private @Nullable AzureFileShareHydrationProfileResponse azureFileShareProfile;
    /**
     * @return Gets or sets the status of automation artifacts.
     * 
     */
    private @Nullable String status;

    private AutomationArtifactResponse() {}
    /**
     * @return Gets or sets the artifacts.
     * 
     */
    public Map artifacts() {
        return this.artifacts == null ? Map.of() : this.artifacts;
    }
    /**
     * @return Azure file share profile for hydration of application folders not mounted on
     * the container file system.
     * 
     */
    public Optional azureFileShareProfile() {
        return Optional.ofNullable(this.azureFileShareProfile);
    }
    /**
     * @return Gets or sets the status of automation artifacts.
     * 
     */
    public Optional status() {
        return Optional.ofNullable(this.status);
    }

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

    public static Builder builder(AutomationArtifactResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private @Nullable Map artifacts;
        private @Nullable AzureFileShareHydrationProfileResponse azureFileShareProfile;
        private @Nullable String status;
        public Builder() {}
        public Builder(AutomationArtifactResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.artifacts = defaults.artifacts;
    	      this.azureFileShareProfile = defaults.azureFileShareProfile;
    	      this.status = defaults.status;
        }

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

            this.artifacts = artifacts;
            return this;
        }
        @CustomType.Setter
        public Builder azureFileShareProfile(@Nullable AzureFileShareHydrationProfileResponse azureFileShareProfile) {

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

            this.status = status;
            return this;
        }
        public AutomationArtifactResponse build() {
            final var _resultValue = new AutomationArtifactResponse();
            _resultValue.artifacts = artifacts;
            _resultValue.azureFileShareProfile = azureFileShareProfile;
            _resultValue.status = status;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy