com.pulumi.snowflake.inputs.GetStreamlitsPlainArgs Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of snowflake Show documentation
Show all versions of snowflake Show documentation
A Pulumi package for creating and managing snowflake cloud resources.
The 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.snowflake.inputs;
import com.pulumi.core.annotations.Import;
import com.pulumi.snowflake.inputs.GetStreamlitsIn;
import com.pulumi.snowflake.inputs.GetStreamlitsLimit;
import java.lang.Boolean;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetStreamlitsPlainArgs extends com.pulumi.resources.InvokeArgs {
public static final GetStreamlitsPlainArgs Empty = new GetStreamlitsPlainArgs();
/**
* IN clause to filter the list of streamlits
*
*/
@Import(name="in")
private @Nullable GetStreamlitsIn in;
/**
* @return IN clause to filter the list of streamlits
*
*/
public Optional in() {
return Optional.ofNullable(this.in);
}
/**
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
*
*/
@Import(name="like")
private @Nullable String like;
/**
* @return Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
*
*/
public Optional like() {
return Optional.ofNullable(this.like);
}
/**
* Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
*
*/
@Import(name="limit")
private @Nullable GetStreamlitsLimit limit;
/**
* @return Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
*
*/
public Optional limit() {
return Optional.ofNullable(this.limit);
}
/**
* Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
*
*/
@Import(name="withDescribe")
private @Nullable Boolean withDescribe;
/**
* @return Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
*
*/
public Optional withDescribe() {
return Optional.ofNullable(this.withDescribe);
}
private GetStreamlitsPlainArgs() {}
private GetStreamlitsPlainArgs(GetStreamlitsPlainArgs $) {
this.in = $.in;
this.like = $.like;
this.limit = $.limit;
this.withDescribe = $.withDescribe;
}
public static Builder builder() {
return new Builder();
}
public static Builder builder(GetStreamlitsPlainArgs defaults) {
return new Builder(defaults);
}
public static final class Builder {
private GetStreamlitsPlainArgs $;
public Builder() {
$ = new GetStreamlitsPlainArgs();
}
public Builder(GetStreamlitsPlainArgs defaults) {
$ = new GetStreamlitsPlainArgs(Objects.requireNonNull(defaults));
}
/**
* @param in IN clause to filter the list of streamlits
*
* @return builder
*
*/
public Builder in(@Nullable GetStreamlitsIn in) {
$.in = in;
return this;
}
/**
* @param like Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
*
* @return builder
*
*/
public Builder like(@Nullable String like) {
$.like = like;
return this;
}
/**
* @param limit Limits the number of rows returned. If the `limit.from` is set, then the limit wll start from the first element matched by the expression. The expression is only used to match with the first element, later on the elements are not matched by the prefix, but you can enforce a certain pattern with `starts_with` or `like`.
*
* @return builder
*
*/
public Builder limit(@Nullable GetStreamlitsLimit limit) {
$.limit = limit;
return this;
}
/**
* @param withDescribe Runs DESC STREAMLIT for each streamlit returned by SHOW STREAMLITS. The output of describe is saved to the description field. By default this value is set to true.
*
* @return builder
*
*/
public Builder withDescribe(@Nullable Boolean withDescribe) {
$.withDescribe = withDescribe;
return this;
}
public GetStreamlitsPlainArgs build() {
return $;
}
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy