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

com.pulumi.azurenative.cache.inputs.GetPatchSchedulePlainArgs 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.cache.inputs;

import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;


public final class GetPatchSchedulePlainArgs extends com.pulumi.resources.InvokeArgs {

    public static final GetPatchSchedulePlainArgs Empty = new GetPatchSchedulePlainArgs();

    /**
     * Default string modeled as parameter for auto generation to work correctly.
     * 
     */
    @Import(name="default", required=true)
    private String default_;

    /**
     * @return Default string modeled as parameter for auto generation to work correctly.
     * 
     */
    public String default_() {
        return this.default_;
    }

    /**
     * The name of the redis cache.
     * 
     */
    @Import(name="name", required=true)
    private String name;

    /**
     * @return The name of the redis cache.
     * 
     */
    public String name() {
        return this.name;
    }

    /**
     * The name of the resource group.
     * 
     */
    @Import(name="resourceGroupName", required=true)
    private String resourceGroupName;

    /**
     * @return The name of the resource group.
     * 
     */
    public String resourceGroupName() {
        return this.resourceGroupName;
    }

    private GetPatchSchedulePlainArgs() {}

    private GetPatchSchedulePlainArgs(GetPatchSchedulePlainArgs $) {
        this.default_ = $.default_;
        this.name = $.name;
        this.resourceGroupName = $.resourceGroupName;
    }

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

    public static final class Builder {
        private GetPatchSchedulePlainArgs $;

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

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

        /**
         * @param default_ Default string modeled as parameter for auto generation to work correctly.
         * 
         * @return builder
         * 
         */
        public Builder default_(String default_) {
            $.default_ = default_;
            return this;
        }

        /**
         * @param name The name of the redis cache.
         * 
         * @return builder
         * 
         */
        public Builder name(String name) {
            $.name = name;
            return this;
        }

        /**
         * @param resourceGroupName The name of the resource group.
         * 
         * @return builder
         * 
         */
        public Builder resourceGroupName(String resourceGroupName) {
            $.resourceGroupName = resourceGroupName;
            return this;
        }

        public GetPatchSchedulePlainArgs build() {
            if ($.default_ == null) {
                throw new MissingRequiredPropertyException("GetPatchSchedulePlainArgs", "default_");
            }
            if ($.name == null) {
                throw new MissingRequiredPropertyException("GetPatchSchedulePlainArgs", "name");
            }
            if ($.resourceGroupName == null) {
                throw new MissingRequiredPropertyException("GetPatchSchedulePlainArgs", "resourceGroupName");
            }
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy