
com.pulumi.azurenative.machinelearningservices.inputs.ListFeaturesetVersionMaterializationJobsPlainArgs 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.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class ListFeaturesetVersionMaterializationJobsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final ListFeaturesetVersionMaterializationJobsPlainArgs Empty = new ListFeaturesetVersionMaterializationJobsPlainArgs();
/**
* End time of the feature window to filter materialization jobs.
*
*/
@Import(name="featureWindowEnd")
private @Nullable String featureWindowEnd;
/**
* @return End time of the feature window to filter materialization jobs.
*
*/
public Optional featureWindowEnd() {
return Optional.ofNullable(this.featureWindowEnd);
}
/**
* Start time of the feature window to filter materialization jobs.
*
*/
@Import(name="featureWindowStart")
private @Nullable String featureWindowStart;
/**
* @return Start time of the feature window to filter materialization jobs.
*
*/
public Optional featureWindowStart() {
return Optional.ofNullable(this.featureWindowStart);
}
/**
* Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2
*
*/
@Import(name="filters")
private @Nullable String filters;
/**
* @return Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2
*
*/
public Optional filters() {
return Optional.ofNullable(this.filters);
}
/**
* Container name. This is case-sensitive.
*
*/
@Import(name="name", required=true)
private String name;
/**
* @return Container name. This is case-sensitive.
*
*/
public String name() {
return this.name;
}
/**
* The name of the resource group. The name is case insensitive.
*
*/
@Import(name="resourceGroupName", required=true)
private String resourceGroupName;
/**
* @return The name of the resource group. The name is case insensitive.
*
*/
public String resourceGroupName() {
return this.resourceGroupName;
}
/**
* Continuation token for pagination.
*
*/
@Import(name="skip")
private @Nullable String skip;
/**
* @return Continuation token for pagination.
*
*/
public Optional skip() {
return Optional.ofNullable(this.skip);
}
/**
* Version identifier. This is case-sensitive.
*
*/
@Import(name="version", required=true)
private String version;
/**
* @return Version identifier. This is case-sensitive.
*
*/
public String version() {
return this.version;
}
/**
* Name of Azure Machine Learning workspace.
*
*/
@Import(name="workspaceName", required=true)
private String workspaceName;
/**
* @return Name of Azure Machine Learning workspace.
*
*/
public String workspaceName() {
return this.workspaceName;
}
private ListFeaturesetVersionMaterializationJobsPlainArgs() {}
private ListFeaturesetVersionMaterializationJobsPlainArgs(ListFeaturesetVersionMaterializationJobsPlainArgs $) {
this.featureWindowEnd = $.featureWindowEnd;
this.featureWindowStart = $.featureWindowStart;
this.filters = $.filters;
this.name = $.name;
this.resourceGroupName = $.resourceGroupName;
this.skip = $.skip;
this.version = $.version;
this.workspaceName = $.workspaceName;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(ListFeaturesetVersionMaterializationJobsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private ListFeaturesetVersionMaterializationJobsPlainArgs $;
public Builder() {
$ = new ListFeaturesetVersionMaterializationJobsPlainArgs();
}
public Builder(ListFeaturesetVersionMaterializationJobsPlainArgs defaults) {
$ = new ListFeaturesetVersionMaterializationJobsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param featureWindowEnd End time of the feature window to filter materialization jobs.
*
* @return builder
*
*/
public Builder featureWindowEnd(@Nullable String featureWindowEnd) {
$.featureWindowEnd = featureWindowEnd;
return this;
}
/**
* @param featureWindowStart Start time of the feature window to filter materialization jobs.
*
* @return builder
*
*/
public Builder featureWindowStart(@Nullable String featureWindowStart) {
$.featureWindowStart = featureWindowStart;
return this;
}
/**
* @param filters Comma-separated list of tag names (and optionally values). Example: tag1,tag2=value2
*
* @return builder
*
*/
public Builder filters(@Nullable String filters) {
$.filters = filters;
return this;
}
/**
* @param name Container name. This is case-sensitive.
*
* @return builder
*
*/
public Builder name(String name) {
$.name = name;
return this;
}
/**
* @param resourceGroupName The name of the resource group. The name is case insensitive.
*
* @return builder
*
*/
public Builder resourceGroupName(String resourceGroupName) {
$.resourceGroupName = resourceGroupName;
return this;
}
/**
* @param skip Continuation token for pagination.
*
* @return builder
*
*/
public Builder skip(@Nullable String skip) {
$.skip = skip;
return this;
}
/**
* @param version Version identifier. This is case-sensitive.
*
* @return builder
*
*/
public Builder version(String version) {
$.version = version;
return this;
}
/**
* @param workspaceName Name of Azure Machine Learning workspace.
*
* @return builder
*
*/
public Builder workspaceName(String workspaceName) {
$.workspaceName = workspaceName;
return this;
}
public ListFeaturesetVersionMaterializationJobsPlainArgs build() {
if ($.name == null) {
throw new MissingRequiredPropertyException("ListFeaturesetVersionMaterializationJobsPlainArgs", "name");
}
if ($.resourceGroupName == null) {
throw new MissingRequiredPropertyException("ListFeaturesetVersionMaterializationJobsPlainArgs", "resourceGroupName");
}
if ($.version == null) {
throw new MissingRequiredPropertyException("ListFeaturesetVersionMaterializationJobsPlainArgs", "version");
}
if ($.workspaceName == null) {
throw new MissingRequiredPropertyException("ListFeaturesetVersionMaterializationJobsPlainArgs", "workspaceName");
}
return $;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy