@pulumi/snowflake 0.57.0-alpha.1722063098 → 0.57.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.
- package/accountRole.d.ts +70 -0
- package/accountRole.js +71 -0
- package/accountRole.js.map +1 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.d.ts +2 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js +2 -0
- package/apiAuthenticationIntegrationWithAuthorizationCodeGrant.js.map +1 -1
- package/apiAuthenticationIntegrationWithClientCredentials.d.ts +2 -0
- package/apiAuthenticationIntegrationWithClientCredentials.js +2 -0
- package/apiAuthenticationIntegrationWithClientCredentials.js.map +1 -1
- package/apiAuthenticationIntegrationWithJwtBearer.d.ts +2 -0
- package/apiAuthenticationIntegrationWithJwtBearer.js +2 -0
- package/apiAuthenticationIntegrationWithJwtBearer.js.map +1 -1
- package/database.d.ts +27 -27
- package/externalOauthIntegration.d.ts +1 -1
- package/externalOauthIntegration.js +1 -1
- package/getNetworkPolicies.d.ts +61 -0
- package/getNetworkPolicies.js +31 -0
- package/getNetworkPolicies.js.map +1 -0
- package/getRoles.d.ts +23 -27
- package/getRoles.js +6 -21
- package/getRoles.js.map +1 -1
- package/getSchemas.d.ts +74 -31
- package/getSchemas.js +9 -21
- package/getSchemas.js.map +1 -1
- package/getStreamlits.d.ts +86 -0
- package/getStreamlits.js +33 -0
- package/getStreamlits.js.map +1 -0
- package/index.d.ts +12 -0
- package/index.js +20 -4
- package/index.js.map +1 -1
- package/networkPolicy.d.ts +39 -8
- package/networkPolicy.js +22 -5
- package/networkPolicy.js.map +1 -1
- package/oauthIntegrationForCustomClients.d.ts +8 -6
- package/oauthIntegrationForCustomClients.js +2 -0
- package/oauthIntegrationForCustomClients.js.map +1 -1
- package/oauthIntegrationForPartnerApplications.d.ts +8 -6
- package/oauthIntegrationForPartnerApplications.js +2 -0
- package/oauthIntegrationForPartnerApplications.js.map +1 -1
- package/package.json +2 -2
- package/role.d.ts +16 -27
- package/role.js +14 -15
- package/role.js.map +1 -1
- package/saml2Integration.d.ts +14 -12
- package/saml2Integration.js +2 -0
- package/saml2Integration.js.map +1 -1
- package/schema.d.ts +229 -45
- package/schema.js +43 -21
- package/schema.js.map +1 -1
- package/scimIntegration.d.ts +11 -9
- package/scimIntegration.js +2 -0
- package/scimIntegration.js.map +1 -1
- package/secondaryDatabase.d.ts +27 -27
- package/sharedDatabase.d.ts +27 -27
- package/streamlit.d.ts +187 -0
- package/streamlit.js +96 -0
- package/streamlit.js.map +1 -0
- package/table.d.ts +0 -63
- package/table.js +0 -63
- package/table.js.map +1 -1
- package/tableConstraint.d.ts +1 -1
- package/tableConstraint.js +1 -1
- package/types/input.d.ts +329 -41
- package/types/output.d.ts +511 -46
- package/unsafeExecute.d.ts +4 -4
- package/unsafeExecute.js +4 -4
package/types/input.d.ts
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as inputs from "../types/input";
|
|
3
|
+
export interface AccountRoleShowOutput {
|
|
4
|
+
assignedToUsers?: pulumi.Input<number>;
|
|
5
|
+
comment?: pulumi.Input<string>;
|
|
6
|
+
createdOn?: pulumi.Input<string>;
|
|
7
|
+
grantedRoles?: pulumi.Input<number>;
|
|
8
|
+
grantedToRoles?: pulumi.Input<number>;
|
|
9
|
+
isCurrent?: pulumi.Input<boolean>;
|
|
10
|
+
isDefault?: pulumi.Input<boolean>;
|
|
11
|
+
isInherited?: pulumi.Input<boolean>;
|
|
12
|
+
name?: pulumi.Input<string>;
|
|
13
|
+
owner?: pulumi.Input<string>;
|
|
14
|
+
}
|
|
3
15
|
export interface AlertAlertSchedule {
|
|
4
16
|
/**
|
|
5
17
|
* Specifies the cron expression for the alert. The cron expression must be in the following format: "minute hour day-of-month month day-of-week". The following values are supported: minute: 0-59 hour: 0-23 day-of-month: 1-31 month: 1-12 day-of-week: 0-6 (0 is Sunday)
|
|
@@ -839,6 +851,110 @@ export interface GetGrantsGrantsToShareArgs {
|
|
|
839
851
|
*/
|
|
840
852
|
shareName: pulumi.Input<string>;
|
|
841
853
|
}
|
|
854
|
+
export interface GetSchemasIn {
|
|
855
|
+
/**
|
|
856
|
+
* Returns records for the entire account.
|
|
857
|
+
*/
|
|
858
|
+
account?: boolean;
|
|
859
|
+
/**
|
|
860
|
+
* Returns records for the specified application.
|
|
861
|
+
*/
|
|
862
|
+
application?: string;
|
|
863
|
+
/**
|
|
864
|
+
* Returns records for the specified application package.
|
|
865
|
+
*/
|
|
866
|
+
applicationPackage?: string;
|
|
867
|
+
/**
|
|
868
|
+
* Returns records for the current database in use or for a specified database (db_name).
|
|
869
|
+
*/
|
|
870
|
+
database?: string;
|
|
871
|
+
}
|
|
872
|
+
export interface GetSchemasInArgs {
|
|
873
|
+
/**
|
|
874
|
+
* Returns records for the entire account.
|
|
875
|
+
*/
|
|
876
|
+
account?: pulumi.Input<boolean>;
|
|
877
|
+
/**
|
|
878
|
+
* Returns records for the specified application.
|
|
879
|
+
*/
|
|
880
|
+
application?: pulumi.Input<string>;
|
|
881
|
+
/**
|
|
882
|
+
* Returns records for the specified application package.
|
|
883
|
+
*/
|
|
884
|
+
applicationPackage?: pulumi.Input<string>;
|
|
885
|
+
/**
|
|
886
|
+
* Returns records for the current database in use or for a specified database (db_name).
|
|
887
|
+
*/
|
|
888
|
+
database?: pulumi.Input<string>;
|
|
889
|
+
}
|
|
890
|
+
export interface GetSchemasLimit {
|
|
891
|
+
/**
|
|
892
|
+
* 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.
|
|
893
|
+
*/
|
|
894
|
+
from?: string;
|
|
895
|
+
/**
|
|
896
|
+
* The maximum number of rows to return.
|
|
897
|
+
*/
|
|
898
|
+
rows: number;
|
|
899
|
+
}
|
|
900
|
+
export interface GetSchemasLimitArgs {
|
|
901
|
+
/**
|
|
902
|
+
* 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.
|
|
903
|
+
*/
|
|
904
|
+
from?: pulumi.Input<string>;
|
|
905
|
+
/**
|
|
906
|
+
* The maximum number of rows to return.
|
|
907
|
+
*/
|
|
908
|
+
rows: pulumi.Input<number>;
|
|
909
|
+
}
|
|
910
|
+
export interface GetStreamlitsIn {
|
|
911
|
+
/**
|
|
912
|
+
* Returns records for the entire account.
|
|
913
|
+
*/
|
|
914
|
+
account?: boolean;
|
|
915
|
+
/**
|
|
916
|
+
* Returns records for the current database in use or for a specified database (db_name).
|
|
917
|
+
*/
|
|
918
|
+
database?: string;
|
|
919
|
+
/**
|
|
920
|
+
* Returns records for the current schema in use or a specified schema (schema_name).
|
|
921
|
+
*/
|
|
922
|
+
schema?: string;
|
|
923
|
+
}
|
|
924
|
+
export interface GetStreamlitsInArgs {
|
|
925
|
+
/**
|
|
926
|
+
* Returns records for the entire account.
|
|
927
|
+
*/
|
|
928
|
+
account?: pulumi.Input<boolean>;
|
|
929
|
+
/**
|
|
930
|
+
* Returns records for the current database in use or for a specified database (db_name).
|
|
931
|
+
*/
|
|
932
|
+
database?: pulumi.Input<string>;
|
|
933
|
+
/**
|
|
934
|
+
* Returns records for the current schema in use or a specified schema (schema_name).
|
|
935
|
+
*/
|
|
936
|
+
schema?: pulumi.Input<string>;
|
|
937
|
+
}
|
|
938
|
+
export interface GetStreamlitsLimit {
|
|
939
|
+
/**
|
|
940
|
+
* 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.
|
|
941
|
+
*/
|
|
942
|
+
from?: string;
|
|
943
|
+
/**
|
|
944
|
+
* The maximum number of rows to return.
|
|
945
|
+
*/
|
|
946
|
+
rows: number;
|
|
947
|
+
}
|
|
948
|
+
export interface GetStreamlitsLimitArgs {
|
|
949
|
+
/**
|
|
950
|
+
* 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.
|
|
951
|
+
*/
|
|
952
|
+
from?: pulumi.Input<string>;
|
|
953
|
+
/**
|
|
954
|
+
* The maximum number of rows to return.
|
|
955
|
+
*/
|
|
956
|
+
rows: pulumi.Input<number>;
|
|
957
|
+
}
|
|
842
958
|
export interface GrantOwnershipOn {
|
|
843
959
|
/**
|
|
844
960
|
* Configures the privilege to be granted on all objects in either a database or schema.
|
|
@@ -923,7 +1039,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObject {
|
|
|
923
1039
|
*/
|
|
924
1040
|
objectName?: pulumi.Input<string>;
|
|
925
1041
|
/**
|
|
926
|
-
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
|
|
1042
|
+
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
|
|
927
1043
|
*/
|
|
928
1044
|
objectType?: pulumi.Input<string>;
|
|
929
1045
|
}
|
|
@@ -931,7 +1047,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectAll {
|
|
|
931
1047
|
inDatabase?: pulumi.Input<string>;
|
|
932
1048
|
inSchema?: pulumi.Input<string>;
|
|
933
1049
|
/**
|
|
934
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
|
|
1050
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
|
|
935
1051
|
*/
|
|
936
1052
|
objectTypePlural: pulumi.Input<string>;
|
|
937
1053
|
}
|
|
@@ -939,7 +1055,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectFuture {
|
|
|
939
1055
|
inDatabase?: pulumi.Input<string>;
|
|
940
1056
|
inSchema?: pulumi.Input<string>;
|
|
941
1057
|
/**
|
|
942
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | STAGES | STREAMS | TABLES | TASKS | VIEWS.
|
|
1058
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TASKS | VIEWS.
|
|
943
1059
|
*/
|
|
944
1060
|
objectTypePlural: pulumi.Input<string>;
|
|
945
1061
|
}
|
|
@@ -971,7 +1087,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObject {
|
|
|
971
1087
|
*/
|
|
972
1088
|
objectName?: pulumi.Input<string>;
|
|
973
1089
|
/**
|
|
974
|
-
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
|
|
1090
|
+
* The object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICY | ALERT | AUTHENTICATION POLICY | CORTEX SEARCH SERVICE | DATA METRIC FUNCTION | DYNAMIC TABLE | EVENT TABLE | EXTERNAL TABLE | FILE FORMAT | FUNCTION | GIT REPOSITORY | HYBRID TABLE | IMAGE REPOSITORY | ICEBERG TABLE | MASKING POLICY | MATERIALIZED VIEW | MODEL | NETWORK RULE | NOTEBOOK | PACKAGES POLICY | PASSWORD POLICY | PIPE | PROCEDURE | PROJECTION POLICY | ROW ACCESS POLICY | SECRET | SERVICE | SESSION POLICY | SEQUENCE | SNAPSHOT | STAGE | STREAM | TABLE | TAG | TASK | VIEW | STREAMLIT
|
|
975
1091
|
*/
|
|
976
1092
|
objectType?: pulumi.Input<string>;
|
|
977
1093
|
}
|
|
@@ -985,7 +1101,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectAll {
|
|
|
985
1101
|
*/
|
|
986
1102
|
inSchema?: pulumi.Input<string>;
|
|
987
1103
|
/**
|
|
988
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
|
|
1104
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: AGGREGATION POLICIES | ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | IMAGE REPOSITORIES | ICEBERG TABLES | MASKING POLICIES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PACKAGES POLICIES | PASSWORD POLICIES | PIPES | PROCEDURES | PROJECTION POLICIES | ROW ACCESS POLICIES | SECRETS | SERVICES | SESSION POLICIES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TAGS | TASKS | VIEWS | STREAMLITS.
|
|
989
1105
|
*/
|
|
990
1106
|
objectTypePlural: pulumi.Input<string>;
|
|
991
1107
|
}
|
|
@@ -999,7 +1115,7 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture {
|
|
|
999
1115
|
*/
|
|
1000
1116
|
inSchema?: pulumi.Input<string>;
|
|
1001
1117
|
/**
|
|
1002
|
-
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | STAGES | STREAMS | TABLES | TASKS | VIEWS.
|
|
1118
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | DATA METRIC FUNCTIONS | DYNAMIC TABLES | EVENT TABLES | EXTERNAL TABLES | FILE FORMATS | FUNCTIONS | GIT REPOSITORIES | HYBRID TABLES | ICEBERG TABLES | MATERIALIZED VIEWS | MODELS | NETWORK RULES | NOTEBOOKS | PASSWORD POLICIES | PIPES | PROCEDURES | SECRETS | SERVICES | SEQUENCES | SNAPSHOTS | STAGES | STREAMS | TABLES | TASKS | VIEWS.
|
|
1003
1119
|
*/
|
|
1004
1120
|
objectTypePlural: pulumi.Input<string>;
|
|
1005
1121
|
}
|
|
@@ -1034,6 +1150,21 @@ export interface MaterializedViewTag {
|
|
|
1034
1150
|
*/
|
|
1035
1151
|
value: pulumi.Input<string>;
|
|
1036
1152
|
}
|
|
1153
|
+
export interface NetworkPolicyDescribeOutput {
|
|
1154
|
+
allowedIpList?: pulumi.Input<string>;
|
|
1155
|
+
allowedNetworkRuleList?: pulumi.Input<string>;
|
|
1156
|
+
blockedIpList?: pulumi.Input<string>;
|
|
1157
|
+
blockedNetworkRuleList?: pulumi.Input<string>;
|
|
1158
|
+
}
|
|
1159
|
+
export interface NetworkPolicyShowOutput {
|
|
1160
|
+
comment?: pulumi.Input<string>;
|
|
1161
|
+
createdOn?: pulumi.Input<string>;
|
|
1162
|
+
entriesInAllowedIpList?: pulumi.Input<number>;
|
|
1163
|
+
entriesInAllowedNetworkRules?: pulumi.Input<number>;
|
|
1164
|
+
entriesInBlockedIpList?: pulumi.Input<number>;
|
|
1165
|
+
entriesInBlockedNetworkRules?: pulumi.Input<number>;
|
|
1166
|
+
name?: pulumi.Input<string>;
|
|
1167
|
+
}
|
|
1037
1168
|
export interface OauthIntegrationForCustomClientsDescribeOutput {
|
|
1038
1169
|
blockedRolesLists?: pulumi.Input<pulumi.Input<inputs.OauthIntegrationForCustomClientsDescribeOutputBlockedRolesList>[]>;
|
|
1039
1170
|
comments?: pulumi.Input<pulumi.Input<inputs.OauthIntegrationForCustomClientsDescribeOutputComment>[]>;
|
|
@@ -1366,23 +1497,17 @@ export interface ProviderTokenAccessor {
|
|
|
1366
1497
|
*/
|
|
1367
1498
|
tokenEndpoint: pulumi.Input<string>;
|
|
1368
1499
|
}
|
|
1369
|
-
export interface
|
|
1370
|
-
|
|
1371
|
-
|
|
1372
|
-
|
|
1373
|
-
|
|
1374
|
-
|
|
1375
|
-
|
|
1376
|
-
|
|
1377
|
-
|
|
1378
|
-
|
|
1379
|
-
|
|
1380
|
-
*/
|
|
1381
|
-
schema?: pulumi.Input<string>;
|
|
1382
|
-
/**
|
|
1383
|
-
* Tag value, e.g. marketing_info.
|
|
1384
|
-
*/
|
|
1385
|
-
value: pulumi.Input<string>;
|
|
1500
|
+
export interface RoleShowOutput {
|
|
1501
|
+
assignedToUsers?: pulumi.Input<number>;
|
|
1502
|
+
comment?: pulumi.Input<string>;
|
|
1503
|
+
createdOn?: pulumi.Input<string>;
|
|
1504
|
+
grantedRoles?: pulumi.Input<number>;
|
|
1505
|
+
grantedToRoles?: pulumi.Input<number>;
|
|
1506
|
+
isCurrent?: pulumi.Input<boolean>;
|
|
1507
|
+
isDefault?: pulumi.Input<boolean>;
|
|
1508
|
+
isInherited?: pulumi.Input<boolean>;
|
|
1509
|
+
name?: pulumi.Input<string>;
|
|
1510
|
+
owner?: pulumi.Input<string>;
|
|
1386
1511
|
}
|
|
1387
1512
|
export interface Saml2IntegrationDescribeOutput {
|
|
1388
1513
|
allowedEmailPatterns?: pulumi.Input<pulumi.Input<inputs.Saml2IntegrationDescribeOutputAllowedEmailPattern>[]>;
|
|
@@ -1527,23 +1652,161 @@ export interface Saml2IntegrationShowOutput {
|
|
|
1527
1652
|
integrationType?: pulumi.Input<string>;
|
|
1528
1653
|
name?: pulumi.Input<string>;
|
|
1529
1654
|
}
|
|
1530
|
-
export interface
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1655
|
+
export interface SchemaDescribeOutput {
|
|
1656
|
+
createdOn?: pulumi.Input<string>;
|
|
1657
|
+
kind?: pulumi.Input<string>;
|
|
1658
|
+
name?: pulumi.Input<string>;
|
|
1659
|
+
}
|
|
1660
|
+
export interface SchemaParameter {
|
|
1661
|
+
catalogs?: pulumi.Input<pulumi.Input<inputs.SchemaParameterCatalog>[]>;
|
|
1662
|
+
dataRetentionTimeInDays?: pulumi.Input<pulumi.Input<inputs.SchemaParameterDataRetentionTimeInDay>[]>;
|
|
1663
|
+
defaultDdlCollations?: pulumi.Input<pulumi.Input<inputs.SchemaParameterDefaultDdlCollation>[]>;
|
|
1664
|
+
enableConsoleOutputs?: pulumi.Input<pulumi.Input<inputs.SchemaParameterEnableConsoleOutput>[]>;
|
|
1665
|
+
externalVolumes?: pulumi.Input<pulumi.Input<inputs.SchemaParameterExternalVolume>[]>;
|
|
1666
|
+
logLevels?: pulumi.Input<pulumi.Input<inputs.SchemaParameterLogLevel>[]>;
|
|
1667
|
+
maxDataExtensionTimeInDays?: pulumi.Input<pulumi.Input<inputs.SchemaParameterMaxDataExtensionTimeInDay>[]>;
|
|
1668
|
+
pipeExecutionPauseds?: pulumi.Input<pulumi.Input<inputs.SchemaParameterPipeExecutionPaused>[]>;
|
|
1669
|
+
quotedIdentifiersIgnoreCases?: pulumi.Input<pulumi.Input<inputs.SchemaParameterQuotedIdentifiersIgnoreCase>[]>;
|
|
1670
|
+
replaceInvalidCharacters?: pulumi.Input<pulumi.Input<inputs.SchemaParameterReplaceInvalidCharacter>[]>;
|
|
1671
|
+
storageSerializationPolicies?: pulumi.Input<pulumi.Input<inputs.SchemaParameterStorageSerializationPolicy>[]>;
|
|
1672
|
+
suspendTaskAfterNumFailures?: pulumi.Input<pulumi.Input<inputs.SchemaParameterSuspendTaskAfterNumFailure>[]>;
|
|
1673
|
+
taskAutoRetryAttempts?: pulumi.Input<pulumi.Input<inputs.SchemaParameterTaskAutoRetryAttempt>[]>;
|
|
1674
|
+
traceLevels?: pulumi.Input<pulumi.Input<inputs.SchemaParameterTraceLevel>[]>;
|
|
1675
|
+
userTaskManagedInitialWarehouseSizes?: pulumi.Input<pulumi.Input<inputs.SchemaParameterUserTaskManagedInitialWarehouseSize>[]>;
|
|
1676
|
+
userTaskMinimumTriggerIntervalInSeconds?: pulumi.Input<pulumi.Input<inputs.SchemaParameterUserTaskMinimumTriggerIntervalInSecond>[]>;
|
|
1677
|
+
userTaskTimeoutMs?: pulumi.Input<pulumi.Input<inputs.SchemaParameterUserTaskTimeoutM>[]>;
|
|
1678
|
+
}
|
|
1679
|
+
export interface SchemaParameterCatalog {
|
|
1680
|
+
default?: pulumi.Input<string>;
|
|
1681
|
+
description?: pulumi.Input<string>;
|
|
1682
|
+
key?: pulumi.Input<string>;
|
|
1683
|
+
level?: pulumi.Input<string>;
|
|
1684
|
+
value?: pulumi.Input<string>;
|
|
1685
|
+
}
|
|
1686
|
+
export interface SchemaParameterDataRetentionTimeInDay {
|
|
1687
|
+
default?: pulumi.Input<string>;
|
|
1688
|
+
description?: pulumi.Input<string>;
|
|
1689
|
+
key?: pulumi.Input<string>;
|
|
1690
|
+
level?: pulumi.Input<string>;
|
|
1691
|
+
value?: pulumi.Input<string>;
|
|
1692
|
+
}
|
|
1693
|
+
export interface SchemaParameterDefaultDdlCollation {
|
|
1694
|
+
default?: pulumi.Input<string>;
|
|
1695
|
+
description?: pulumi.Input<string>;
|
|
1696
|
+
key?: pulumi.Input<string>;
|
|
1697
|
+
level?: pulumi.Input<string>;
|
|
1698
|
+
value?: pulumi.Input<string>;
|
|
1699
|
+
}
|
|
1700
|
+
export interface SchemaParameterEnableConsoleOutput {
|
|
1701
|
+
default?: pulumi.Input<string>;
|
|
1702
|
+
description?: pulumi.Input<string>;
|
|
1703
|
+
key?: pulumi.Input<string>;
|
|
1704
|
+
level?: pulumi.Input<string>;
|
|
1705
|
+
value?: pulumi.Input<string>;
|
|
1706
|
+
}
|
|
1707
|
+
export interface SchemaParameterExternalVolume {
|
|
1708
|
+
default?: pulumi.Input<string>;
|
|
1709
|
+
description?: pulumi.Input<string>;
|
|
1710
|
+
key?: pulumi.Input<string>;
|
|
1711
|
+
level?: pulumi.Input<string>;
|
|
1712
|
+
value?: pulumi.Input<string>;
|
|
1713
|
+
}
|
|
1714
|
+
export interface SchemaParameterLogLevel {
|
|
1715
|
+
default?: pulumi.Input<string>;
|
|
1716
|
+
description?: pulumi.Input<string>;
|
|
1717
|
+
key?: pulumi.Input<string>;
|
|
1718
|
+
level?: pulumi.Input<string>;
|
|
1719
|
+
value?: pulumi.Input<string>;
|
|
1720
|
+
}
|
|
1721
|
+
export interface SchemaParameterMaxDataExtensionTimeInDay {
|
|
1722
|
+
default?: pulumi.Input<string>;
|
|
1723
|
+
description?: pulumi.Input<string>;
|
|
1724
|
+
key?: pulumi.Input<string>;
|
|
1725
|
+
level?: pulumi.Input<string>;
|
|
1726
|
+
value?: pulumi.Input<string>;
|
|
1727
|
+
}
|
|
1728
|
+
export interface SchemaParameterPipeExecutionPaused {
|
|
1729
|
+
default?: pulumi.Input<string>;
|
|
1730
|
+
description?: pulumi.Input<string>;
|
|
1731
|
+
key?: pulumi.Input<string>;
|
|
1732
|
+
level?: pulumi.Input<string>;
|
|
1733
|
+
value?: pulumi.Input<string>;
|
|
1734
|
+
}
|
|
1735
|
+
export interface SchemaParameterQuotedIdentifiersIgnoreCase {
|
|
1736
|
+
default?: pulumi.Input<string>;
|
|
1737
|
+
description?: pulumi.Input<string>;
|
|
1738
|
+
key?: pulumi.Input<string>;
|
|
1739
|
+
level?: pulumi.Input<string>;
|
|
1740
|
+
value?: pulumi.Input<string>;
|
|
1741
|
+
}
|
|
1742
|
+
export interface SchemaParameterReplaceInvalidCharacter {
|
|
1743
|
+
default?: pulumi.Input<string>;
|
|
1744
|
+
description?: pulumi.Input<string>;
|
|
1745
|
+
key?: pulumi.Input<string>;
|
|
1746
|
+
level?: pulumi.Input<string>;
|
|
1747
|
+
value?: pulumi.Input<string>;
|
|
1748
|
+
}
|
|
1749
|
+
export interface SchemaParameterStorageSerializationPolicy {
|
|
1750
|
+
default?: pulumi.Input<string>;
|
|
1751
|
+
description?: pulumi.Input<string>;
|
|
1752
|
+
key?: pulumi.Input<string>;
|
|
1753
|
+
level?: pulumi.Input<string>;
|
|
1754
|
+
value?: pulumi.Input<string>;
|
|
1755
|
+
}
|
|
1756
|
+
export interface SchemaParameterSuspendTaskAfterNumFailure {
|
|
1757
|
+
default?: pulumi.Input<string>;
|
|
1758
|
+
description?: pulumi.Input<string>;
|
|
1759
|
+
key?: pulumi.Input<string>;
|
|
1760
|
+
level?: pulumi.Input<string>;
|
|
1761
|
+
value?: pulumi.Input<string>;
|
|
1762
|
+
}
|
|
1763
|
+
export interface SchemaParameterTaskAutoRetryAttempt {
|
|
1764
|
+
default?: pulumi.Input<string>;
|
|
1765
|
+
description?: pulumi.Input<string>;
|
|
1766
|
+
key?: pulumi.Input<string>;
|
|
1767
|
+
level?: pulumi.Input<string>;
|
|
1768
|
+
value?: pulumi.Input<string>;
|
|
1769
|
+
}
|
|
1770
|
+
export interface SchemaParameterTraceLevel {
|
|
1771
|
+
default?: pulumi.Input<string>;
|
|
1772
|
+
description?: pulumi.Input<string>;
|
|
1773
|
+
key?: pulumi.Input<string>;
|
|
1774
|
+
level?: pulumi.Input<string>;
|
|
1775
|
+
value?: pulumi.Input<string>;
|
|
1776
|
+
}
|
|
1777
|
+
export interface SchemaParameterUserTaskManagedInitialWarehouseSize {
|
|
1778
|
+
default?: pulumi.Input<string>;
|
|
1779
|
+
description?: pulumi.Input<string>;
|
|
1780
|
+
key?: pulumi.Input<string>;
|
|
1781
|
+
level?: pulumi.Input<string>;
|
|
1782
|
+
value?: pulumi.Input<string>;
|
|
1783
|
+
}
|
|
1784
|
+
export interface SchemaParameterUserTaskMinimumTriggerIntervalInSecond {
|
|
1785
|
+
default?: pulumi.Input<string>;
|
|
1786
|
+
description?: pulumi.Input<string>;
|
|
1787
|
+
key?: pulumi.Input<string>;
|
|
1788
|
+
level?: pulumi.Input<string>;
|
|
1789
|
+
value?: pulumi.Input<string>;
|
|
1790
|
+
}
|
|
1791
|
+
export interface SchemaParameterUserTaskTimeoutM {
|
|
1792
|
+
default?: pulumi.Input<string>;
|
|
1793
|
+
description?: pulumi.Input<string>;
|
|
1794
|
+
key?: pulumi.Input<string>;
|
|
1795
|
+
level?: pulumi.Input<string>;
|
|
1796
|
+
value?: pulumi.Input<string>;
|
|
1797
|
+
}
|
|
1798
|
+
export interface SchemaShowOutput {
|
|
1799
|
+
comment?: pulumi.Input<string>;
|
|
1800
|
+
createdOn?: pulumi.Input<string>;
|
|
1801
|
+
databaseName?: pulumi.Input<string>;
|
|
1802
|
+
droppedOn?: pulumi.Input<string>;
|
|
1803
|
+
isCurrent?: pulumi.Input<boolean>;
|
|
1804
|
+
isDefault?: pulumi.Input<boolean>;
|
|
1805
|
+
name?: pulumi.Input<string>;
|
|
1806
|
+
options?: pulumi.Input<string>;
|
|
1807
|
+
owner?: pulumi.Input<string>;
|
|
1808
|
+
ownerRoleType?: pulumi.Input<string>;
|
|
1809
|
+
retentionTime?: pulumi.Input<string>;
|
|
1547
1810
|
}
|
|
1548
1811
|
export interface ScimIntegrationDescribeOutput {
|
|
1549
1812
|
comments?: pulumi.Input<pulumi.Input<inputs.ScimIntegrationDescribeOutputComment>[]>;
|
|
@@ -1608,6 +1871,31 @@ export interface StageTag {
|
|
|
1608
1871
|
*/
|
|
1609
1872
|
value: pulumi.Input<string>;
|
|
1610
1873
|
}
|
|
1874
|
+
export interface StreamlitDescribeOutput {
|
|
1875
|
+
defaultPackages?: pulumi.Input<string>;
|
|
1876
|
+
externalAccessIntegrations?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1877
|
+
externalAccessSecrets?: pulumi.Input<string>;
|
|
1878
|
+
importUrls?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1879
|
+
mainFile?: pulumi.Input<string>;
|
|
1880
|
+
name?: pulumi.Input<string>;
|
|
1881
|
+
queryWarehouse?: pulumi.Input<string>;
|
|
1882
|
+
rootLocation?: pulumi.Input<string>;
|
|
1883
|
+
title?: pulumi.Input<string>;
|
|
1884
|
+
urlId?: pulumi.Input<string>;
|
|
1885
|
+
userPackages?: pulumi.Input<pulumi.Input<string>[]>;
|
|
1886
|
+
}
|
|
1887
|
+
export interface StreamlitShowOutput {
|
|
1888
|
+
comment?: pulumi.Input<string>;
|
|
1889
|
+
createdOn?: pulumi.Input<string>;
|
|
1890
|
+
databaseName?: pulumi.Input<string>;
|
|
1891
|
+
name?: pulumi.Input<string>;
|
|
1892
|
+
owner?: pulumi.Input<string>;
|
|
1893
|
+
ownerRoleType?: pulumi.Input<string>;
|
|
1894
|
+
queryWarehouse?: pulumi.Input<string>;
|
|
1895
|
+
schemaName?: pulumi.Input<string>;
|
|
1896
|
+
title?: pulumi.Input<string>;
|
|
1897
|
+
urlId?: pulumi.Input<string>;
|
|
1898
|
+
}
|
|
1611
1899
|
export interface TableColumn {
|
|
1612
1900
|
/**
|
|
1613
1901
|
* Column collation, e.g. utf8
|
|
@@ -1642,7 +1930,7 @@ export interface TableColumn {
|
|
|
1642
1930
|
*/
|
|
1643
1931
|
schemaEvolutionRecord?: pulumi.Input<string>;
|
|
1644
1932
|
/**
|
|
1645
|
-
* Column type, e.g. VARIANT
|
|
1933
|
+
* Column type, e.g. VARIANT. For a full list of column types, see [Summary of Data Types](https://docs.snowflake.com/en/sql-reference/intro-summary-data-types).
|
|
1646
1934
|
*/
|
|
1647
1935
|
type: pulumi.Input<string>;
|
|
1648
1936
|
}
|