snowflake.getUsers
Explore with Pulumi AI
!> V1 release candidate This data source was reworked and is a release candidate for the V1. We do not expect significant changes in it before the V1. We will welcome any feedback and adjust the data source if needed. Any errors reported will be resolved with a higher priority. We encourage checking this data source out before the V1 release. Please follow the migration guide to use it.
Datasource used to get details of filtered users. Filtering is aligned with the current possibilities for SHOW USERS query. The results of SHOW, DESCRIBE, and SHOW PARAMETERS IN are encapsulated in one output collection. Important note is that when querying users you don’t have permissions to, the querying options are limited. You won’t get almost any field in show_output
(only empty or default values), the DESCRIBE command cannot be called, so you have to set with_describe = false
. Only parameters
output is not affected by the lack of privileges.
Using getUsers
Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.
function getUsers(args: GetUsersArgs, opts?: InvokeOptions): Promise<GetUsersResult>
function getUsersOutput(args: GetUsersOutputArgs, opts?: InvokeOptions): Output<GetUsersResult>
def get_users(like: Optional[str] = None,
limit: Optional[GetUsersLimit] = None,
starts_with: Optional[str] = None,
with_describe: Optional[bool] = None,
with_parameters: Optional[bool] = None,
opts: Optional[InvokeOptions] = None) -> GetUsersResult
def get_users_output(like: Optional[pulumi.Input[str]] = None,
limit: Optional[pulumi.Input[GetUsersLimitArgs]] = None,
starts_with: Optional[pulumi.Input[str]] = None,
with_describe: Optional[pulumi.Input[bool]] = None,
with_parameters: Optional[pulumi.Input[bool]] = None,
opts: Optional[InvokeOptions] = None) -> Output[GetUsersResult]
func GetUsers(ctx *Context, args *GetUsersArgs, opts ...InvokeOption) (*GetUsersResult, error)
func GetUsersOutput(ctx *Context, args *GetUsersOutputArgs, opts ...InvokeOption) GetUsersResultOutput
> Note: This function is named GetUsers
in the Go SDK.
public static class GetUsers
{
public static Task<GetUsersResult> InvokeAsync(GetUsersArgs args, InvokeOptions? opts = null)
public static Output<GetUsersResult> Invoke(GetUsersInvokeArgs args, InvokeOptions? opts = null)
}
public static CompletableFuture<GetUsersResult> getUsers(GetUsersArgs args, InvokeOptions options)
// Output-based functions aren't available in Java yet
fn::invoke:
function: snowflake:index/getUsers:getUsers
arguments:
# arguments dictionary
The following arguments are supported:
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Users 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Users 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like str
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with_
parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit Property Map
- 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
getUsers Result
The following output properties are available:
- Id string
- The provider-assigned unique ID for this managed resource.
- Users
List<Get
Users User> - Holds the aggregated output of all user details queries.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Users 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- Id string
- The provider-assigned unique ID for this managed resource.
- Users
[]Get
Users User - Holds the aggregated output of all user details queries.
- Like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - Limit
Get
Users 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 withstarts_with
orlike
. - Starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- With
Describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- With
Parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- id String
- The provider-assigned unique ID for this managed resource.
- users
List<Get
Users User> - Holds the aggregated output of all user details queries.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- id string
- The provider-assigned unique ID for this managed resource.
- users
Get
Users User[] - Holds the aggregated output of all user details queries.
- like string
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts
With string - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- id str
- The provider-assigned unique ID for this managed resource.
- users
Sequence[Get
Users User] - Holds the aggregated output of all user details queries.
- like str
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit
Get
Users 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 withstarts_with
orlike
. - starts_
with str - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with_
describe bool - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with_
parameters bool - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
- id String
- The provider-assigned unique ID for this managed resource.
- users List<Property Map>
- Holds the aggregated output of all user details queries.
- like String
- Filters the output with case-insensitive pattern, with support for SQL wildcard characters (
%
and_
). - limit Property Map
- 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 withstarts_with
orlike
. - starts
With String - Filters the output with case-sensitive characters indicating the beginning of the object name.
- with
Describe Boolean - Runs DESC USER for each user returned by SHOW USERS. The output of describe is saved to the description field. By default this value is set to true.
- with
Parameters Boolean - Runs SHOW PARAMETERS FOR USER for each user returned by SHOW USERS. The output of describe is saved to the parameters field as a map. By default this value is set to true.
Supporting Types
GetUsersLimit
GetUsersUser
- Describe
Outputs List<GetUsers User Describe Output> - Holds the output of DESCRIBE USER.
- Parameters
List<Get
Users User Parameter> - Holds the output of SHOW PARAMETERS FOR USER.
- Show
Outputs List<GetUsers User Show Output> - Holds the output of SHOW USERS.
- Describe
Outputs []GetUsers User Describe Output - Holds the output of DESCRIBE USER.
- Parameters
[]Get
Users User Parameter - Holds the output of SHOW PARAMETERS FOR USER.
- Show
Outputs []GetUsers User Show Output - Holds the output of SHOW USERS.
- describe
Outputs List<GetUsers User Describe Output> - Holds the output of DESCRIBE USER.
- parameters
List<Get
Users User Parameter> - Holds the output of SHOW PARAMETERS FOR USER.
- show
Outputs List<GetUsers User Show Output> - Holds the output of SHOW USERS.
- describe
Outputs GetUsers User Describe Output[] - Holds the output of DESCRIBE USER.
- parameters
Get
Users User Parameter[] - Holds the output of SHOW PARAMETERS FOR USER.
- show
Outputs GetUsers User Show Output[] - Holds the output of SHOW USERS.
- describe_
outputs Sequence[GetUsers User Describe Output] - Holds the output of DESCRIBE USER.
- parameters
Sequence[Get
Users User Parameter] - Holds the output of SHOW PARAMETERS FOR USER.
- show_
outputs Sequence[GetUsers User Show Output] - Holds the output of SHOW USERS.
- describe
Outputs List<Property Map> - Holds the output of DESCRIBE USER.
- parameters List<Property Map>
- Holds the output of SHOW PARAMETERS FOR USER.
- show
Outputs List<Property Map> - Holds the output of SHOW USERS.
GetUsersUserDescribeOutput
- Comment string
- Custom
Landing stringPage Url - Custom
Landing boolPage Url Flush Next Ui Load - Days
To doubleExpiry - Default
Namespace string - Default
Role string - Default
Secondary stringRoles - Default
Warehouse string - Disabled bool
- Display
Name string - Email string
- Ext
Authn boolDuo - Ext
Authn stringUid - First
Name string - Has
Mfa bool - Last
Name string - Login
Name string - Middle
Name string - Mins
To intBypass Mfa - Mins
To intBypass Network Policy - Mins
To intUnlock - Must
Change boolPassword - Name string
- Password string
- Password
Last stringSet Time - Rsa
Public stringKey - Rsa
Public stringKey2 - Rsa
Public stringKey2Fp - Rsa
Public stringKey Fp - Snowflake
Lock bool - Snowflake
Support bool - Type string
- Comment string
- Custom
Landing stringPage Url - Custom
Landing boolPage Url Flush Next Ui Load - Days
To float64Expiry - Default
Namespace string - Default
Role string - Default
Secondary stringRoles - Default
Warehouse string - Disabled bool
- Display
Name string - Email string
- Ext
Authn boolDuo - Ext
Authn stringUid - First
Name string - Has
Mfa bool - Last
Name string - Login
Name string - Middle
Name string - Mins
To intBypass Mfa - Mins
To intBypass Network Policy - Mins
To intUnlock - Must
Change boolPassword - Name string
- Password string
- Password
Last stringSet Time - Rsa
Public stringKey - Rsa
Public stringKey2 - Rsa
Public stringKey2Fp - Rsa
Public stringKey Fp - Snowflake
Lock bool - Snowflake
Support bool - Type string
- comment String
- custom
Landing StringPage Url - custom
Landing BooleanPage Url Flush Next Ui Load - days
To DoubleExpiry - default
Namespace String - default
Role String - default
Secondary StringRoles - default
Warehouse String - disabled Boolean
- display
Name String - email String
- ext
Authn BooleanDuo - ext
Authn StringUid - first
Name String - has
Mfa Boolean - last
Name String - login
Name String - middle
Name String - mins
To IntegerBypass Mfa - mins
To IntegerBypass Network Policy - mins
To IntegerUnlock - must
Change BooleanPassword - name String
- password String
- password
Last StringSet Time - rsa
Public StringKey - rsa
Public StringKey2 - rsa
Public StringKey2Fp - rsa
Public StringKey Fp - snowflake
Lock Boolean - snowflake
Support Boolean - type String
- comment string
- custom
Landing stringPage Url - custom
Landing booleanPage Url Flush Next Ui Load - days
To numberExpiry - default
Namespace string - default
Role string - default
Secondary stringRoles - default
Warehouse string - disabled boolean
- display
Name string - email string
- ext
Authn booleanDuo - ext
Authn stringUid - first
Name string - has
Mfa boolean - last
Name string - login
Name string - middle
Name string - mins
To numberBypass Mfa - mins
To numberBypass Network Policy - mins
To numberUnlock - must
Change booleanPassword - name string
- password string
- password
Last stringSet Time - rsa
Public stringKey - rsa
Public stringKey2 - rsa
Public stringKey2Fp - rsa
Public stringKey Fp - snowflake
Lock boolean - snowflake
Support boolean - type string
- comment str
- custom_
landing_ strpage_ url - custom_
landing_ boolpage_ url_ flush_ next_ ui_ load - days_
to_ floatexpiry - default_
namespace str - default_
role str - default_
secondary_ strroles - default_
warehouse str - disabled bool
- display_
name str - email str
- ext_
authn_ boolduo - ext_
authn_ struid - first_
name str - has_
mfa bool - last_
name str - login_
name str - middle_
name str - mins_
to_ intbypass_ mfa - mins_
to_ intbypass_ network_ policy - mins_
to_ intunlock - must_
change_ boolpassword - name str
- password str
- password_
last_ strset_ time - rsa_
public_ strkey - rsa_
public_ strkey2 - rsa_
public_ strkey2_ fp - rsa_
public_ strkey_ fp - snowflake_
lock bool - snowflake_
support bool - type str
- comment String
- custom
Landing StringPage Url - custom
Landing BooleanPage Url Flush Next Ui Load - days
To NumberExpiry - default
Namespace String - default
Role String - default
Secondary StringRoles - default
Warehouse String - disabled Boolean
- display
Name String - email String
- ext
Authn BooleanDuo - ext
Authn StringUid - first
Name String - has
Mfa Boolean - last
Name String - login
Name String - middle
Name String - mins
To NumberBypass Mfa - mins
To NumberBypass Network Policy - mins
To NumberUnlock - must
Change BooleanPassword - name String
- password String
- password
Last StringSet Time - rsa
Public StringKey - rsa
Public StringKey2 - rsa
Public StringKey2Fp - rsa
Public StringKey Fp - snowflake
Lock Boolean - snowflake
Support Boolean - type String
GetUsersUserParameter
- Abort
Detached List<GetQueries Users User Parameter Abort Detached Query> - Autocommits
List<Get
Users User Parameter Autocommit> - Binary
Input List<GetFormats Users User Parameter Binary Input Format> - Binary
Output List<GetFormats Users User Parameter Binary Output Format> - Client
Memory List<GetLimits Users User Parameter Client Memory Limit> - Client
Metadata List<GetRequest Use Connection Ctxes Users User Parameter Client Metadata Request Use Connection Ctx> - Client
Prefetch List<GetThreads Users User Parameter Client Prefetch Thread> - Client
Result List<GetChunk Sizes Users User Parameter Client Result Chunk Size> - Client
Result List<GetColumn Case Insensitives Users User Parameter Client Result Column Case Insensitive> - Client
Session List<GetKeep Alive Heartbeat Frequencies Users User Parameter Client Session Keep Alive Heartbeat Frequency> - Client
Session List<GetKeep Alives Users User Parameter Client Session Keep Alife> - Client
Timestamp List<GetType Mappings Users User Parameter Client Timestamp Type Mapping> - Date
Input List<GetFormats Users User Parameter Date Input Format> - Date
Output List<GetFormats Users User Parameter Date Output Format> - Enable
Unload List<GetPhysical Type Optimizations Users User Parameter Enable Unload Physical Type Optimization> - Enable
Unredacted List<GetQuery Syntax Errors Users User Parameter Enable Unredacted Query Syntax Error> - Error
On List<GetNondeterministic Merges Users User Parameter Error On Nondeterministic Merge> - Error
On List<GetNondeterministic Updates Users User Parameter Error On Nondeterministic Update> - Geography
Output List<GetFormats Users User Parameter Geography Output Format> - Geometry
Output List<GetFormats Users User Parameter Geometry Output Format> - Jdbc
Treat List<GetDecimal As Ints Users User Parameter Jdbc Treat Decimal As Int> - Jdbc
Treat List<GetTimestamp Ntz As Utcs Users User Parameter Jdbc Treat Timestamp Ntz As Utc> - Jdbc
Use List<GetSession Timezones Users User Parameter Jdbc Use Session Timezone> - Json
Indents List<GetUsers User Parameter Json Indent> - Lock
Timeouts List<GetUsers User Parameter Lock Timeout> - Log
Levels List<GetUsers User Parameter Log Level> - Multi
Statement List<GetCounts Users User Parameter Multi Statement Count> - Network
Policies List<GetUsers User Parameter Network Policy> - Noorder
Sequence List<GetAs Defaults Users User Parameter Noorder Sequence As Default> - Odbc
Treat List<GetDecimal As Ints Users User Parameter Odbc Treat Decimal As Int> - Prevent
Unload List<GetTo Internal Stages Users User Parameter Prevent Unload To Internal Stage> - List<Get
Users User Parameter Query Tag> - Quoted
Identifiers List<GetIgnore Cases Users User Parameter Quoted Identifiers Ignore Case> - Rows
Per List<GetResultsets Users User Parameter Rows Per Resultset> - S3Stage
Vpce List<GetDns Names Users User Parameter S3Stage Vpce Dns Name> - Search
Paths List<GetUsers User Parameter Search Path> - Simulated
Data List<GetSharing Consumers Users User Parameter Simulated Data Sharing Consumer> - Statement
Queued List<GetTimeout In Seconds Users User Parameter Statement Queued Timeout In Second> - Statement
Timeout List<GetIn Seconds Users User Parameter Statement Timeout In Second> - Strict
Json List<GetOutputs Users User Parameter Strict Json Output> - Time
Input List<GetFormats Users User Parameter Time Input Format> - Time
Output List<GetFormats Users User Parameter Time Output Format> - Timestamp
Day List<GetIs Always24hs Users User Parameter Timestamp Day Is Always24h> - Timestamp
Input List<GetFormats Users User Parameter Timestamp Input Format> - Timestamp
Ltz List<GetOutput Formats Users User Parameter Timestamp Ltz Output Format> - Timestamp
Ntz List<GetOutput Formats Users User Parameter Timestamp Ntz Output Format> - Timestamp
Output List<GetFormats Users User Parameter Timestamp Output Format> - Timestamp
Type List<GetMappings Users User Parameter Timestamp Type Mapping> - Timestamp
Tz List<GetOutput Formats Users User Parameter Timestamp Tz Output Format> - Timezones
List<Get
Users User Parameter Timezone> - Trace
Levels List<GetUsers User Parameter Trace Level> - Transaction
Abort List<GetOn Errors Users User Parameter Transaction Abort On Error> - Transaction
Default List<GetIsolation Levels Users User Parameter Transaction Default Isolation Level> - Two
Digit List<GetCentury Starts Users User Parameter Two Digit Century Start> - Unsupported
Ddl List<GetActions Users User Parameter Unsupported Ddl Action> - Use
Cached List<GetResults Users User Parameter Use Cached Result> - Week
Of List<GetYear Policies Users User Parameter Week Of Year Policy> - Week
Starts List<GetUsers User Parameter Week Start>
- Abort
Detached []GetQueries Users User Parameter Abort Detached Query - Autocommits
[]Get
Users User Parameter Autocommit - Binary
Input []GetFormats Users User Parameter Binary Input Format - Binary
Output []GetFormats Users User Parameter Binary Output Format - Client
Memory []GetLimits Users User Parameter Client Memory Limit - Client
Metadata []GetRequest Use Connection Ctxes Users User Parameter Client Metadata Request Use Connection Ctx - Client
Prefetch []GetThreads Users User Parameter Client Prefetch Thread - Client
Result []GetChunk Sizes Users User Parameter Client Result Chunk Size - Client
Result []GetColumn Case Insensitives Users User Parameter Client Result Column Case Insensitive - Client
Session []GetKeep Alive Heartbeat Frequencies Users User Parameter Client Session Keep Alive Heartbeat Frequency - Client
Session []GetKeep Alives Users User Parameter Client Session Keep Alife - Client
Timestamp []GetType Mappings Users User Parameter Client Timestamp Type Mapping - Date
Input []GetFormats Users User Parameter Date Input Format - Date
Output []GetFormats Users User Parameter Date Output Format - Enable
Unload []GetPhysical Type Optimizations Users User Parameter Enable Unload Physical Type Optimization - Enable
Unredacted []GetQuery Syntax Errors Users User Parameter Enable Unredacted Query Syntax Error - Error
On []GetNondeterministic Merges Users User Parameter Error On Nondeterministic Merge - Error
On []GetNondeterministic Updates Users User Parameter Error On Nondeterministic Update - Geography
Output []GetFormats Users User Parameter Geography Output Format - Geometry
Output []GetFormats Users User Parameter Geometry Output Format - Jdbc
Treat []GetDecimal As Ints Users User Parameter Jdbc Treat Decimal As Int - Jdbc
Treat []GetTimestamp Ntz As Utcs Users User Parameter Jdbc Treat Timestamp Ntz As Utc - Jdbc
Use []GetSession Timezones Users User Parameter Jdbc Use Session Timezone - Json
Indents []GetUsers User Parameter Json Indent - Lock
Timeouts []GetUsers User Parameter Lock Timeout - Log
Levels []GetUsers User Parameter Log Level - Multi
Statement []GetCounts Users User Parameter Multi Statement Count - Network
Policies []GetUsers User Parameter Network Policy - Noorder
Sequence []GetAs Defaults Users User Parameter Noorder Sequence As Default - Odbc
Treat []GetDecimal As Ints Users User Parameter Odbc Treat Decimal As Int - Prevent
Unload []GetTo Internal Stages Users User Parameter Prevent Unload To Internal Stage - []Get
Users User Parameter Query Tag - Quoted
Identifiers []GetIgnore Cases Users User Parameter Quoted Identifiers Ignore Case - Rows
Per []GetResultsets Users User Parameter Rows Per Resultset - S3Stage
Vpce []GetDns Names Users User Parameter S3Stage Vpce Dns Name - Search
Paths []GetUsers User Parameter Search Path - Simulated
Data []GetSharing Consumers Users User Parameter Simulated Data Sharing Consumer - Statement
Queued []GetTimeout In Seconds Users User Parameter Statement Queued Timeout In Second - Statement
Timeout []GetIn Seconds Users User Parameter Statement Timeout In Second - Strict
Json []GetOutputs Users User Parameter Strict Json Output - Time
Input []GetFormats Users User Parameter Time Input Format - Time
Output []GetFormats Users User Parameter Time Output Format - Timestamp
Day []GetIs Always24hs Users User Parameter Timestamp Day Is Always24h - Timestamp
Input []GetFormats Users User Parameter Timestamp Input Format - Timestamp
Ltz []GetOutput Formats Users User Parameter Timestamp Ltz Output Format - Timestamp
Ntz []GetOutput Formats Users User Parameter Timestamp Ntz Output Format - Timestamp
Output []GetFormats Users User Parameter Timestamp Output Format - Timestamp
Type []GetMappings Users User Parameter Timestamp Type Mapping - Timestamp
Tz []GetOutput Formats Users User Parameter Timestamp Tz Output Format - Timezones
[]Get
Users User Parameter Timezone - Trace
Levels []GetUsers User Parameter Trace Level - Transaction
Abort []GetOn Errors Users User Parameter Transaction Abort On Error - Transaction
Default []GetIsolation Levels Users User Parameter Transaction Default Isolation Level - Two
Digit []GetCentury Starts Users User Parameter Two Digit Century Start - Unsupported
Ddl []GetActions Users User Parameter Unsupported Ddl Action - Use
Cached []GetResults Users User Parameter Use Cached Result - Week
Of []GetYear Policies Users User Parameter Week Of Year Policy - Week
Starts []GetUsers User Parameter Week Start
- abort
Detached List<GetQueries Users User Parameter Abort Detached Query> - autocommits
List<Get
Users User Parameter Autocommit> - binary
Input List<GetFormats Users User Parameter Binary Input Format> - binary
Output List<GetFormats Users User Parameter Binary Output Format> - client
Memory List<GetLimits Users User Parameter Client Memory Limit> - client
Metadata List<GetRequest Use Connection Ctxes Users User Parameter Client Metadata Request Use Connection Ctx> - client
Prefetch List<GetThreads Users User Parameter Client Prefetch Thread> - client
Result List<GetChunk Sizes Users User Parameter Client Result Chunk Size> - client
Result List<GetColumn Case Insensitives Users User Parameter Client Result Column Case Insensitive> - client
Session List<GetKeep Alive Heartbeat Frequencies Users User Parameter Client Session Keep Alive Heartbeat Frequency> - client
Session List<GetKeep Alives Users User Parameter Client Session Keep Alife> - client
Timestamp List<GetType Mappings Users User Parameter Client Timestamp Type Mapping> - date
Input List<GetFormats Users User Parameter Date Input Format> - date
Output List<GetFormats Users User Parameter Date Output Format> - enable
Unload List<GetPhysical Type Optimizations Users User Parameter Enable Unload Physical Type Optimization> - enable
Unredacted List<GetQuery Syntax Errors Users User Parameter Enable Unredacted Query Syntax Error> - error
On List<GetNondeterministic Merges Users User Parameter Error On Nondeterministic Merge> - error
On List<GetNondeterministic Updates Users User Parameter Error On Nondeterministic Update> - geography
Output List<GetFormats Users User Parameter Geography Output Format> - geometry
Output List<GetFormats Users User Parameter Geometry Output Format> - jdbc
Treat List<GetDecimal As Ints Users User Parameter Jdbc Treat Decimal As Int> - jdbc
Treat List<GetTimestamp Ntz As Utcs Users User Parameter Jdbc Treat Timestamp Ntz As Utc> - jdbc
Use List<GetSession Timezones Users User Parameter Jdbc Use Session Timezone> - json
Indents List<GetUsers User Parameter Json Indent> - lock
Timeouts List<GetUsers User Parameter Lock Timeout> - log
Levels List<GetUsers User Parameter Log Level> - multi
Statement List<GetCounts Users User Parameter Multi Statement Count> - network
Policies List<GetUsers User Parameter Network Policy> - noorder
Sequence List<GetAs Defaults Users User Parameter Noorder Sequence As Default> - odbc
Treat List<GetDecimal As Ints Users User Parameter Odbc Treat Decimal As Int> - prevent
Unload List<GetTo Internal Stages Users User Parameter Prevent Unload To Internal Stage> - List<Get
Users User Parameter Query Tag> - quoted
Identifiers List<GetIgnore Cases Users User Parameter Quoted Identifiers Ignore Case> - rows
Per List<GetResultsets Users User Parameter Rows Per Resultset> - s3Stage
Vpce List<GetDns Names Users User Parameter S3Stage Vpce Dns Name> - search
Paths List<GetUsers User Parameter Search Path> - simulated
Data List<GetSharing Consumers Users User Parameter Simulated Data Sharing Consumer> - statement
Queued List<GetTimeout In Seconds Users User Parameter Statement Queued Timeout In Second> - statement
Timeout List<GetIn Seconds Users User Parameter Statement Timeout In Second> - strict
Json List<GetOutputs Users User Parameter Strict Json Output> - time
Input List<GetFormats Users User Parameter Time Input Format> - time
Output List<GetFormats Users User Parameter Time Output Format> - timestamp
Day List<GetIs Always24hs Users User Parameter Timestamp Day Is Always24h> - timestamp
Input List<GetFormats Users User Parameter Timestamp Input Format> - timestamp
Ltz List<GetOutput Formats Users User Parameter Timestamp Ltz Output Format> - timestamp
Ntz List<GetOutput Formats Users User Parameter Timestamp Ntz Output Format> - timestamp
Output List<GetFormats Users User Parameter Timestamp Output Format> - timestamp
Type List<GetMappings Users User Parameter Timestamp Type Mapping> - timestamp
Tz List<GetOutput Formats Users User Parameter Timestamp Tz Output Format> - timezones
List<Get
Users User Parameter Timezone> - trace
Levels List<GetUsers User Parameter Trace Level> - transaction
Abort List<GetOn Errors Users User Parameter Transaction Abort On Error> - transaction
Default List<GetIsolation Levels Users User Parameter Transaction Default Isolation Level> - two
Digit List<GetCentury Starts Users User Parameter Two Digit Century Start> - unsupported
Ddl List<GetActions Users User Parameter Unsupported Ddl Action> - use
Cached List<GetResults Users User Parameter Use Cached Result> - week
Of List<GetYear Policies Users User Parameter Week Of Year Policy> - week
Starts List<GetUsers User Parameter Week Start>
- abort
Detached GetQueries Users User Parameter Abort Detached Query[] - autocommits
Get
Users User Parameter Autocommit[] - binary
Input GetFormats Users User Parameter Binary Input Format[] - binary
Output GetFormats Users User Parameter Binary Output Format[] - client
Memory GetLimits Users User Parameter Client Memory Limit[] - client
Metadata GetRequest Use Connection Ctxes Users User Parameter Client Metadata Request Use Connection Ctx[] - client
Prefetch GetThreads Users User Parameter Client Prefetch Thread[] - client
Result GetChunk Sizes Users User Parameter Client Result Chunk Size[] - client
Result GetColumn Case Insensitives Users User Parameter Client Result Column Case Insensitive[] - client
Session GetKeep Alive Heartbeat Frequencies Users User Parameter Client Session Keep Alive Heartbeat Frequency[] - client
Session GetKeep Alives Users User Parameter Client Session Keep Alife[] - client
Timestamp GetType Mappings Users User Parameter Client Timestamp Type Mapping[] - date
Input GetFormats Users User Parameter Date Input Format[] - date
Output GetFormats Users User Parameter Date Output Format[] - enable
Unload GetPhysical Type Optimizations Users User Parameter Enable Unload Physical Type Optimization[] - enable
Unredacted GetQuery Syntax Errors Users User Parameter Enable Unredacted Query Syntax Error[] - error
On GetNondeterministic Merges Users User Parameter Error On Nondeterministic Merge[] - error
On GetNondeterministic Updates Users User Parameter Error On Nondeterministic Update[] - geography
Output GetFormats Users User Parameter Geography Output Format[] - geometry
Output GetFormats Users User Parameter Geometry Output Format[] - jdbc
Treat GetDecimal As Ints Users User Parameter Jdbc Treat Decimal As Int[] - jdbc
Treat GetTimestamp Ntz As Utcs Users User Parameter Jdbc Treat Timestamp Ntz As Utc[] - jdbc
Use GetSession Timezones Users User Parameter Jdbc Use Session Timezone[] - json
Indents GetUsers User Parameter Json Indent[] - lock
Timeouts GetUsers User Parameter Lock Timeout[] - log
Levels GetUsers User Parameter Log Level[] - multi
Statement GetCounts Users User Parameter Multi Statement Count[] - network
Policies GetUsers User Parameter Network Policy[] - noorder
Sequence GetAs Defaults Users User Parameter Noorder Sequence As Default[] - odbc
Treat GetDecimal As Ints Users User Parameter Odbc Treat Decimal As Int[] - prevent
Unload GetTo Internal Stages Users User Parameter Prevent Unload To Internal Stage[] - Get
Users User Parameter Query Tag[] - quoted
Identifiers GetIgnore Cases Users User Parameter Quoted Identifiers Ignore Case[] - rows
Per GetResultsets Users User Parameter Rows Per Resultset[] - s3Stage
Vpce GetDns Names Users User Parameter S3Stage Vpce Dns Name[] - search
Paths GetUsers User Parameter Search Path[] - simulated
Data GetSharing Consumers Users User Parameter Simulated Data Sharing Consumer[] - statement
Queued GetTimeout In Seconds Users User Parameter Statement Queued Timeout In Second[] - statement
Timeout GetIn Seconds Users User Parameter Statement Timeout In Second[] - strict
Json GetOutputs Users User Parameter Strict Json Output[] - time
Input GetFormats Users User Parameter Time Input Format[] - time
Output GetFormats Users User Parameter Time Output Format[] - timestamp
Day GetIs Always24hs Users User Parameter Timestamp Day Is Always24h[] - timestamp
Input GetFormats Users User Parameter Timestamp Input Format[] - timestamp
Ltz GetOutput Formats Users User Parameter Timestamp Ltz Output Format[] - timestamp
Ntz GetOutput Formats Users User Parameter Timestamp Ntz Output Format[] - timestamp
Output GetFormats Users User Parameter Timestamp Output Format[] - timestamp
Type GetMappings Users User Parameter Timestamp Type Mapping[] - timestamp
Tz GetOutput Formats Users User Parameter Timestamp Tz Output Format[] - timezones
Get
Users User Parameter Timezone[] - trace
Levels GetUsers User Parameter Trace Level[] - transaction
Abort GetOn Errors Users User Parameter Transaction Abort On Error[] - transaction
Default GetIsolation Levels Users User Parameter Transaction Default Isolation Level[] - two
Digit GetCentury Starts Users User Parameter Two Digit Century Start[] - unsupported
Ddl GetActions Users User Parameter Unsupported Ddl Action[] - use
Cached GetResults Users User Parameter Use Cached Result[] - week
Of GetYear Policies Users User Parameter Week Of Year Policy[] - week
Starts GetUsers User Parameter Week Start[]
- abort_
detached_ Sequence[Getqueries Users User Parameter Abort Detached Query] - autocommits
Sequence[Get
Users User Parameter Autocommit] - binary_
input_ Sequence[Getformats Users User Parameter Binary Input Format] - binary_
output_ Sequence[Getformats Users User Parameter Binary Output Format] - client_
memory_ Sequence[Getlimits Users User Parameter Client Memory Limit] - client_
metadata_ Sequence[Getrequest_ use_ connection_ ctxes Users User Parameter Client Metadata Request Use Connection Ctx] - client_
prefetch_ Sequence[Getthreads Users User Parameter Client Prefetch Thread] - client_
result_ Sequence[Getchunk_ sizes Users User Parameter Client Result Chunk Size] - client_
result_ Sequence[Getcolumn_ case_ insensitives Users User Parameter Client Result Column Case Insensitive] - client_
session_ Sequence[Getkeep_ alive_ heartbeat_ frequencies Users User Parameter Client Session Keep Alive Heartbeat Frequency] - client_
session_ Sequence[Getkeep_ alives Users User Parameter Client Session Keep Alife] - client_
timestamp_ Sequence[Gettype_ mappings Users User Parameter Client Timestamp Type Mapping] - date_
input_ Sequence[Getformats Users User Parameter Date Input Format] - date_
output_ Sequence[Getformats Users User Parameter Date Output Format] - enable_
unload_ Sequence[Getphysical_ type_ optimizations Users User Parameter Enable Unload Physical Type Optimization] - enable_
unredacted_ Sequence[Getquery_ syntax_ errors Users User Parameter Enable Unredacted Query Syntax Error] - error_
on_ Sequence[Getnondeterministic_ merges Users User Parameter Error On Nondeterministic Merge] - error_
on_ Sequence[Getnondeterministic_ updates Users User Parameter Error On Nondeterministic Update] - geography_
output_ Sequence[Getformats Users User Parameter Geography Output Format] - geometry_
output_ Sequence[Getformats Users User Parameter Geometry Output Format] - jdbc_
treat_ Sequence[Getdecimal_ as_ ints Users User Parameter Jdbc Treat Decimal As Int] - jdbc_
treat_ Sequence[Gettimestamp_ ntz_ as_ utcs Users User Parameter Jdbc Treat Timestamp Ntz As Utc] - jdbc_
use_ Sequence[Getsession_ timezones Users User Parameter Jdbc Use Session Timezone] - json_
indents Sequence[GetUsers User Parameter Json Indent] - lock_
timeouts Sequence[GetUsers User Parameter Lock Timeout] - log_
levels Sequence[GetUsers User Parameter Log Level] - multi_
statement_ Sequence[Getcounts Users User Parameter Multi Statement Count] - network_
policies Sequence[GetUsers User Parameter Network Policy] - noorder_
sequence_ Sequence[Getas_ defaults Users User Parameter Noorder Sequence As Default] - odbc_
treat_ Sequence[Getdecimal_ as_ ints Users User Parameter Odbc Treat Decimal As Int] - prevent_
unload_ Sequence[Getto_ internal_ stages Users User Parameter Prevent Unload To Internal Stage] - Sequence[Get
Users User Parameter Query Tag] - quoted_
identifiers_ Sequence[Getignore_ cases Users User Parameter Quoted Identifiers Ignore Case] - rows_
per_ Sequence[Getresultsets Users User Parameter Rows Per Resultset] - s3_
stage_ Sequence[Getvpce_ dns_ names Users User Parameter S3Stage Vpce Dns Name] - search_
paths Sequence[GetUsers User Parameter Search Path] - simulated_
data_ Sequence[Getsharing_ consumers Users User Parameter Simulated Data Sharing Consumer] - statement_
queued_ Sequence[Gettimeout_ in_ seconds Users User Parameter Statement Queued Timeout In Second] - statement_
timeout_ Sequence[Getin_ seconds Users User Parameter Statement Timeout In Second] - strict_
json_ Sequence[Getoutputs Users User Parameter Strict Json Output] - time_
input_ Sequence[Getformats Users User Parameter Time Input Format] - time_
output_ Sequence[Getformats Users User Parameter Time Output Format] - timestamp_
day_ Sequence[Getis_ always24hs Users User Parameter Timestamp Day Is Always24h] - timestamp_
input_ Sequence[Getformats Users User Parameter Timestamp Input Format] - timestamp_
ltz_ Sequence[Getoutput_ formats Users User Parameter Timestamp Ltz Output Format] - timestamp_
ntz_ Sequence[Getoutput_ formats Users User Parameter Timestamp Ntz Output Format] - timestamp_
output_ Sequence[Getformats Users User Parameter Timestamp Output Format] - timestamp_
type_ Sequence[Getmappings Users User Parameter Timestamp Type Mapping] - timestamp_
tz_ Sequence[Getoutput_ formats Users User Parameter Timestamp Tz Output Format] - timezones
Sequence[Get
Users User Parameter Timezone] - trace_
levels Sequence[GetUsers User Parameter Trace Level] - transaction_
abort_ Sequence[Geton_ errors Users User Parameter Transaction Abort On Error] - transaction_
default_ Sequence[Getisolation_ levels Users User Parameter Transaction Default Isolation Level] - two_
digit_ Sequence[Getcentury_ starts Users User Parameter Two Digit Century Start] - unsupported_
ddl_ Sequence[Getactions Users User Parameter Unsupported Ddl Action] - use_
cached_ Sequence[Getresults Users User Parameter Use Cached Result] - week_
of_ Sequence[Getyear_ policies Users User Parameter Week Of Year Policy] - week_
starts Sequence[GetUsers User Parameter Week Start]
- abort
Detached List<Property Map>Queries - autocommits List<Property Map>
- binary
Input List<Property Map>Formats - binary
Output List<Property Map>Formats - client
Memory List<Property Map>Limits - client
Metadata List<Property Map>Request Use Connection Ctxes - client
Prefetch List<Property Map>Threads - client
Result List<Property Map>Chunk Sizes - client
Result List<Property Map>Column Case Insensitives - client
Session List<Property Map>Keep Alive Heartbeat Frequencies - client
Session List<Property Map>Keep Alives - client
Timestamp List<Property Map>Type Mappings - date
Input List<Property Map>Formats - date
Output List<Property Map>Formats - enable
Unload List<Property Map>Physical Type Optimizations - enable
Unredacted List<Property Map>Query Syntax Errors - error
On List<Property Map>Nondeterministic Merges - error
On List<Property Map>Nondeterministic Updates - geography
Output List<Property Map>Formats - geometry
Output List<Property Map>Formats - jdbc
Treat List<Property Map>Decimal As Ints - jdbc
Treat List<Property Map>Timestamp Ntz As Utcs - jdbc
Use List<Property Map>Session Timezones - json
Indents List<Property Map> - lock
Timeouts List<Property Map> - log
Levels List<Property Map> - multi
Statement List<Property Map>Counts - network
Policies List<Property Map> - noorder
Sequence List<Property Map>As Defaults - odbc
Treat List<Property Map>Decimal As Ints - prevent
Unload List<Property Map>To Internal Stages - List<Property Map>
- quoted
Identifiers List<Property Map>Ignore Cases - rows
Per List<Property Map>Resultsets - s3Stage
Vpce List<Property Map>Dns Names - search
Paths List<Property Map> - simulated
Data List<Property Map>Sharing Consumers - statement
Queued List<Property Map>Timeout In Seconds - statement
Timeout List<Property Map>In Seconds - strict
Json List<Property Map>Outputs - time
Input List<Property Map>Formats - time
Output List<Property Map>Formats - timestamp
Day List<Property Map>Is Always24hs - timestamp
Input List<Property Map>Formats - timestamp
Ltz List<Property Map>Output Formats - timestamp
Ntz List<Property Map>Output Formats - timestamp
Output List<Property Map>Formats - timestamp
Type List<Property Map>Mappings - timestamp
Tz List<Property Map>Output Formats - timezones List<Property Map>
- trace
Levels List<Property Map> - transaction
Abort List<Property Map>On Errors - transaction
Default List<Property Map>Isolation Levels - two
Digit List<Property Map>Century Starts - unsupported
Ddl List<Property Map>Actions - use
Cached List<Property Map>Results - week
Of List<Property Map>Year Policies - week
Starts List<Property Map>
GetUsersUserParameterAbortDetachedQuery
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterAutocommit
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterBinaryInputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterBinaryOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientMemoryLimit
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientMetadataRequestUseConnectionCtx
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientPrefetchThread
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientResultChunkSize
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientResultColumnCaseInsensitive
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientSessionKeepAlife
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientSessionKeepAliveHeartbeatFrequency
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterClientTimestampTypeMapping
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterDateInputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterDateOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterEnableUnloadPhysicalTypeOptimization
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterEnableUnredactedQuerySyntaxError
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterErrorOnNondeterministicMerge
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterErrorOnNondeterministicUpdate
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterGeographyOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterGeometryOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterJdbcTreatDecimalAsInt
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterJdbcTreatTimestampNtzAsUtc
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterJdbcUseSessionTimezone
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterJsonIndent
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterLockTimeout
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterLogLevel
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterMultiStatementCount
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterNetworkPolicy
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterNoorderSequenceAsDefault
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterOdbcTreatDecimalAsInt
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterPreventUnloadToInternalStage
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterQueryTag
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterQuotedIdentifiersIgnoreCase
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterRowsPerResultset
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterS3StageVpceDnsName
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterSearchPath
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterSimulatedDataSharingConsumer
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterStatementQueuedTimeoutInSecond
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterStatementTimeoutInSecond
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterStrictJsonOutput
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimeInputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimeOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampDayIsAlways24h
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampInputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampLtzOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampNtzOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampTypeMapping
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimestampTzOutputFormat
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTimezone
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTraceLevel
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTransactionAbortOnError
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTransactionDefaultIsolationLevel
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterTwoDigitCenturyStart
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterUnsupportedDdlAction
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterUseCachedResult
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterWeekOfYearPolicy
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserParameterWeekStart
- Default string
- Description string
- Key string
- Level string
- Value string
- Default string
- Description string
- Key string
- Level string
- Value string
- default_ String
- description String
- key String
- level String
- value String
- default string
- description string
- key string
- level string
- value string
- default str
- description str
- key str
- level str
- value str
- default String
- description String
- key String
- level String
- value String
GetUsersUserShowOutput
- Comment string
- Created
On string - Days
To stringExpiry - Default
Namespace string - Default
Role string - Default
Secondary stringRoles - Default
Warehouse string - Disabled bool
- Display
Name string - Email string
- Expires
At stringTime - Ext
Authn boolDuo - Ext
Authn stringUid - First
Name string - Has
Mfa bool - Has
Password bool - Has
Rsa boolPublic Key - Last
Name string - Last
Success stringLogin - Locked
Until stringTime - Login
Name string - Mins
To stringBypass Mfa - Mins
To stringUnlock - Must
Change boolPassword - Name string
- Owner string
- Snowflake
Lock bool - Type string
- Comment string
- Created
On string - Days
To stringExpiry - Default
Namespace string - Default
Role string - Default
Secondary stringRoles - Default
Warehouse string - Disabled bool
- Display
Name string - Email string
- Expires
At stringTime - Ext
Authn boolDuo - Ext
Authn stringUid - First
Name string - Has
Mfa bool - Has
Password bool - Has
Rsa boolPublic Key - Last
Name string - Last
Success stringLogin - Locked
Until stringTime - Login
Name string - Mins
To stringBypass Mfa - Mins
To stringUnlock - Must
Change boolPassword - Name string
- Owner string
- Snowflake
Lock bool - Type string
- comment String
- created
On String - days
To StringExpiry - default
Namespace String - default
Role String - default
Secondary StringRoles - default
Warehouse String - disabled Boolean
- display
Name String - email String
- expires
At StringTime - ext
Authn BooleanDuo - ext
Authn StringUid - first
Name String - has
Mfa Boolean - has
Password Boolean - has
Rsa BooleanPublic Key - last
Name String - last
Success StringLogin - locked
Until StringTime - login
Name String - mins
To StringBypass Mfa - mins
To StringUnlock - must
Change BooleanPassword - name String
- owner String
- snowflake
Lock Boolean - type String
- comment string
- created
On string - days
To stringExpiry - default
Namespace string - default
Role string - default
Secondary stringRoles - default
Warehouse string - disabled boolean
- display
Name string - email string
- expires
At stringTime - ext
Authn booleanDuo - ext
Authn stringUid - first
Name string - has
Mfa boolean - has
Password boolean - has
Rsa booleanPublic Key - last
Name string - last
Success stringLogin - locked
Until stringTime - login
Name string - mins
To stringBypass Mfa - mins
To stringUnlock - must
Change booleanPassword - name string
- owner string
- snowflake
Lock boolean - type string
- comment str
- created_
on str - days_
to_ strexpiry - default_
namespace str - default_
role str - default_
secondary_ strroles - default_
warehouse str - disabled bool
- display_
name str - email str
- expires_
at_ strtime - ext_
authn_ boolduo - ext_
authn_ struid - first_
name str - has_
mfa bool - has_
password bool - has_
rsa_ boolpublic_ key - last_
name str - last_
success_ strlogin - locked_
until_ strtime - login_
name str - mins_
to_ strbypass_ mfa - mins_
to_ strunlock - must_
change_ boolpassword - name str
- owner str
- snowflake_
lock bool - type str
- comment String
- created
On String - days
To StringExpiry - default
Namespace String - default
Role String - default
Secondary StringRoles - default
Warehouse String - disabled Boolean
- display
Name String - email String
- expires
At StringTime - ext
Authn BooleanDuo - ext
Authn StringUid - first
Name String - has
Mfa Boolean - has
Password Boolean - has
Rsa BooleanPublic Key - last
Name String - last
Success StringLogin - locked
Until StringTime - login
Name String - mins
To StringBypass Mfa - mins
To StringUnlock - must
Change BooleanPassword - name String
- owner String
- snowflake
Lock Boolean - type String
Package Details
- Repository
- Snowflake pulumi/pulumi-snowflake
- License
- Apache-2.0
- Notes
- This Pulumi package is based on the
snowflake
Terraform Provider.