@pulumi/snowflake 0.61.0-alpha.1731393894 → 0.61.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (87) hide show
  1. package/accountAuthenticationPolicyAttachment.d.ts +48 -0
  2. package/accountAuthenticationPolicyAttachment.js +52 -0
  3. package/accountAuthenticationPolicyAttachment.js.map +1 -0
  4. package/authenticationPolicy.d.ts +177 -0
  5. package/authenticationPolicy.js +84 -0
  6. package/authenticationPolicy.js.map +1 -0
  7. package/config/vars.d.ts +79 -36
  8. package/config/vars.js +46 -4
  9. package/config/vars.js.map +1 -1
  10. package/externalVolume.d.ts +113 -0
  11. package/externalVolume.js +67 -0
  12. package/externalVolume.js.map +1 -0
  13. package/getConnections.d.ts +91 -0
  14. package/getConnections.js +76 -0
  15. package/getConnections.js.map +1 -0
  16. package/getGrants.d.ts +4 -0
  17. package/getGrants.js +4 -0
  18. package/getGrants.js.map +1 -1
  19. package/getSecrets.d.ts +140 -0
  20. package/getSecrets.js +104 -0
  21. package/getSecrets.js.map +1 -0
  22. package/getStreams.d.ts +58 -37
  23. package/getStreams.js +16 -24
  24. package/getStreams.js.map +1 -1
  25. package/grantAccountRole.d.ts +1 -1
  26. package/grantAccountRole.js +1 -1
  27. package/grantApplicationRole.d.ts +1 -1
  28. package/grantApplicationRole.js +1 -1
  29. package/grantDatabaseRole.d.ts +1 -1
  30. package/grantDatabaseRole.js +1 -1
  31. package/grantOwnership.d.ts +7 -7
  32. package/grantOwnership.js +7 -7
  33. package/grantPrivilegesToAccountRole.d.ts +4 -4
  34. package/grantPrivilegesToAccountRole.js +4 -4
  35. package/grantPrivilegesToDatabaseRole.d.ts +4 -4
  36. package/grantPrivilegesToDatabaseRole.js +4 -4
  37. package/grantPrivilegesToShare.d.ts +1 -1
  38. package/grantPrivilegesToShare.js +1 -1
  39. package/index.d.ts +42 -0
  40. package/index.js +70 -4
  41. package/index.js.map +1 -1
  42. package/legacyServiceUser.d.ts +2 -0
  43. package/legacyServiceUser.js +2 -0
  44. package/legacyServiceUser.js.map +1 -1
  45. package/package.json +2 -2
  46. package/primaryConnection.d.ts +99 -0
  47. package/primaryConnection.js +66 -0
  48. package/primaryConnection.js.map +1 -0
  49. package/provider.d.ts +158 -54
  50. package/provider.js +11 -4
  51. package/provider.js.map +1 -1
  52. package/secondaryConnection.d.ts +105 -0
  53. package/secondaryConnection.js +69 -0
  54. package/secondaryConnection.js.map +1 -0
  55. package/secretWithAuthorizationCodeGrant.d.ts +152 -0
  56. package/secretWithAuthorizationCodeGrant.js +93 -0
  57. package/secretWithAuthorizationCodeGrant.js.map +1 -0
  58. package/secretWithBasicAuthentication.d.ts +140 -0
  59. package/secretWithBasicAuthentication.js +88 -0
  60. package/secretWithBasicAuthentication.js.map +1 -0
  61. package/secretWithClientCredentials.d.ts +149 -0
  62. package/secretWithClientCredentials.js +86 -0
  63. package/secretWithClientCredentials.js.map +1 -0
  64. package/secretWithGenericString.d.ts +128 -0
  65. package/secretWithGenericString.js +83 -0
  66. package/secretWithGenericString.js.map +1 -0
  67. package/streamOnDirectoryTable.d.ts +151 -0
  68. package/streamOnDirectoryTable.js +85 -0
  69. package/streamOnDirectoryTable.js.map +1 -0
  70. package/streamOnExternalTable.d.ts +10 -0
  71. package/streamOnExternalTable.js +4 -0
  72. package/streamOnExternalTable.js.map +1 -1
  73. package/streamOnTable.d.ts +10 -0
  74. package/streamOnTable.js +4 -0
  75. package/streamOnTable.js.map +1 -1
  76. package/streamOnView.d.ts +172 -0
  77. package/streamOnView.js +93 -0
  78. package/streamOnView.js.map +1 -0
  79. package/tagAssociation.d.ts +3 -3
  80. package/types/input.d.ts +407 -4
  81. package/types/output.d.ts +448 -7
  82. package/user.d.ts +2 -0
  83. package/user.js +2 -0
  84. package/user.js.map +1 -1
  85. package/userAuthenticationPolicyAttachment.d.ts +60 -0
  86. package/userAuthenticationPolicyAttachment.js +57 -0
  87. package/userAuthenticationPolicyAttachment.js.map +1 -0
package/types/input.d.ts CHANGED
@@ -314,6 +314,26 @@ export interface ApiAuthenticationIntegrationWithJwtBearerShowOutput {
314
314
  integrationType?: pulumi.Input<string>;
315
315
  name?: pulumi.Input<string>;
316
316
  }
317
+ export interface AuthenticationPolicyDescribeOutput {
318
+ authenticationMethods?: pulumi.Input<string>;
319
+ clientTypes?: pulumi.Input<string>;
320
+ comment?: pulumi.Input<string>;
321
+ mfaAuthenticationMethods?: pulumi.Input<string>;
322
+ mfaEnrollment?: pulumi.Input<string>;
323
+ name?: pulumi.Input<string>;
324
+ owner?: pulumi.Input<string>;
325
+ securityIntegrations?: pulumi.Input<string>;
326
+ }
327
+ export interface AuthenticationPolicyShowOutput {
328
+ comment?: pulumi.Input<string>;
329
+ createdOn?: pulumi.Input<string>;
330
+ databaseName?: pulumi.Input<string>;
331
+ name?: pulumi.Input<string>;
332
+ options?: pulumi.Input<string>;
333
+ owner?: pulumi.Input<string>;
334
+ ownerRoleType?: pulumi.Input<string>;
335
+ schemaName?: pulumi.Input<string>;
336
+ }
317
337
  export interface DatabaseOldReplicationConfiguration {
318
338
  accounts: pulumi.Input<pulumi.Input<string>[]>;
319
339
  ignoreEditionCheck?: pulumi.Input<boolean>;
@@ -525,6 +545,49 @@ export interface ExternalTableTag {
525
545
  */
526
546
  value: pulumi.Input<string>;
527
547
  }
548
+ export interface ExternalVolumeDescribeOutput {
549
+ default?: pulumi.Input<string>;
550
+ name?: pulumi.Input<string>;
551
+ parent?: pulumi.Input<string>;
552
+ type?: pulumi.Input<string>;
553
+ value?: pulumi.Input<string>;
554
+ }
555
+ export interface ExternalVolumeShowOutput {
556
+ allowWrites?: pulumi.Input<boolean>;
557
+ comment?: pulumi.Input<string>;
558
+ name?: pulumi.Input<string>;
559
+ }
560
+ export interface ExternalVolumeStorageLocation {
561
+ /**
562
+ * Specifies the ID for your Office 365 tenant that the allowed and blocked storage accounts belong to.
563
+ */
564
+ azureTenantId?: pulumi.Input<string>;
565
+ /**
566
+ * Specifies the ID for the KMS-managed key used to encrypt files.
567
+ */
568
+ encryptionKmsKeyId?: pulumi.Input<string>;
569
+ /**
570
+ * Specifies the encryption type used.
571
+ */
572
+ encryptionType?: pulumi.Input<string>;
573
+ /**
574
+ * External ID that Snowflake uses to establish a trust relationship with AWS.
575
+ */
576
+ storageAwsExternalId?: pulumi.Input<string>;
577
+ /**
578
+ * Specifies the case-sensitive Amazon Resource Name (ARN) of the AWS identity and access management (IAM) role that grants privileges on the S3 bucket containing your data files.
579
+ */
580
+ storageAwsRoleArn?: pulumi.Input<string>;
581
+ /**
582
+ * Specifies the base URL for your cloud storage location.
583
+ */
584
+ storageBaseUrl: pulumi.Input<string>;
585
+ storageLocationName: pulumi.Input<string>;
586
+ /**
587
+ * Specifies the cloud storage provider that stores your data files. Valid values are (case-insensitive): `GCS` | `AZURE` | `S3` | `S3GOV`.
588
+ */
589
+ storageProvider: pulumi.Input<string>;
590
+ }
528
591
  export interface FailoverGroupFromReplica {
529
592
  /**
530
593
  * Identifier for the primary failover group in the source account.
@@ -1069,6 +1132,50 @@ export interface GetSchemasLimitArgs {
1069
1132
  */
1070
1133
  rows: pulumi.Input<number>;
1071
1134
  }
1135
+ export interface GetSecretsIn {
1136
+ /**
1137
+ * Returns records for the entire account.
1138
+ */
1139
+ account?: boolean;
1140
+ /**
1141
+ * Returns records for the specified application.
1142
+ */
1143
+ application?: string;
1144
+ /**
1145
+ * Returns records for the specified application package.
1146
+ */
1147
+ applicationPackage?: string;
1148
+ /**
1149
+ * Returns records for the current database in use or for a specified database.
1150
+ */
1151
+ database?: string;
1152
+ /**
1153
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1154
+ */
1155
+ schema?: string;
1156
+ }
1157
+ export interface GetSecretsInArgs {
1158
+ /**
1159
+ * Returns records for the entire account.
1160
+ */
1161
+ account?: pulumi.Input<boolean>;
1162
+ /**
1163
+ * Returns records for the specified application.
1164
+ */
1165
+ application?: pulumi.Input<string>;
1166
+ /**
1167
+ * Returns records for the specified application package.
1168
+ */
1169
+ applicationPackage?: pulumi.Input<string>;
1170
+ /**
1171
+ * Returns records for the current database in use or for a specified database.
1172
+ */
1173
+ database?: pulumi.Input<string>;
1174
+ /**
1175
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1176
+ */
1177
+ schema?: pulumi.Input<string>;
1178
+ }
1072
1179
  export interface GetStreamlitsIn {
1073
1180
  /**
1074
1181
  * Returns records for the entire account.
@@ -1117,6 +1224,70 @@ export interface GetStreamlitsLimitArgs {
1117
1224
  */
1118
1225
  rows: pulumi.Input<number>;
1119
1226
  }
1227
+ export interface GetStreamsIn {
1228
+ /**
1229
+ * Returns records for the entire account.
1230
+ */
1231
+ account?: boolean;
1232
+ /**
1233
+ * Returns records for the specified application.
1234
+ */
1235
+ application?: string;
1236
+ /**
1237
+ * Returns records for the specified application package.
1238
+ */
1239
+ applicationPackage?: string;
1240
+ /**
1241
+ * Returns records for the current database in use or for a specified database.
1242
+ */
1243
+ database?: string;
1244
+ /**
1245
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1246
+ */
1247
+ schema?: string;
1248
+ }
1249
+ export interface GetStreamsInArgs {
1250
+ /**
1251
+ * Returns records for the entire account.
1252
+ */
1253
+ account?: pulumi.Input<boolean>;
1254
+ /**
1255
+ * Returns records for the specified application.
1256
+ */
1257
+ application?: pulumi.Input<string>;
1258
+ /**
1259
+ * Returns records for the specified application package.
1260
+ */
1261
+ applicationPackage?: pulumi.Input<string>;
1262
+ /**
1263
+ * Returns records for the current database in use or for a specified database.
1264
+ */
1265
+ database?: pulumi.Input<string>;
1266
+ /**
1267
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1268
+ */
1269
+ schema?: pulumi.Input<string>;
1270
+ }
1271
+ export interface GetStreamsLimit {
1272
+ /**
1273
+ * Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
1274
+ */
1275
+ from?: string;
1276
+ /**
1277
+ * The maximum number of rows to return.
1278
+ */
1279
+ rows: number;
1280
+ }
1281
+ export interface GetStreamsLimitArgs {
1282
+ /**
1283
+ * Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
1284
+ */
1285
+ from?: pulumi.Input<string>;
1286
+ /**
1287
+ * The maximum number of rows to return.
1288
+ */
1289
+ rows: pulumi.Input<number>;
1290
+ }
1120
1291
  export interface GetUsersLimit {
1121
1292
  /**
1122
1293
  * Specifies a **case-sensitive** pattern that is used to match object name. After the first match, the limit on the number of rows will be applied.
@@ -2209,6 +2380,20 @@ export interface ObjectParameterObjectIdentifier {
2209
2380
  */
2210
2381
  schema?: pulumi.Input<string>;
2211
2382
  }
2383
+ export interface PrimaryConnectionShowOutput {
2384
+ accountLocator?: pulumi.Input<string>;
2385
+ accountName?: pulumi.Input<string>;
2386
+ comment?: pulumi.Input<string>;
2387
+ connectionUrl?: pulumi.Input<string>;
2388
+ createdOn?: pulumi.Input<string>;
2389
+ failoverAllowedToAccounts?: pulumi.Input<pulumi.Input<string>[]>;
2390
+ isPrimary?: pulumi.Input<boolean>;
2391
+ name?: pulumi.Input<string>;
2392
+ organizationName?: pulumi.Input<string>;
2393
+ primary?: pulumi.Input<string>;
2394
+ regionGroup?: pulumi.Input<string>;
2395
+ snowflakeRegion?: pulumi.Input<string>;
2396
+ }
2212
2397
  export interface ProcedureArgument {
2213
2398
  /**
2214
2399
  * The argument name
@@ -2643,6 +2828,120 @@ export interface ScimIntegrationShowOutput {
2643
2828
  integrationType?: pulumi.Input<string>;
2644
2829
  name?: pulumi.Input<string>;
2645
2830
  }
2831
+ export interface SecondaryConnectionShowOutput {
2832
+ accountLocator?: pulumi.Input<string>;
2833
+ accountName?: pulumi.Input<string>;
2834
+ comment?: pulumi.Input<string>;
2835
+ connectionUrl?: pulumi.Input<string>;
2836
+ createdOn?: pulumi.Input<string>;
2837
+ failoverAllowedToAccounts?: pulumi.Input<pulumi.Input<string>[]>;
2838
+ isPrimary?: pulumi.Input<boolean>;
2839
+ name?: pulumi.Input<string>;
2840
+ organizationName?: pulumi.Input<string>;
2841
+ primary?: pulumi.Input<string>;
2842
+ regionGroup?: pulumi.Input<string>;
2843
+ snowflakeRegion?: pulumi.Input<string>;
2844
+ }
2845
+ export interface SecretWithAuthorizationCodeGrantDescribeOutput {
2846
+ comment?: pulumi.Input<string>;
2847
+ createdOn?: pulumi.Input<string>;
2848
+ databaseName?: pulumi.Input<string>;
2849
+ integrationName?: pulumi.Input<string>;
2850
+ name?: pulumi.Input<string>;
2851
+ oauthAccessTokenExpiryTime?: pulumi.Input<string>;
2852
+ oauthRefreshTokenExpiryTime?: pulumi.Input<string>;
2853
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2854
+ owner?: pulumi.Input<string>;
2855
+ schemaName?: pulumi.Input<string>;
2856
+ secretType?: pulumi.Input<string>;
2857
+ username?: pulumi.Input<string>;
2858
+ }
2859
+ export interface SecretWithAuthorizationCodeGrantShowOutput {
2860
+ comment?: pulumi.Input<string>;
2861
+ createdOn?: pulumi.Input<string>;
2862
+ databaseName?: pulumi.Input<string>;
2863
+ name?: pulumi.Input<string>;
2864
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2865
+ owner?: pulumi.Input<string>;
2866
+ ownerRoleType?: pulumi.Input<string>;
2867
+ schemaName?: pulumi.Input<string>;
2868
+ secretType?: pulumi.Input<string>;
2869
+ }
2870
+ export interface SecretWithBasicAuthenticationDescribeOutput {
2871
+ comment?: pulumi.Input<string>;
2872
+ createdOn?: pulumi.Input<string>;
2873
+ databaseName?: pulumi.Input<string>;
2874
+ integrationName?: pulumi.Input<string>;
2875
+ name?: pulumi.Input<string>;
2876
+ oauthAccessTokenExpiryTime?: pulumi.Input<string>;
2877
+ oauthRefreshTokenExpiryTime?: pulumi.Input<string>;
2878
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2879
+ owner?: pulumi.Input<string>;
2880
+ schemaName?: pulumi.Input<string>;
2881
+ secretType?: pulumi.Input<string>;
2882
+ username?: pulumi.Input<string>;
2883
+ }
2884
+ export interface SecretWithBasicAuthenticationShowOutput {
2885
+ comment?: pulumi.Input<string>;
2886
+ createdOn?: pulumi.Input<string>;
2887
+ databaseName?: pulumi.Input<string>;
2888
+ name?: pulumi.Input<string>;
2889
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2890
+ owner?: pulumi.Input<string>;
2891
+ ownerRoleType?: pulumi.Input<string>;
2892
+ schemaName?: pulumi.Input<string>;
2893
+ secretType?: pulumi.Input<string>;
2894
+ }
2895
+ export interface SecretWithClientCredentialsDescribeOutput {
2896
+ comment?: pulumi.Input<string>;
2897
+ createdOn?: pulumi.Input<string>;
2898
+ databaseName?: pulumi.Input<string>;
2899
+ integrationName?: pulumi.Input<string>;
2900
+ name?: pulumi.Input<string>;
2901
+ oauthAccessTokenExpiryTime?: pulumi.Input<string>;
2902
+ oauthRefreshTokenExpiryTime?: pulumi.Input<string>;
2903
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2904
+ owner?: pulumi.Input<string>;
2905
+ schemaName?: pulumi.Input<string>;
2906
+ secretType?: pulumi.Input<string>;
2907
+ username?: pulumi.Input<string>;
2908
+ }
2909
+ export interface SecretWithClientCredentialsShowOutput {
2910
+ comment?: pulumi.Input<string>;
2911
+ createdOn?: pulumi.Input<string>;
2912
+ databaseName?: pulumi.Input<string>;
2913
+ name?: pulumi.Input<string>;
2914
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2915
+ owner?: pulumi.Input<string>;
2916
+ ownerRoleType?: pulumi.Input<string>;
2917
+ schemaName?: pulumi.Input<string>;
2918
+ secretType?: pulumi.Input<string>;
2919
+ }
2920
+ export interface SecretWithGenericStringDescribeOutput {
2921
+ comment?: pulumi.Input<string>;
2922
+ createdOn?: pulumi.Input<string>;
2923
+ databaseName?: pulumi.Input<string>;
2924
+ integrationName?: pulumi.Input<string>;
2925
+ name?: pulumi.Input<string>;
2926
+ oauthAccessTokenExpiryTime?: pulumi.Input<string>;
2927
+ oauthRefreshTokenExpiryTime?: pulumi.Input<string>;
2928
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2929
+ owner?: pulumi.Input<string>;
2930
+ schemaName?: pulumi.Input<string>;
2931
+ secretType?: pulumi.Input<string>;
2932
+ username?: pulumi.Input<string>;
2933
+ }
2934
+ export interface SecretWithGenericStringShowOutput {
2935
+ comment?: pulumi.Input<string>;
2936
+ createdOn?: pulumi.Input<string>;
2937
+ databaseName?: pulumi.Input<string>;
2938
+ name?: pulumi.Input<string>;
2939
+ oauthScopes?: pulumi.Input<pulumi.Input<string>[]>;
2940
+ owner?: pulumi.Input<string>;
2941
+ ownerRoleType?: pulumi.Input<string>;
2942
+ schemaName?: pulumi.Input<string>;
2943
+ secretType?: pulumi.Input<string>;
2944
+ }
2646
2945
  export interface ServiceUserParameter {
2647
2946
  abortDetachedQueries?: pulumi.Input<pulumi.Input<inputs.ServiceUserParameterAbortDetachedQuery>[]>;
2648
2947
  autocommits?: pulumi.Input<pulumi.Input<inputs.ServiceUserParameterAutocommit>[]>;
@@ -3157,6 +3456,40 @@ export interface StageTag {
3157
3456
  */
3158
3457
  value: pulumi.Input<string>;
3159
3458
  }
3459
+ export interface StreamOnDirectoryTableDescribeOutput {
3460
+ baseTables?: pulumi.Input<pulumi.Input<string>[]>;
3461
+ comment?: pulumi.Input<string>;
3462
+ createdOn?: pulumi.Input<string>;
3463
+ databaseName?: pulumi.Input<string>;
3464
+ invalidReason?: pulumi.Input<string>;
3465
+ mode?: pulumi.Input<string>;
3466
+ name?: pulumi.Input<string>;
3467
+ owner?: pulumi.Input<string>;
3468
+ ownerRoleType?: pulumi.Input<string>;
3469
+ schemaName?: pulumi.Input<string>;
3470
+ sourceType?: pulumi.Input<string>;
3471
+ stale?: pulumi.Input<boolean>;
3472
+ staleAfter?: pulumi.Input<string>;
3473
+ tableName?: pulumi.Input<string>;
3474
+ type?: pulumi.Input<string>;
3475
+ }
3476
+ export interface StreamOnDirectoryTableShowOutput {
3477
+ baseTables?: pulumi.Input<pulumi.Input<string>[]>;
3478
+ comment?: pulumi.Input<string>;
3479
+ createdOn?: pulumi.Input<string>;
3480
+ databaseName?: pulumi.Input<string>;
3481
+ invalidReason?: pulumi.Input<string>;
3482
+ mode?: pulumi.Input<string>;
3483
+ name?: pulumi.Input<string>;
3484
+ owner?: pulumi.Input<string>;
3485
+ ownerRoleType?: pulumi.Input<string>;
3486
+ schemaName?: pulumi.Input<string>;
3487
+ sourceType?: pulumi.Input<string>;
3488
+ stale?: pulumi.Input<boolean>;
3489
+ staleAfter?: pulumi.Input<string>;
3490
+ tableName?: pulumi.Input<string>;
3491
+ type?: pulumi.Input<string>;
3492
+ }
3160
3493
  export interface StreamOnExternalTableAt {
3161
3494
  /**
3162
3495
  * Specifies the difference in seconds from the current time to use for Time Travel, in the form -N where N can be an integer or arithmetic expression (e.g. -120 is 120 seconds, -30*60 is 1800 seconds or 30 minutes).
@@ -3205,7 +3538,7 @@ export interface StreamOnExternalTableDescribeOutput {
3205
3538
  ownerRoleType?: pulumi.Input<string>;
3206
3539
  schemaName?: pulumi.Input<string>;
3207
3540
  sourceType?: pulumi.Input<string>;
3208
- stale?: pulumi.Input<string>;
3541
+ stale?: pulumi.Input<boolean>;
3209
3542
  staleAfter?: pulumi.Input<string>;
3210
3543
  tableName?: pulumi.Input<string>;
3211
3544
  type?: pulumi.Input<string>;
@@ -3222,7 +3555,7 @@ export interface StreamOnExternalTableShowOutput {
3222
3555
  ownerRoleType?: pulumi.Input<string>;
3223
3556
  schemaName?: pulumi.Input<string>;
3224
3557
  sourceType?: pulumi.Input<string>;
3225
- stale?: pulumi.Input<string>;
3558
+ stale?: pulumi.Input<boolean>;
3226
3559
  staleAfter?: pulumi.Input<string>;
3227
3560
  tableName?: pulumi.Input<string>;
3228
3561
  type?: pulumi.Input<string>;
@@ -3275,7 +3608,7 @@ export interface StreamOnTableDescribeOutput {
3275
3608
  ownerRoleType?: pulumi.Input<string>;
3276
3609
  schemaName?: pulumi.Input<string>;
3277
3610
  sourceType?: pulumi.Input<string>;
3278
- stale?: pulumi.Input<string>;
3611
+ stale?: pulumi.Input<boolean>;
3279
3612
  staleAfter?: pulumi.Input<string>;
3280
3613
  tableName?: pulumi.Input<string>;
3281
3614
  type?: pulumi.Input<string>;
@@ -3292,7 +3625,77 @@ export interface StreamOnTableShowOutput {
3292
3625
  ownerRoleType?: pulumi.Input<string>;
3293
3626
  schemaName?: pulumi.Input<string>;
3294
3627
  sourceType?: pulumi.Input<string>;
3295
- stale?: pulumi.Input<string>;
3628
+ stale?: pulumi.Input<boolean>;
3629
+ staleAfter?: pulumi.Input<string>;
3630
+ tableName?: pulumi.Input<string>;
3631
+ type?: pulumi.Input<string>;
3632
+ }
3633
+ export interface StreamOnViewAt {
3634
+ /**
3635
+ * Specifies the difference in seconds from the current time to use for Time Travel, in the form -N where N can be an integer or arithmetic expression (e.g. -120 is 120 seconds, -30*60 is 1800 seconds or 30 minutes).
3636
+ */
3637
+ offset?: pulumi.Input<string>;
3638
+ /**
3639
+ * Specifies the query ID of a statement to use as the reference point for Time Travel. This parameter supports any statement of one of the following types: DML (e.g. INSERT, UPDATE, DELETE), TCL (BEGIN, COMMIT transaction), SELECT.
3640
+ */
3641
+ statement?: pulumi.Input<string>;
3642
+ /**
3643
+ * Specifies the identifier (i.e. name) for an existing stream on the queried table or view. The current offset in the stream is used as the AT point in time for returning change data for the source object.
3644
+ */
3645
+ stream?: pulumi.Input<string>;
3646
+ /**
3647
+ * Specifies an exact date and time to use for Time Travel. The value must be explicitly cast to a TIMESTAMP, TIMESTAMP*LTZ, TIMESTAMP*NTZ, or TIMESTAMP_TZ data type.
3648
+ */
3649
+ timestamp?: pulumi.Input<string>;
3650
+ }
3651
+ export interface StreamOnViewBefore {
3652
+ /**
3653
+ * Specifies the difference in seconds from the current time to use for Time Travel, in the form -N where N can be an integer or arithmetic expression (e.g. -120 is 120 seconds, -30*60 is 1800 seconds or 30 minutes).
3654
+ */
3655
+ offset?: pulumi.Input<string>;
3656
+ /**
3657
+ * Specifies the query ID of a statement to use as the reference point for Time Travel. This parameter supports any statement of one of the following types: DML (e.g. INSERT, UPDATE, DELETE), TCL (BEGIN, COMMIT transaction), SELECT.
3658
+ */
3659
+ statement?: pulumi.Input<string>;
3660
+ /**
3661
+ * Specifies the identifier (i.e. name) for an existing stream on the queried table or view. The current offset in the stream is used as the AT point in time for returning change data for the source object.
3662
+ */
3663
+ stream?: pulumi.Input<string>;
3664
+ /**
3665
+ * Specifies an exact date and time to use for Time Travel. The value must be explicitly cast to a TIMESTAMP, TIMESTAMP*LTZ, TIMESTAMP*NTZ, or TIMESTAMP_TZ data type.
3666
+ */
3667
+ timestamp?: pulumi.Input<string>;
3668
+ }
3669
+ export interface StreamOnViewDescribeOutput {
3670
+ baseTables?: pulumi.Input<pulumi.Input<string>[]>;
3671
+ comment?: pulumi.Input<string>;
3672
+ createdOn?: pulumi.Input<string>;
3673
+ databaseName?: pulumi.Input<string>;
3674
+ invalidReason?: pulumi.Input<string>;
3675
+ mode?: pulumi.Input<string>;
3676
+ name?: pulumi.Input<string>;
3677
+ owner?: pulumi.Input<string>;
3678
+ ownerRoleType?: pulumi.Input<string>;
3679
+ schemaName?: pulumi.Input<string>;
3680
+ sourceType?: pulumi.Input<string>;
3681
+ stale?: pulumi.Input<boolean>;
3682
+ staleAfter?: pulumi.Input<string>;
3683
+ tableName?: pulumi.Input<string>;
3684
+ type?: pulumi.Input<string>;
3685
+ }
3686
+ export interface StreamOnViewShowOutput {
3687
+ baseTables?: pulumi.Input<pulumi.Input<string>[]>;
3688
+ comment?: pulumi.Input<string>;
3689
+ createdOn?: pulumi.Input<string>;
3690
+ databaseName?: pulumi.Input<string>;
3691
+ invalidReason?: pulumi.Input<string>;
3692
+ mode?: pulumi.Input<string>;
3693
+ name?: pulumi.Input<string>;
3694
+ owner?: pulumi.Input<string>;
3695
+ ownerRoleType?: pulumi.Input<string>;
3696
+ schemaName?: pulumi.Input<string>;
3697
+ sourceType?: pulumi.Input<string>;
3698
+ stale?: pulumi.Input<boolean>;
3296
3699
  staleAfter?: pulumi.Input<string>;
3297
3700
  tableName?: pulumi.Input<string>;
3298
3701
  type?: pulumi.Input<string>;