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

com.pulumi.azurenative.machinelearningservices.outputs.AccountKeyDatastoreCredentialsResponse 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.machinelearningservices.outputs;

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

@CustomType
public final class AccountKeyDatastoreCredentialsResponse {
    /**
     * @return Enum to determine the datastore credentials type.
     * Expected value is 'AccountKey'.
     * 
     */
    private String credentialsType;

    private AccountKeyDatastoreCredentialsResponse() {}
    /**
     * @return Enum to determine the datastore credentials type.
     * Expected value is 'AccountKey'.
     * 
     */
    public String credentialsType() {
        return this.credentialsType;
    }

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

    public static Builder builder(AccountKeyDatastoreCredentialsResponse defaults) {
        return new Builder(defaults);
    }
    @CustomType.Builder
    public static final class Builder {
        private String credentialsType;
        public Builder() {}
        public Builder(AccountKeyDatastoreCredentialsResponse defaults) {
    	      Objects.requireNonNull(defaults);
    	      this.credentialsType = defaults.credentialsType;
        }

        @CustomType.Setter
        public Builder credentialsType(String credentialsType) {
            if (credentialsType == null) {
              throw new MissingRequiredPropertyException("AccountKeyDatastoreCredentialsResponse", "credentialsType");
            }
            this.credentialsType = credentialsType;
            return this;
        }
        public AccountKeyDatastoreCredentialsResponse build() {
            final var _resultValue = new AccountKeyDatastoreCredentialsResponse();
            _resultValue.credentialsType = credentialsType;
            return _resultValue;
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy