@pulumi/snowflake 2.1.0-alpha.1750230214 → 2.1.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/account.d.ts +12 -0
- package/account.js +2 -0
- package/account.js.map +1 -1
- package/computePool.d.ts +177 -0
- package/computePool.js +87 -0
- package/computePool.js.map +1 -0
- package/config/vars.d.ts +4 -2
- package/config/vars.js.map +1 -1
- package/cortexSearchService.d.ts +22 -0
- package/cortexSearchService.js +4 -0
- package/cortexSearchService.js.map +1 -1
- package/currentAccount.d.ts +1512 -0
- package/currentAccount.js +302 -0
- package/currentAccount.js.map +1 -0
- package/database.d.ts +3 -3
- package/getComputePools.d.ts +86 -0
- package/getComputePools.js +40 -0
- package/getComputePools.js.map +1 -0
- package/getCortexSearchServices.d.ts +3 -3
- package/getDatabaseRoles.d.ts +3 -3
- package/getDatabases.d.ts +3 -3
- package/getGitRepositories.d.ts +86 -0
- package/getGitRepositories.js +40 -0
- package/getGitRepositories.js.map +1 -0
- package/getImageRepositories.d.ts +62 -0
- package/getImageRepositories.js +36 -0
- package/getImageRepositories.js.map +1 -0
- package/getMaskingPolicies.d.ts +3 -3
- package/getRowAccessPolicies.d.ts +3 -3
- package/getSchemas.d.ts +3 -3
- package/getServices.d.ts +110 -0
- package/getServices.js +44 -0
- package/getServices.js.map +1 -0
- package/getStreamlits.d.ts +3 -3
- package/getStreams.d.ts +3 -3
- package/getTables.d.ts +56 -43
- package/getTables.js +14 -30
- package/getTables.js.map +1 -1
- package/getTasks.d.ts +3 -3
- package/getUsers.d.ts +3 -3
- package/getViews.d.ts +3 -3
- package/gitRepository.d.ts +153 -0
- package/gitRepository.js +86 -0
- package/gitRepository.js.map +1 -0
- package/imageRepository.d.ts +109 -0
- package/imageRepository.js +72 -0
- package/imageRepository.js.map +1 -0
- package/index.d.ts +30 -0
- package/index.js +46 -4
- package/index.js.map +1 -1
- package/jobService.d.ts +185 -0
- package/jobService.js +89 -0
- package/jobService.js.map +1 -0
- package/package.json +2 -2
- package/provider.d.ts +8 -4
- package/provider.js.map +1 -1
- package/schema.d.ts +3 -3
- package/secondaryDatabase.d.ts +3 -3
- package/service.d.ts +245 -0
- package/service.js +99 -0
- package/service.js.map +1 -0
- package/sharedDatabase.d.ts +3 -3
- package/tagAssociation.d.ts +3 -3
- package/types/input.d.ts +540 -2
- package/types/output.d.ts +655 -4
package/types/output.d.ts
CHANGED
|
@@ -343,6 +343,69 @@ export interface AuthenticationPolicyShowOutput {
|
|
|
343
343
|
ownerRoleType: string;
|
|
344
344
|
schemaName: string;
|
|
345
345
|
}
|
|
346
|
+
export interface ComputePoolDescribeOutput {
|
|
347
|
+
activeNodes: number;
|
|
348
|
+
application: string;
|
|
349
|
+
autoResume: boolean;
|
|
350
|
+
autoSuspendSecs: number;
|
|
351
|
+
comment: string;
|
|
352
|
+
createdOn: string;
|
|
353
|
+
errorCode: string;
|
|
354
|
+
idleNodes: number;
|
|
355
|
+
instanceFamily: string;
|
|
356
|
+
isExclusive: boolean;
|
|
357
|
+
maxNodes: number;
|
|
358
|
+
minNodes: number;
|
|
359
|
+
name: string;
|
|
360
|
+
numJobs: number;
|
|
361
|
+
numServices: number;
|
|
362
|
+
owner: string;
|
|
363
|
+
resumedOn: string;
|
|
364
|
+
state: string;
|
|
365
|
+
statusMessage: string;
|
|
366
|
+
targetNodes: number;
|
|
367
|
+
updatedOn: string;
|
|
368
|
+
}
|
|
369
|
+
export interface ComputePoolShowOutput {
|
|
370
|
+
activeNodes: number;
|
|
371
|
+
application: string;
|
|
372
|
+
autoResume: boolean;
|
|
373
|
+
autoSuspendSecs: number;
|
|
374
|
+
comment: string;
|
|
375
|
+
createdOn: string;
|
|
376
|
+
idleNodes: number;
|
|
377
|
+
instanceFamily: string;
|
|
378
|
+
isExclusive: boolean;
|
|
379
|
+
maxNodes: number;
|
|
380
|
+
minNodes: number;
|
|
381
|
+
name: string;
|
|
382
|
+
numJobs: number;
|
|
383
|
+
numServices: number;
|
|
384
|
+
owner: string;
|
|
385
|
+
resumedOn: string;
|
|
386
|
+
state: string;
|
|
387
|
+
targetNodes: number;
|
|
388
|
+
updatedOn: string;
|
|
389
|
+
}
|
|
390
|
+
export interface CortexSearchServiceDescribeOutput {
|
|
391
|
+
attributeColumns: string[];
|
|
392
|
+
columns: string[];
|
|
393
|
+
comment: string;
|
|
394
|
+
createdOn: string;
|
|
395
|
+
dataTimestamp: string;
|
|
396
|
+
databaseName: string;
|
|
397
|
+
definition: string;
|
|
398
|
+
embeddingModel: string;
|
|
399
|
+
indexingError: string;
|
|
400
|
+
indexingState: string;
|
|
401
|
+
name: string;
|
|
402
|
+
schemaName: string;
|
|
403
|
+
searchColumn: string;
|
|
404
|
+
serviceQueryUrl: string;
|
|
405
|
+
sourceDataNumRows: number;
|
|
406
|
+
targetLag: string;
|
|
407
|
+
warehouse: string;
|
|
408
|
+
}
|
|
346
409
|
export interface DatabaseReplication {
|
|
347
410
|
/**
|
|
348
411
|
* Entry to enable replication and optionally failover for a given account identifier.
|
|
@@ -1112,6 +1175,70 @@ export interface GetAlertsAlert {
|
|
|
1112
1175
|
*/
|
|
1113
1176
|
schemaName: string;
|
|
1114
1177
|
}
|
|
1178
|
+
export interface GetComputePoolsComputePool {
|
|
1179
|
+
/**
|
|
1180
|
+
* Holds the output of DESCRIBE COMPUTE POOL.
|
|
1181
|
+
*/
|
|
1182
|
+
describeOutputs: outputs.GetComputePoolsComputePoolDescribeOutput[];
|
|
1183
|
+
/**
|
|
1184
|
+
* Holds the output of SHOW COMPUTE POOLS.
|
|
1185
|
+
*/
|
|
1186
|
+
showOutputs: outputs.GetComputePoolsComputePoolShowOutput[];
|
|
1187
|
+
}
|
|
1188
|
+
export interface GetComputePoolsComputePoolDescribeOutput {
|
|
1189
|
+
activeNodes: number;
|
|
1190
|
+
application: string;
|
|
1191
|
+
autoResume: boolean;
|
|
1192
|
+
autoSuspendSecs: number;
|
|
1193
|
+
comment: string;
|
|
1194
|
+
createdOn: string;
|
|
1195
|
+
errorCode: string;
|
|
1196
|
+
idleNodes: number;
|
|
1197
|
+
instanceFamily: string;
|
|
1198
|
+
isExclusive: boolean;
|
|
1199
|
+
maxNodes: number;
|
|
1200
|
+
minNodes: number;
|
|
1201
|
+
name: string;
|
|
1202
|
+
numJobs: number;
|
|
1203
|
+
numServices: number;
|
|
1204
|
+
owner: string;
|
|
1205
|
+
resumedOn: string;
|
|
1206
|
+
state: string;
|
|
1207
|
+
statusMessage: string;
|
|
1208
|
+
targetNodes: number;
|
|
1209
|
+
updatedOn: string;
|
|
1210
|
+
}
|
|
1211
|
+
export interface GetComputePoolsComputePoolShowOutput {
|
|
1212
|
+
activeNodes: number;
|
|
1213
|
+
application: string;
|
|
1214
|
+
autoResume: boolean;
|
|
1215
|
+
autoSuspendSecs: number;
|
|
1216
|
+
comment: string;
|
|
1217
|
+
createdOn: string;
|
|
1218
|
+
idleNodes: number;
|
|
1219
|
+
instanceFamily: string;
|
|
1220
|
+
isExclusive: boolean;
|
|
1221
|
+
maxNodes: number;
|
|
1222
|
+
minNodes: number;
|
|
1223
|
+
name: string;
|
|
1224
|
+
numJobs: number;
|
|
1225
|
+
numServices: number;
|
|
1226
|
+
owner: string;
|
|
1227
|
+
resumedOn: string;
|
|
1228
|
+
state: string;
|
|
1229
|
+
targetNodes: number;
|
|
1230
|
+
updatedOn: string;
|
|
1231
|
+
}
|
|
1232
|
+
export interface GetComputePoolsLimit {
|
|
1233
|
+
/**
|
|
1234
|
+
* 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.
|
|
1235
|
+
*/
|
|
1236
|
+
from?: string;
|
|
1237
|
+
/**
|
|
1238
|
+
* The maximum number of rows to return.
|
|
1239
|
+
*/
|
|
1240
|
+
rows: number;
|
|
1241
|
+
}
|
|
1115
1242
|
export interface GetConnectionsConnection {
|
|
1116
1243
|
/**
|
|
1117
1244
|
* Holds the output of SHOW CONNECTIONS.
|
|
@@ -1593,6 +1720,66 @@ export interface GetFunctionsFunction {
|
|
|
1593
1720
|
returnType: string;
|
|
1594
1721
|
schema: string;
|
|
1595
1722
|
}
|
|
1723
|
+
export interface GetGitRepositoriesGitRepository {
|
|
1724
|
+
/**
|
|
1725
|
+
* Holds the output of DESCRIBE GIT REPOSITORY.
|
|
1726
|
+
*/
|
|
1727
|
+
describeOutputs: outputs.GetGitRepositoriesGitRepositoryDescribeOutput[];
|
|
1728
|
+
/**
|
|
1729
|
+
* Holds the output of SHOW GIT REPOSITORIES.
|
|
1730
|
+
*/
|
|
1731
|
+
showOutputs: outputs.GetGitRepositoriesGitRepositoryShowOutput[];
|
|
1732
|
+
}
|
|
1733
|
+
export interface GetGitRepositoriesGitRepositoryDescribeOutput {
|
|
1734
|
+
apiIntegration: string;
|
|
1735
|
+
comment: string;
|
|
1736
|
+
createdOn: string;
|
|
1737
|
+
databaseName: string;
|
|
1738
|
+
gitCredentials: string;
|
|
1739
|
+
lastFetchedAt: string;
|
|
1740
|
+
name: string;
|
|
1741
|
+
origin: string;
|
|
1742
|
+
owner: string;
|
|
1743
|
+
ownerRoleType: string;
|
|
1744
|
+
schemaName: string;
|
|
1745
|
+
}
|
|
1746
|
+
export interface GetGitRepositoriesGitRepositoryShowOutput {
|
|
1747
|
+
apiIntegration: string;
|
|
1748
|
+
comment: string;
|
|
1749
|
+
createdOn: string;
|
|
1750
|
+
databaseName: string;
|
|
1751
|
+
gitCredentials: string;
|
|
1752
|
+
lastFetchedAt: string;
|
|
1753
|
+
name: string;
|
|
1754
|
+
origin: string;
|
|
1755
|
+
owner: string;
|
|
1756
|
+
ownerRoleType: string;
|
|
1757
|
+
schemaName: string;
|
|
1758
|
+
}
|
|
1759
|
+
export interface GetGitRepositoriesIn {
|
|
1760
|
+
/**
|
|
1761
|
+
* Returns records for the entire account.
|
|
1762
|
+
*/
|
|
1763
|
+
account?: boolean;
|
|
1764
|
+
/**
|
|
1765
|
+
* Returns records for the current database in use or for a specified database.
|
|
1766
|
+
*/
|
|
1767
|
+
database?: string;
|
|
1768
|
+
/**
|
|
1769
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1770
|
+
*/
|
|
1771
|
+
schema?: string;
|
|
1772
|
+
}
|
|
1773
|
+
export interface GetGitRepositoriesLimit {
|
|
1774
|
+
/**
|
|
1775
|
+
* 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.
|
|
1776
|
+
*/
|
|
1777
|
+
from?: string;
|
|
1778
|
+
/**
|
|
1779
|
+
* The maximum number of rows to return.
|
|
1780
|
+
*/
|
|
1781
|
+
rows: number;
|
|
1782
|
+
}
|
|
1596
1783
|
export interface GetGrantsFutureGrantsIn {
|
|
1597
1784
|
/**
|
|
1598
1785
|
* Lists all privileges on new (i.e. future) objects of a specified type in the database granted to a role.
|
|
@@ -1711,6 +1898,37 @@ export interface GetGrantsGrantsToShare {
|
|
|
1711
1898
|
*/
|
|
1712
1899
|
shareName: string;
|
|
1713
1900
|
}
|
|
1901
|
+
export interface GetImageRepositoriesImageRepository {
|
|
1902
|
+
/**
|
|
1903
|
+
* Holds the output of SHOW IMAGE REPOSITORIES.
|
|
1904
|
+
*/
|
|
1905
|
+
showOutputs: outputs.GetImageRepositoriesImageRepositoryShowOutput[];
|
|
1906
|
+
}
|
|
1907
|
+
export interface GetImageRepositoriesImageRepositoryShowOutput {
|
|
1908
|
+
comment: string;
|
|
1909
|
+
createdOn: string;
|
|
1910
|
+
databaseName: string;
|
|
1911
|
+
name: string;
|
|
1912
|
+
owner: string;
|
|
1913
|
+
ownerRoleType: string;
|
|
1914
|
+
privatelinkRepositoryUrl: string;
|
|
1915
|
+
repositoryUrl: string;
|
|
1916
|
+
schemaName: string;
|
|
1917
|
+
}
|
|
1918
|
+
export interface GetImageRepositoriesIn {
|
|
1919
|
+
/**
|
|
1920
|
+
* Returns records for the entire account.
|
|
1921
|
+
*/
|
|
1922
|
+
account?: boolean;
|
|
1923
|
+
/**
|
|
1924
|
+
* Returns records for the current database in use or for a specified database.
|
|
1925
|
+
*/
|
|
1926
|
+
database?: string;
|
|
1927
|
+
/**
|
|
1928
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1929
|
+
*/
|
|
1930
|
+
schema?: string;
|
|
1931
|
+
}
|
|
1714
1932
|
export interface GetMaskingPoliciesIn {
|
|
1715
1933
|
/**
|
|
1716
1934
|
* Returns records for the entire account.
|
|
@@ -2571,6 +2789,105 @@ export interface GetSequencesSequence {
|
|
|
2571
2789
|
name: string;
|
|
2572
2790
|
schema: string;
|
|
2573
2791
|
}
|
|
2792
|
+
export interface GetServicesIn {
|
|
2793
|
+
/**
|
|
2794
|
+
* Returns records for the entire account.
|
|
2795
|
+
*/
|
|
2796
|
+
account?: boolean;
|
|
2797
|
+
/**
|
|
2798
|
+
* Returns records for the specified compute pool.
|
|
2799
|
+
*/
|
|
2800
|
+
computePool?: string;
|
|
2801
|
+
/**
|
|
2802
|
+
* Returns records for the current database in use or for a specified database.
|
|
2803
|
+
*/
|
|
2804
|
+
database?: string;
|
|
2805
|
+
/**
|
|
2806
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
2807
|
+
*/
|
|
2808
|
+
schema?: string;
|
|
2809
|
+
}
|
|
2810
|
+
export interface GetServicesLimit {
|
|
2811
|
+
/**
|
|
2812
|
+
* 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.
|
|
2813
|
+
*/
|
|
2814
|
+
from?: string;
|
|
2815
|
+
/**
|
|
2816
|
+
* The maximum number of rows to return.
|
|
2817
|
+
*/
|
|
2818
|
+
rows: number;
|
|
2819
|
+
}
|
|
2820
|
+
export interface GetServicesService {
|
|
2821
|
+
/**
|
|
2822
|
+
* Holds the output of DESCRIBE SERVICE.
|
|
2823
|
+
*/
|
|
2824
|
+
describeOutputs: outputs.GetServicesServiceDescribeOutput[];
|
|
2825
|
+
/**
|
|
2826
|
+
* Holds the output of SHOW SERVICES.
|
|
2827
|
+
*/
|
|
2828
|
+
showOutputs: outputs.GetServicesServiceShowOutput[];
|
|
2829
|
+
}
|
|
2830
|
+
export interface GetServicesServiceDescribeOutput {
|
|
2831
|
+
autoResume: boolean;
|
|
2832
|
+
autoSuspendSecs: number;
|
|
2833
|
+
comment: string;
|
|
2834
|
+
computePool: string;
|
|
2835
|
+
createdOn: string;
|
|
2836
|
+
currentInstances: number;
|
|
2837
|
+
databaseName: string;
|
|
2838
|
+
dnsName: string;
|
|
2839
|
+
externalAccessIntegrations: string[];
|
|
2840
|
+
isAsyncJob: boolean;
|
|
2841
|
+
isJob: boolean;
|
|
2842
|
+
isUpgrading: boolean;
|
|
2843
|
+
managingObjectDomain: string;
|
|
2844
|
+
managingObjectName: string;
|
|
2845
|
+
maxInstances: number;
|
|
2846
|
+
minInstances: number;
|
|
2847
|
+
minReadyInstances: number;
|
|
2848
|
+
name: string;
|
|
2849
|
+
owner: string;
|
|
2850
|
+
ownerRoleType: string;
|
|
2851
|
+
queryWarehouse: string;
|
|
2852
|
+
resumedOn: string;
|
|
2853
|
+
schemaName: string;
|
|
2854
|
+
spec: string;
|
|
2855
|
+
specDigest: string;
|
|
2856
|
+
status: string;
|
|
2857
|
+
suspendedOn: string;
|
|
2858
|
+
targetInstances: number;
|
|
2859
|
+
updatedOn: string;
|
|
2860
|
+
}
|
|
2861
|
+
export interface GetServicesServiceShowOutput {
|
|
2862
|
+
autoResume: boolean;
|
|
2863
|
+
autoSuspendSecs: number;
|
|
2864
|
+
comment: string;
|
|
2865
|
+
computePool: string;
|
|
2866
|
+
createdOn: string;
|
|
2867
|
+
currentInstances: number;
|
|
2868
|
+
databaseName: string;
|
|
2869
|
+
dnsName: string;
|
|
2870
|
+
externalAccessIntegrations: string[];
|
|
2871
|
+
isAsyncJob: boolean;
|
|
2872
|
+
isJob: boolean;
|
|
2873
|
+
isUpgrading: boolean;
|
|
2874
|
+
managingObjectDomain: string;
|
|
2875
|
+
managingObjectName: string;
|
|
2876
|
+
maxInstances: number;
|
|
2877
|
+
minInstances: number;
|
|
2878
|
+
minReadyInstances: number;
|
|
2879
|
+
name: string;
|
|
2880
|
+
owner: string;
|
|
2881
|
+
ownerRoleType: string;
|
|
2882
|
+
queryWarehouse: string;
|
|
2883
|
+
resumedOn: string;
|
|
2884
|
+
schemaName: string;
|
|
2885
|
+
specDigest: string;
|
|
2886
|
+
status: string;
|
|
2887
|
+
suspendedOn: string;
|
|
2888
|
+
targetInstances: number;
|
|
2889
|
+
updatedOn: string;
|
|
2890
|
+
}
|
|
2574
2891
|
export interface GetSharesShare {
|
|
2575
2892
|
/**
|
|
2576
2893
|
* The comment on the share.
|
|
@@ -2741,11 +3058,86 @@ export interface GetStreamsStreamShowOutput {
|
|
|
2741
3058
|
tableName: string;
|
|
2742
3059
|
type: string;
|
|
2743
3060
|
}
|
|
3061
|
+
export interface GetTablesIn {
|
|
3062
|
+
/**
|
|
3063
|
+
* Returns records for the entire account.
|
|
3064
|
+
*/
|
|
3065
|
+
account?: boolean;
|
|
3066
|
+
/**
|
|
3067
|
+
* Returns records for the specified application.
|
|
3068
|
+
*/
|
|
3069
|
+
application?: string;
|
|
3070
|
+
/**
|
|
3071
|
+
* Returns records for the specified application package.
|
|
3072
|
+
*/
|
|
3073
|
+
applicationPackage?: string;
|
|
3074
|
+
/**
|
|
3075
|
+
* Returns records for the current database in use or for a specified database.
|
|
3076
|
+
*/
|
|
3077
|
+
database?: string;
|
|
3078
|
+
/**
|
|
3079
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
3080
|
+
*/
|
|
3081
|
+
schema?: string;
|
|
3082
|
+
}
|
|
3083
|
+
export interface GetTablesLimit {
|
|
3084
|
+
/**
|
|
3085
|
+
* 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.
|
|
3086
|
+
*/
|
|
3087
|
+
from?: string;
|
|
3088
|
+
/**
|
|
3089
|
+
* The maximum number of rows to return.
|
|
3090
|
+
*/
|
|
3091
|
+
rows: number;
|
|
3092
|
+
}
|
|
2744
3093
|
export interface GetTablesTable {
|
|
3094
|
+
/**
|
|
3095
|
+
* Holds the output of DESCRIBE TABLES.
|
|
3096
|
+
*/
|
|
3097
|
+
describeOutputs: outputs.GetTablesTableDescribeOutput[];
|
|
3098
|
+
/**
|
|
3099
|
+
* Holds the output of SHOW TABLES.
|
|
3100
|
+
*/
|
|
3101
|
+
showOutputs: outputs.GetTablesTableShowOutput[];
|
|
3102
|
+
}
|
|
3103
|
+
export interface GetTablesTableDescribeOutput {
|
|
3104
|
+
check: string;
|
|
3105
|
+
collation: string;
|
|
2745
3106
|
comment: string;
|
|
2746
|
-
|
|
3107
|
+
default: string;
|
|
3108
|
+
expression: string;
|
|
3109
|
+
isNullable: boolean;
|
|
3110
|
+
isPrimary: boolean;
|
|
3111
|
+
isUnique: boolean;
|
|
3112
|
+
kind: string;
|
|
2747
3113
|
name: string;
|
|
2748
|
-
|
|
3114
|
+
policyName: string;
|
|
3115
|
+
schemaEvolutionRecord: string;
|
|
3116
|
+
type: string;
|
|
3117
|
+
}
|
|
3118
|
+
export interface GetTablesTableShowOutput {
|
|
3119
|
+
automaticClustering: boolean;
|
|
3120
|
+
budget: string;
|
|
3121
|
+
bytes: number;
|
|
3122
|
+
changeTracking: boolean;
|
|
3123
|
+
clusterBy: string;
|
|
3124
|
+
comment: string;
|
|
3125
|
+
createdOn: string;
|
|
3126
|
+
databaseName: string;
|
|
3127
|
+
droppedOn: string;
|
|
3128
|
+
enableSchemaEvolution: boolean;
|
|
3129
|
+
isEvent: boolean;
|
|
3130
|
+
isExternal: boolean;
|
|
3131
|
+
kind: string;
|
|
3132
|
+
name: string;
|
|
3133
|
+
owner: string;
|
|
3134
|
+
ownerRoleType: string;
|
|
3135
|
+
retentionTime: number;
|
|
3136
|
+
rows: number;
|
|
3137
|
+
schemaName: string;
|
|
3138
|
+
searchOptimization: boolean;
|
|
3139
|
+
searchOptimizationBytes: number;
|
|
3140
|
+
searchOptimizationProgress: string;
|
|
2749
3141
|
}
|
|
2750
3142
|
export interface GetTagsIn {
|
|
2751
3143
|
/**
|
|
@@ -4012,6 +4404,32 @@ export interface GetWarehousesWarehouseShowOutput {
|
|
|
4012
4404
|
type: string;
|
|
4013
4405
|
updatedOn: string;
|
|
4014
4406
|
}
|
|
4407
|
+
export interface GitRepositoryDescribeOutput {
|
|
4408
|
+
apiIntegration: string;
|
|
4409
|
+
comment: string;
|
|
4410
|
+
createdOn: string;
|
|
4411
|
+
databaseName: string;
|
|
4412
|
+
gitCredentials: string;
|
|
4413
|
+
lastFetchedAt: string;
|
|
4414
|
+
name: string;
|
|
4415
|
+
origin: string;
|
|
4416
|
+
owner: string;
|
|
4417
|
+
ownerRoleType: string;
|
|
4418
|
+
schemaName: string;
|
|
4419
|
+
}
|
|
4420
|
+
export interface GitRepositoryShowOutput {
|
|
4421
|
+
apiIntegration: string;
|
|
4422
|
+
comment: string;
|
|
4423
|
+
createdOn: string;
|
|
4424
|
+
databaseName: string;
|
|
4425
|
+
gitCredentials: string;
|
|
4426
|
+
lastFetchedAt: string;
|
|
4427
|
+
name: string;
|
|
4428
|
+
origin: string;
|
|
4429
|
+
owner: string;
|
|
4430
|
+
ownerRoleType: string;
|
|
4431
|
+
schemaName: string;
|
|
4432
|
+
}
|
|
4015
4433
|
export interface GrantOwnershipOn {
|
|
4016
4434
|
/**
|
|
4017
4435
|
* Configures the privilege to be granted on all objects in either a database or schema.
|
|
@@ -4112,7 +4530,7 @@ export interface GrantPrivilegesToAccountRoleOnSchemaObjectFuture {
|
|
|
4112
4530
|
inDatabase?: string;
|
|
4113
4531
|
inSchema?: string;
|
|
4114
4532
|
/**
|
|
4115
|
-
* 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 | STREAMLITS | DATASETS.
|
|
4533
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | 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 | STREAMLITS | DATASETS.
|
|
4116
4534
|
*/
|
|
4117
4535
|
objectTypePlural: string;
|
|
4118
4536
|
}
|
|
@@ -4172,10 +4590,132 @@ export interface GrantPrivilegesToDatabaseRoleOnSchemaObjectFuture {
|
|
|
4172
4590
|
*/
|
|
4173
4591
|
inSchema?: string;
|
|
4174
4592
|
/**
|
|
4175
|
-
* 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 | STREAMLITS | DATASETS.
|
|
4593
|
+
* The plural object type of the schema object on which privileges will be granted. Valid values are: ALERTS | AUTHENTICATION POLICIES | CORTEX SEARCH SERVICES | 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 | STREAMLITS | DATASETS.
|
|
4176
4594
|
*/
|
|
4177
4595
|
objectTypePlural: string;
|
|
4178
4596
|
}
|
|
4597
|
+
export interface ImageRepositoryShowOutput {
|
|
4598
|
+
comment: string;
|
|
4599
|
+
createdOn: string;
|
|
4600
|
+
databaseName: string;
|
|
4601
|
+
name: string;
|
|
4602
|
+
owner: string;
|
|
4603
|
+
ownerRoleType: string;
|
|
4604
|
+
privatelinkRepositoryUrl: string;
|
|
4605
|
+
repositoryUrl: string;
|
|
4606
|
+
schemaName: string;
|
|
4607
|
+
}
|
|
4608
|
+
export interface JobServiceDescribeOutput {
|
|
4609
|
+
autoResume: boolean;
|
|
4610
|
+
autoSuspendSecs: number;
|
|
4611
|
+
comment: string;
|
|
4612
|
+
computePool: string;
|
|
4613
|
+
createdOn: string;
|
|
4614
|
+
currentInstances: number;
|
|
4615
|
+
databaseName: string;
|
|
4616
|
+
dnsName: string;
|
|
4617
|
+
externalAccessIntegrations: string[];
|
|
4618
|
+
isAsyncJob: boolean;
|
|
4619
|
+
isJob: boolean;
|
|
4620
|
+
isUpgrading: boolean;
|
|
4621
|
+
managingObjectDomain: string;
|
|
4622
|
+
managingObjectName: string;
|
|
4623
|
+
maxInstances: number;
|
|
4624
|
+
minInstances: number;
|
|
4625
|
+
minReadyInstances: number;
|
|
4626
|
+
name: string;
|
|
4627
|
+
owner: string;
|
|
4628
|
+
ownerRoleType: string;
|
|
4629
|
+
queryWarehouse: string;
|
|
4630
|
+
resumedOn: string;
|
|
4631
|
+
schemaName: string;
|
|
4632
|
+
spec: string;
|
|
4633
|
+
specDigest: string;
|
|
4634
|
+
status: string;
|
|
4635
|
+
suspendedOn: string;
|
|
4636
|
+
targetInstances: number;
|
|
4637
|
+
updatedOn: string;
|
|
4638
|
+
}
|
|
4639
|
+
export interface JobServiceFromSpecification {
|
|
4640
|
+
/**
|
|
4641
|
+
* The file name of the service specification. Example: `spec.yaml`.
|
|
4642
|
+
*/
|
|
4643
|
+
file?: string;
|
|
4644
|
+
/**
|
|
4645
|
+
* The path to the service specification file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
|
|
4646
|
+
*/
|
|
4647
|
+
path?: string;
|
|
4648
|
+
/**
|
|
4649
|
+
* The fully qualified name of the stage containing the service specification file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
|
|
4650
|
+
*/
|
|
4651
|
+
stage?: string;
|
|
4652
|
+
/**
|
|
4653
|
+
* The embedded text of the service specification.
|
|
4654
|
+
*/
|
|
4655
|
+
text?: string;
|
|
4656
|
+
}
|
|
4657
|
+
export interface JobServiceFromSpecificationTemplate {
|
|
4658
|
+
/**
|
|
4659
|
+
* The file name of the service specification template. Example: `spec.yaml`.
|
|
4660
|
+
*/
|
|
4661
|
+
file?: string;
|
|
4662
|
+
/**
|
|
4663
|
+
* The path to the service specification template file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
|
|
4664
|
+
*/
|
|
4665
|
+
path?: string;
|
|
4666
|
+
/**
|
|
4667
|
+
* The fully qualified name of the stage containing the service specification template file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
|
|
4668
|
+
*/
|
|
4669
|
+
stage?: string;
|
|
4670
|
+
/**
|
|
4671
|
+
* The embedded text of the service specification template.
|
|
4672
|
+
*/
|
|
4673
|
+
text?: string;
|
|
4674
|
+
/**
|
|
4675
|
+
* List of the specified template variables and the values of those variables.
|
|
4676
|
+
*/
|
|
4677
|
+
usings: outputs.JobServiceFromSpecificationTemplateUsing[];
|
|
4678
|
+
}
|
|
4679
|
+
export interface JobServiceFromSpecificationTemplateUsing {
|
|
4680
|
+
/**
|
|
4681
|
+
* The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
|
|
4682
|
+
*/
|
|
4683
|
+
key: string;
|
|
4684
|
+
/**
|
|
4685
|
+
* The value to assign to the variable in the template. The provider wraps it in `$$` by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
|
|
4686
|
+
*/
|
|
4687
|
+
value: string;
|
|
4688
|
+
}
|
|
4689
|
+
export interface JobServiceShowOutput {
|
|
4690
|
+
autoResume: boolean;
|
|
4691
|
+
autoSuspendSecs: number;
|
|
4692
|
+
comment: string;
|
|
4693
|
+
computePool: string;
|
|
4694
|
+
createdOn: string;
|
|
4695
|
+
currentInstances: number;
|
|
4696
|
+
databaseName: string;
|
|
4697
|
+
dnsName: string;
|
|
4698
|
+
externalAccessIntegrations: string[];
|
|
4699
|
+
isAsyncJob: boolean;
|
|
4700
|
+
isJob: boolean;
|
|
4701
|
+
isUpgrading: boolean;
|
|
4702
|
+
managingObjectDomain: string;
|
|
4703
|
+
managingObjectName: string;
|
|
4704
|
+
maxInstances: number;
|
|
4705
|
+
minInstances: number;
|
|
4706
|
+
minReadyInstances: number;
|
|
4707
|
+
name: string;
|
|
4708
|
+
owner: string;
|
|
4709
|
+
ownerRoleType: string;
|
|
4710
|
+
queryWarehouse: string;
|
|
4711
|
+
resumedOn: string;
|
|
4712
|
+
schemaName: string;
|
|
4713
|
+
specDigest: string;
|
|
4714
|
+
status: string;
|
|
4715
|
+
suspendedOn: string;
|
|
4716
|
+
targetInstances: number;
|
|
4717
|
+
updatedOn: string;
|
|
4718
|
+
}
|
|
4179
4719
|
export interface LegacyServiceUserParameter {
|
|
4180
4720
|
abortDetachedQueries: outputs.LegacyServiceUserParameterAbortDetachedQuery[];
|
|
4181
4721
|
autocommits: outputs.LegacyServiceUserParameterAutocommit[];
|
|
@@ -5912,6 +6452,117 @@ export interface SecretWithGenericStringShowOutput {
|
|
|
5912
6452
|
schemaName: string;
|
|
5913
6453
|
secretType: string;
|
|
5914
6454
|
}
|
|
6455
|
+
export interface ServiceDescribeOutput {
|
|
6456
|
+
autoResume: boolean;
|
|
6457
|
+
autoSuspendSecs: number;
|
|
6458
|
+
comment: string;
|
|
6459
|
+
computePool: string;
|
|
6460
|
+
createdOn: string;
|
|
6461
|
+
currentInstances: number;
|
|
6462
|
+
databaseName: string;
|
|
6463
|
+
dnsName: string;
|
|
6464
|
+
externalAccessIntegrations: string[];
|
|
6465
|
+
isAsyncJob: boolean;
|
|
6466
|
+
isJob: boolean;
|
|
6467
|
+
isUpgrading: boolean;
|
|
6468
|
+
managingObjectDomain: string;
|
|
6469
|
+
managingObjectName: string;
|
|
6470
|
+
maxInstances: number;
|
|
6471
|
+
minInstances: number;
|
|
6472
|
+
minReadyInstances: number;
|
|
6473
|
+
name: string;
|
|
6474
|
+
owner: string;
|
|
6475
|
+
ownerRoleType: string;
|
|
6476
|
+
queryWarehouse: string;
|
|
6477
|
+
resumedOn: string;
|
|
6478
|
+
schemaName: string;
|
|
6479
|
+
spec: string;
|
|
6480
|
+
specDigest: string;
|
|
6481
|
+
status: string;
|
|
6482
|
+
suspendedOn: string;
|
|
6483
|
+
targetInstances: number;
|
|
6484
|
+
updatedOn: string;
|
|
6485
|
+
}
|
|
6486
|
+
export interface ServiceFromSpecification {
|
|
6487
|
+
/**
|
|
6488
|
+
* The file name of the service specification. Example: `spec.yaml`.
|
|
6489
|
+
*/
|
|
6490
|
+
file?: string;
|
|
6491
|
+
/**
|
|
6492
|
+
* The path to the service specification file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
|
|
6493
|
+
*/
|
|
6494
|
+
path?: string;
|
|
6495
|
+
/**
|
|
6496
|
+
* The fully qualified name of the stage containing the service specification file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
|
|
6497
|
+
*/
|
|
6498
|
+
stage?: string;
|
|
6499
|
+
/**
|
|
6500
|
+
* The embedded text of the service specification.
|
|
6501
|
+
*/
|
|
6502
|
+
text?: string;
|
|
6503
|
+
}
|
|
6504
|
+
export interface ServiceFromSpecificationTemplate {
|
|
6505
|
+
/**
|
|
6506
|
+
* The file name of the service specification template. Example: `spec.yaml`.
|
|
6507
|
+
*/
|
|
6508
|
+
file?: string;
|
|
6509
|
+
/**
|
|
6510
|
+
* The path to the service specification template file on the given stage. When the path is specified, the `/` character is automatically added as a path prefix. Example: `path/to/spec`.
|
|
6511
|
+
*/
|
|
6512
|
+
path?: string;
|
|
6513
|
+
/**
|
|
6514
|
+
* The fully qualified name of the stage containing the service specification template file. At symbol (`@`) is added automatically. Example: `"\"<db_name>\".\"<schema_name>\".\"<stage_name>\""`. For more information about this resource, see docs.
|
|
6515
|
+
*/
|
|
6516
|
+
stage?: string;
|
|
6517
|
+
/**
|
|
6518
|
+
* The embedded text of the service specification template.
|
|
6519
|
+
*/
|
|
6520
|
+
text?: string;
|
|
6521
|
+
/**
|
|
6522
|
+
* List of the specified template variables and the values of those variables.
|
|
6523
|
+
*/
|
|
6524
|
+
usings: outputs.ServiceFromSpecificationTemplateUsing[];
|
|
6525
|
+
}
|
|
6526
|
+
export interface ServiceFromSpecificationTemplateUsing {
|
|
6527
|
+
/**
|
|
6528
|
+
* The name of the template variable. The provider wraps it in double quotes by default, so be aware of that while referencing the argument in the spec definition.
|
|
6529
|
+
*/
|
|
6530
|
+
key: string;
|
|
6531
|
+
/**
|
|
6532
|
+
* The value to assign to the variable in the template. The provider wraps it in `$$` by default, so be aware of that while referencing the argument in the spec definition. The value must either be alphanumeric or valid JSON.
|
|
6533
|
+
*/
|
|
6534
|
+
value: string;
|
|
6535
|
+
}
|
|
6536
|
+
export interface ServiceShowOutput {
|
|
6537
|
+
autoResume: boolean;
|
|
6538
|
+
autoSuspendSecs: number;
|
|
6539
|
+
comment: string;
|
|
6540
|
+
computePool: string;
|
|
6541
|
+
createdOn: string;
|
|
6542
|
+
currentInstances: number;
|
|
6543
|
+
databaseName: string;
|
|
6544
|
+
dnsName: string;
|
|
6545
|
+
externalAccessIntegrations: string[];
|
|
6546
|
+
isAsyncJob: boolean;
|
|
6547
|
+
isJob: boolean;
|
|
6548
|
+
isUpgrading: boolean;
|
|
6549
|
+
managingObjectDomain: string;
|
|
6550
|
+
managingObjectName: string;
|
|
6551
|
+
maxInstances: number;
|
|
6552
|
+
minInstances: number;
|
|
6553
|
+
minReadyInstances: number;
|
|
6554
|
+
name: string;
|
|
6555
|
+
owner: string;
|
|
6556
|
+
ownerRoleType: string;
|
|
6557
|
+
queryWarehouse: string;
|
|
6558
|
+
resumedOn: string;
|
|
6559
|
+
schemaName: string;
|
|
6560
|
+
specDigest: string;
|
|
6561
|
+
status: string;
|
|
6562
|
+
suspendedOn: string;
|
|
6563
|
+
targetInstances: number;
|
|
6564
|
+
updatedOn: string;
|
|
6565
|
+
}
|
|
5915
6566
|
export interface ServiceUserParameter {
|
|
5916
6567
|
abortDetachedQueries: outputs.ServiceUserParameterAbortDetachedQuery[];
|
|
5917
6568
|
autocommits: outputs.ServiceUserParameterAutocommit[];
|