@pulumi/snowflake 2.17.0-alpha.1782373603 → 2.17.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 +6 -6
- package/catalogIntegrationIcebergRest.d.ts +7 -3
- package/catalogIntegrationIcebergRest.d.ts.map +1 -1
- package/catalogIntegrationIcebergRest.js +7 -3
- package/catalogIntegrationIcebergRest.js.map +1 -1
- package/catalogIntegrationOpenCatalog.d.ts +5 -3
- package/catalogIntegrationOpenCatalog.d.ts.map +1 -1
- package/catalogIntegrationOpenCatalog.js +5 -3
- package/catalogIntegrationOpenCatalog.js.map +1 -1
- package/config/vars.d.ts +1 -1
- package/cortexAgent.d.ts +146 -0
- package/cortexAgent.d.ts.map +1 -0
- package/cortexAgent.js +108 -0
- package/cortexAgent.js.map +1 -0
- package/getCortexAgents.d.ts +99 -0
- package/getCortexAgents.d.ts.map +1 -0
- package/getCortexAgents.js +65 -0
- package/getCortexAgents.js.map +1 -0
- package/getSystemGetPrivateLinkConfig.d.ts +39 -3
- package/getSystemGetPrivateLinkConfig.d.ts.map +1 -1
- package/getSystemGetPrivateLinkConfig.js.map +1 -1
- package/index.d.ts +6 -0
- package/index.d.ts.map +1 -1
- package/index.js +13 -5
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/provider.d.ts +1 -1
- package/secretWithClientCredentials.d.ts +47 -5
- package/secretWithClientCredentials.d.ts.map +1 -1
- package/secretWithClientCredentials.js +42 -3
- package/secretWithClientCredentials.js.map +1 -1
- package/streamOnDirectoryTable.d.ts +3 -3
- package/tag.d.ts +3 -3
- package/types/input.d.ts +116 -2
- package/types/input.d.ts.map +1 -1
- package/types/output.d.ts +130 -2
- package/types/output.d.ts.map +1 -1
package/types/input.d.ts
CHANGED
|
@@ -409,6 +409,8 @@ export interface CatalogIntegrationAwsGlueDescribeOutput {
|
|
|
409
409
|
catalogSource?: pulumi.Input<string | undefined>;
|
|
410
410
|
comment?: pulumi.Input<string | undefined>;
|
|
411
411
|
enabled?: pulumi.Input<boolean | undefined>;
|
|
412
|
+
glueAwsExternalId?: pulumi.Input<string | undefined>;
|
|
413
|
+
glueAwsIamUserArn?: pulumi.Input<string | undefined>;
|
|
412
414
|
glueAwsRoleArn?: pulumi.Input<string | undefined>;
|
|
413
415
|
glueCatalogId?: pulumi.Input<string | undefined>;
|
|
414
416
|
glueRegion?: pulumi.Input<string | undefined>;
|
|
@@ -649,6 +651,52 @@ export interface ComputePoolShowOutput {
|
|
|
649
651
|
targetNodes?: pulumi.Input<number | undefined>;
|
|
650
652
|
updatedOn?: pulumi.Input<string | undefined>;
|
|
651
653
|
}
|
|
654
|
+
export interface CortexAgentDescribeOutput {
|
|
655
|
+
agentSpec?: pulumi.Input<string | undefined>;
|
|
656
|
+
aliases?: pulumi.Input<string | undefined>;
|
|
657
|
+
comment?: pulumi.Input<string | undefined>;
|
|
658
|
+
createdOn?: pulumi.Input<string | undefined>;
|
|
659
|
+
databaseName?: pulumi.Input<string | undefined>;
|
|
660
|
+
defaultVersionName?: pulumi.Input<string | undefined>;
|
|
661
|
+
name?: pulumi.Input<string | undefined>;
|
|
662
|
+
owner?: pulumi.Input<string | undefined>;
|
|
663
|
+
profiles?: pulumi.Input<pulumi.Input<inputs.CortexAgentDescribeOutputProfile>[] | undefined>;
|
|
664
|
+
schemaName?: pulumi.Input<string | undefined>;
|
|
665
|
+
versions?: pulumi.Input<string | undefined>;
|
|
666
|
+
}
|
|
667
|
+
export interface CortexAgentDescribeOutputProfile {
|
|
668
|
+
avatar?: pulumi.Input<string | undefined>;
|
|
669
|
+
color?: pulumi.Input<string | undefined>;
|
|
670
|
+
displayName?: pulumi.Input<string | undefined>;
|
|
671
|
+
}
|
|
672
|
+
export interface CortexAgentProfile {
|
|
673
|
+
/**
|
|
674
|
+
* Specifies an avatar image file name or identifier.
|
|
675
|
+
*/
|
|
676
|
+
avatar?: pulumi.Input<string | undefined>;
|
|
677
|
+
/**
|
|
678
|
+
* Specifies a color theme for the Cortex agent.
|
|
679
|
+
*/
|
|
680
|
+
color?: pulumi.Input<string | undefined>;
|
|
681
|
+
/**
|
|
682
|
+
* Specifies a display name for the Cortex agent.
|
|
683
|
+
*/
|
|
684
|
+
displayName?: pulumi.Input<string | undefined>;
|
|
685
|
+
}
|
|
686
|
+
export interface CortexAgentShowOutput {
|
|
687
|
+
comment?: pulumi.Input<string | undefined>;
|
|
688
|
+
createdOn?: pulumi.Input<string | undefined>;
|
|
689
|
+
databaseName?: pulumi.Input<string | undefined>;
|
|
690
|
+
name?: pulumi.Input<string | undefined>;
|
|
691
|
+
owner?: pulumi.Input<string | undefined>;
|
|
692
|
+
profiles?: pulumi.Input<pulumi.Input<inputs.CortexAgentShowOutputProfile>[] | undefined>;
|
|
693
|
+
schemaName?: pulumi.Input<string | undefined>;
|
|
694
|
+
}
|
|
695
|
+
export interface CortexAgentShowOutputProfile {
|
|
696
|
+
avatar?: pulumi.Input<string | undefined>;
|
|
697
|
+
color?: pulumi.Input<string | undefined>;
|
|
698
|
+
displayName?: pulumi.Input<string | undefined>;
|
|
699
|
+
}
|
|
652
700
|
export interface CortexSearchServiceDescribeOutput {
|
|
653
701
|
attributeColumns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
654
702
|
columns?: pulumi.Input<pulumi.Input<string>[] | undefined>;
|
|
@@ -920,6 +968,7 @@ export interface ExternalVolumeDescribeOutputStorageLocationAzureStorageLocation
|
|
|
920
968
|
azureConsentUrl?: pulumi.Input<string | undefined>;
|
|
921
969
|
azureMultiTenantAppName?: pulumi.Input<string | undefined>;
|
|
922
970
|
azureTenantId?: pulumi.Input<string | undefined>;
|
|
971
|
+
usePrivatelinkEndpoint?: pulumi.Input<string | undefined>;
|
|
923
972
|
}
|
|
924
973
|
export interface ExternalVolumeDescribeOutputStorageLocationGcsStorageLocation {
|
|
925
974
|
encryptionKmsKeyId?: pulumi.Input<string | undefined>;
|
|
@@ -1565,6 +1614,70 @@ export interface GetComputePoolsLimitArgs {
|
|
|
1565
1614
|
*/
|
|
1566
1615
|
rows: pulumi.Input<number>;
|
|
1567
1616
|
}
|
|
1617
|
+
export interface GetCortexAgentsIn {
|
|
1618
|
+
/**
|
|
1619
|
+
* Returns records for the entire account.
|
|
1620
|
+
*/
|
|
1621
|
+
account?: boolean;
|
|
1622
|
+
/**
|
|
1623
|
+
* Returns records for the specified application.
|
|
1624
|
+
*/
|
|
1625
|
+
application?: string;
|
|
1626
|
+
/**
|
|
1627
|
+
* Returns records for the specified application package.
|
|
1628
|
+
*/
|
|
1629
|
+
applicationPackage?: string;
|
|
1630
|
+
/**
|
|
1631
|
+
* Returns records for the current database in use or for a specified database.
|
|
1632
|
+
*/
|
|
1633
|
+
database?: string;
|
|
1634
|
+
/**
|
|
1635
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1636
|
+
*/
|
|
1637
|
+
schema?: string;
|
|
1638
|
+
}
|
|
1639
|
+
export interface GetCortexAgentsInArgs {
|
|
1640
|
+
/**
|
|
1641
|
+
* Returns records for the entire account.
|
|
1642
|
+
*/
|
|
1643
|
+
account?: pulumi.Input<boolean | undefined>;
|
|
1644
|
+
/**
|
|
1645
|
+
* Returns records for the specified application.
|
|
1646
|
+
*/
|
|
1647
|
+
application?: pulumi.Input<string | undefined>;
|
|
1648
|
+
/**
|
|
1649
|
+
* Returns records for the specified application package.
|
|
1650
|
+
*/
|
|
1651
|
+
applicationPackage?: pulumi.Input<string | undefined>;
|
|
1652
|
+
/**
|
|
1653
|
+
* Returns records for the current database in use or for a specified database.
|
|
1654
|
+
*/
|
|
1655
|
+
database?: pulumi.Input<string | undefined>;
|
|
1656
|
+
/**
|
|
1657
|
+
* Returns records for the current schema in use or a specified schema. Use fully qualified name.
|
|
1658
|
+
*/
|
|
1659
|
+
schema?: pulumi.Input<string | undefined>;
|
|
1660
|
+
}
|
|
1661
|
+
export interface GetCortexAgentsLimit {
|
|
1662
|
+
/**
|
|
1663
|
+
* 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.
|
|
1664
|
+
*/
|
|
1665
|
+
from?: string;
|
|
1666
|
+
/**
|
|
1667
|
+
* The maximum number of rows to return.
|
|
1668
|
+
*/
|
|
1669
|
+
rows: number;
|
|
1670
|
+
}
|
|
1671
|
+
export interface GetCortexAgentsLimitArgs {
|
|
1672
|
+
/**
|
|
1673
|
+
* 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.
|
|
1674
|
+
*/
|
|
1675
|
+
from?: pulumi.Input<string | undefined>;
|
|
1676
|
+
/**
|
|
1677
|
+
* The maximum number of rows to return.
|
|
1678
|
+
*/
|
|
1679
|
+
rows: pulumi.Input<number>;
|
|
1680
|
+
}
|
|
1568
1681
|
export interface GetCortexSearchServicesIn {
|
|
1569
1682
|
/**
|
|
1570
1683
|
* Returns records for the entire account.
|
|
@@ -8875,11 +8988,11 @@ export interface TableTag {
|
|
|
8875
8988
|
}
|
|
8876
8989
|
export interface TagOnConflict {
|
|
8877
8990
|
/**
|
|
8878
|
-
* The order of the values in the ALLOWED_VALUES property of the tag determines which value is used when there is a conflict.
|
|
8991
|
+
* The order of the values in the ALLOWED_VALUES property of the tag determines which value is used when there is a conflict.
|
|
8879
8992
|
*/
|
|
8880
8993
|
allowedValuesSequence?: pulumi.Input<boolean | undefined>;
|
|
8881
8994
|
/**
|
|
8882
|
-
* Whenever there is a conflict, the value of tag is set to custom_value. If `allowedValues` are set, the value set in this field should be one of the values in the `allowedValues` list.
|
|
8995
|
+
* Whenever there is a conflict, the value of tag is set to custom_value. If `allowedValues` are set, the value set in this field should be one of the values in the `allowedValues` list.
|
|
8883
8996
|
*/
|
|
8884
8997
|
customValue?: pulumi.Input<string | undefined>;
|
|
8885
8998
|
}
|
|
@@ -8889,6 +9002,7 @@ export interface TagShowOutput {
|
|
|
8889
9002
|
createdOn?: pulumi.Input<string | undefined>;
|
|
8890
9003
|
databaseName?: pulumi.Input<string | undefined>;
|
|
8891
9004
|
name?: pulumi.Input<string | undefined>;
|
|
9005
|
+
onConflict?: pulumi.Input<string | undefined>;
|
|
8892
9006
|
owner?: pulumi.Input<string | undefined>;
|
|
8893
9007
|
ownerRoleType?: pulumi.Input<string | undefined>;
|
|
8894
9008
|
propagate?: pulumi.Input<string | undefined>;
|