
com.pulumi.snowflake.inputs.GetDatabaseRolesArgs 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.
// *** 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.Output;
import com.pulumi.core.annotations.Import;
import com.pulumi.exceptions.MissingRequiredPropertyException;
import com.pulumi.snowflake.inputs.GetDatabaseRolesLimitArgs;
import java.lang.String;
import java.util.Objects;
import java.util.Optional;
import javax.annotation.Nullable;
public final class GetDatabaseRolesArgs extends com.pulumi.resources.InvokeArgs {
public static final GetDatabaseRolesArgs Empty = new GetDatabaseRolesArgs();
/**
* The database from which to return the database roles from.
*
*/
@Import(name="inDatabase", required=true)
private Output inDatabase;
/**
* @return The database from which to return the database roles from.
*
*/
public Output inDatabase() {
return this.inDatabase;
}
/**
* Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
*
*/
@Import(name="like")
private @Nullable Output like;
/**
* @return Filters the output with **case-insensitive** pattern, with support for SQL wildcard characters (`%` and `_`).
*
*/
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy