
com.pulumi.azurenative.machinelearningservices.inputs.NoneDatastoreCredentialsArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of azure-native Show documentation
Show all versions of azure-native Show documentation
A native Pulumi package for creating and managing Azure resources.
// *** 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.inputs;
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;
/**
* Empty/none datastore credentials.
*
*/
public final class NoneDatastoreCredentialsArgs extends com.pulumi.resources.ResourceArgs {
public static final NoneDatastoreCredentialsArgs Empty = new NoneDatastoreCredentialsArgs();
/**
* Enum to determine the datastore credentials type.
* Expected value is 'None'.
*
*/
@Import(name="credentialsType", required=true)
private Output credentialsType;
/**
* @return Enum to determine the datastore credentials type.
* Expected value is 'None'.
*
*/
public Output credentialsType() {
return this.credentialsType;
}
private NoneDatastoreCredentialsArgs() {}
private NoneDatastoreCredentialsArgs(NoneDatastoreCredentialsArgs $) {
this.credentialsType = $.credentialsType;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(NoneDatastoreCredentialsArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private NoneDatastoreCredentialsArgs $;
public Builder() {
$ = new NoneDatastoreCredentialsArgs();
}
public Builder(NoneDatastoreCredentialsArgs defaults) {
$ = new NoneDatastoreCredentialsArgs(Objects.requireNonNull(defaults));
}
/**
* @param credentialsType Enum to determine the datastore credentials type.
* Expected value is 'None'.
*
* @return builder
*
*/
public Builder credentialsType(Output credentialsType) {
$.credentialsType = credentialsType;
return this;
}
/**
* @param credentialsType Enum to determine the datastore credentials type.
* Expected value is 'None'.
*
* @return builder
*
*/
public Builder credentialsType(String credentialsType) {
return credentialsType(Output.of(credentialsType));
}
public NoneDatastoreCredentialsArgs build() {
$.credentialsType = Codegen.stringProp("credentialsType").output().arg($.credentialsType).require();
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy