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

com.pulumi.libvirt.inputs.DomainXmlArgs Maven / Gradle / Ivy

There is a newer version: 0.6.0-alpha.1732600491
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.libvirt.inputs;

import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


public final class DomainXmlArgs extends com.pulumi.resources.ResourceArgs {

    public static final DomainXmlArgs Empty = new DomainXmlArgs();

    @Import(name="xslt")
    private @Nullable Output xslt;

    public Optional> xslt() {
        return Optional.ofNullable(this.xslt);
    }

    private DomainXmlArgs() {}

    private DomainXmlArgs(DomainXmlArgs $) {
        this.xslt = $.xslt;
    }

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

    public static final class Builder {
        private DomainXmlArgs $;

        public Builder() {
            $ = new DomainXmlArgs();
        }

        public Builder(DomainXmlArgs defaults) {
            $ = new DomainXmlArgs(Objects.requireNonNull(defaults));
        }

        public Builder xslt(@Nullable Output xslt) {
            $.xslt = xslt;
            return this;
        }

        public Builder xslt(String xslt) {
            return xslt(Output.of(xslt));
        }

        public DomainXmlArgs build() {
            return $;
        }
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy