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

com.pulumi.azurenative.dataprotection.inputs.SecretStoreBasedAuthCredentialsArgs 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.dataprotection.inputs;

import com.pulumi.azurenative.dataprotection.inputs.SecretStoreResourceArgs;
import com.pulumi.core.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.core.internal.Codegen;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;


/**
 * Secret store based authentication credentials.
 * 
 */
public final class SecretStoreBasedAuthCredentialsArgs extends com.pulumi.resources.ResourceArgs {

    public static final SecretStoreBasedAuthCredentialsArgs Empty = new SecretStoreBasedAuthCredentialsArgs();

    /**
     * Type of the specific object - used for deserializing
     * Expected value is 'SecretStoreBasedAuthCredentials'.
     * 
     */
    @Import(name="objectType", required=true)
    private Output objectType;

    /**
     * @return Type of the specific object - used for deserializing
     * Expected value is 'SecretStoreBasedAuthCredentials'.
     * 
     */
    public Output objectType() {
        return this.objectType;
    }

    /**
     * Secret store resource
     * 
     */
    @Import(name="secretStoreResource")
    private @Nullable Output secretStoreResource;

    /**
     * @return Secret store resource
     * 
     */
    public Optional> secretStoreResource() {
        return Optional.ofNullable(this.secretStoreResource);
    }

    private SecretStoreBasedAuthCredentialsArgs() {}

    private SecretStoreBasedAuthCredentialsArgs(SecretStoreBasedAuthCredentialsArgs $) {
        this.objectType = $.objectType;
        this.secretStoreResource = $.secretStoreResource;
    }

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

    public static final class Builder {
        private SecretStoreBasedAuthCredentialsArgs $;

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

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

        /**
         * @param objectType Type of the specific object - used for deserializing
         * Expected value is 'SecretStoreBasedAuthCredentials'.
         * 
         * @return builder
         * 
         */
        public Builder objectType(Output objectType) {
            $.objectType = objectType;
            return this;
        }

        /**
         * @param objectType Type of the specific object - used for deserializing
         * Expected value is 'SecretStoreBasedAuthCredentials'.
         * 
         * @return builder
         * 
         */
        public Builder objectType(String objectType) {
            return objectType(Output.of(objectType));
        }

        /**
         * @param secretStoreResource Secret store resource
         * 
         * @return builder
         * 
         */
        public Builder secretStoreResource(@Nullable Output secretStoreResource) {
            $.secretStoreResource = secretStoreResource;
            return this;
        }

        /**
         * @param secretStoreResource Secret store resource
         * 
         * @return builder
         * 
         */
        public Builder secretStoreResource(SecretStoreResourceArgs secretStoreResource) {
            return secretStoreResource(Output.of(secretStoreResource));
        }

        public SecretStoreBasedAuthCredentialsArgs build() {
            $.objectType = Codegen.stringProp("objectType").output().arg($.objectType).require();
            return $;
        }
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy