
com.pulumi.azurenative.machinelearningservices.inputs.GetMachineLearningDatastoreArgs 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.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
public final class GetMachineLearningDatastoreArgs extends com.pulumi.resources.InvokeArgs {
public static final GetMachineLearningDatastoreArgs Empty = new GetMachineLearningDatastoreArgs();
/**
* The Datastore name.
*
*/
@Import(name="datastoreName", required=true)
private Output datastoreName;
/**
* @return The Datastore name.
*
*/
public Output datastoreName() {
return this.datastoreName;
}
/**
* Name of the resource group in which workspace is located.
*
*/
@Import(name="resourceGroupName", required=true)
private Output resourceGroupName;
/**
* @return Name of the resource group in which workspace is located.
*
*/
public Output resourceGroupName() {
return this.resourceGroupName;
}
/**
* Name of Azure Machine Learning workspace.
*
*/
@Import(name="workspaceName", required=true)
private Output workspaceName;
/**
* @return Name of Azure Machine Learning workspace.
*
*/
public Output workspaceName() {
return this.workspaceName;
}
private GetMachineLearningDatastoreArgs() {}
private GetMachineLearningDatastoreArgs(GetMachineLearningDatastoreArgs $) {
this.datastoreName = $.datastoreName;
this.resourceGroupName = $.resourceGroupName;
this.workspaceName = $.workspaceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetMachineLearningDatastoreArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetMachineLearningDatastoreArgs $;
public Builder() {
$ = new GetMachineLearningDatastoreArgs();
}
public Builder(GetMachineLearningDatastoreArgs defaults) {
$ = new GetMachineLearningDatastoreArgs(Objects.requireNonNull(defaults));
}
/**
* @param datastoreName The Datastore name.
*
* @return builder
*
*/
public Builder datastoreName(Output datastoreName) {
$.datastoreName = datastoreName;
return this;
}
/**
* @param datastoreName The Datastore name.
*
* @return builder
*
*/
public Builder datastoreName(String datastoreName) {
return datastoreName(Output.of(datastoreName));
}
/**
* @param resourceGroupName Name of the resource group in which workspace is located.
*
* @return builder
*
*/
public Builder resourceGroupName(Output resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param resourceGroupName Name of the resource group in which workspace is located.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
return resourceGroupName(Output.of(resourceGroupName));
}
/**
* @param workspaceName Name of Azure Machine Learning workspace.
*
* @return builder
*
*/
public Builder workspaceName(Output workspaceName) {
$.workspaceName = workspaceName;
return this;
}
/**
* @param workspaceName Name of Azure Machine Learning workspace.
*
* @return builder
*
*/
public Builder workspaceName(String workspaceName) {
return workspaceName(Output.of(workspaceName));
}
public GetMachineLearningDatastoreArgs build() {
if ($.datastoreName == null) {
throw new MissingRequiredPropertyException("GetMachineLearningDatastoreArgs", "datastoreName");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("GetMachineLearningDatastoreArgs", "resourceGroupName");
}
if ($.workspaceName == null) {
throw new MissingRequiredPropertyException("GetMachineLearningDatastoreArgs", "workspaceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy