@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/types/output.d.ts CHANGED
@@ -408,6 +408,8 @@ export interface CatalogIntegrationAwsGlueDescribeOutput {
408
408
  catalogSource: string;
409
409
  comment: string;
410
410
  enabled: boolean;
411
+ glueAwsExternalId: string;
412
+ glueAwsIamUserArn: string;
411
413
  glueAwsRoleArn: string;
412
414
  glueCatalogId: string;
413
415
  glueRegion: string;
@@ -648,6 +650,52 @@ export interface ComputePoolShowOutput {
648
650
  targetNodes: number;
649
651
  updatedOn: string;
650
652
  }
653
+ export interface CortexAgentDescribeOutput {
654
+ agentSpec: string;
655
+ aliases: string;
656
+ comment: string;
657
+ createdOn: string;
658
+ databaseName: string;
659
+ defaultVersionName: string;
660
+ name: string;
661
+ owner: string;
662
+ profiles: outputs.CortexAgentDescribeOutputProfile[];
663
+ schemaName: string;
664
+ versions: string;
665
+ }
666
+ export interface CortexAgentDescribeOutputProfile {
667
+ avatar: string;
668
+ color: string;
669
+ displayName: string;
670
+ }
671
+ export interface CortexAgentProfile {
672
+ /**
673
+ * Specifies an avatar image file name or identifier.
674
+ */
675
+ avatar?: string;
676
+ /**
677
+ * Specifies a color theme for the Cortex agent.
678
+ */
679
+ color?: string;
680
+ /**
681
+ * Specifies a display name for the Cortex agent.
682
+ */
683
+ displayName?: string;
684
+ }
685
+ export interface CortexAgentShowOutput {
686
+ comment: string;
687
+ createdOn: string;
688
+ databaseName: string;
689
+ name: string;
690
+ owner: string;
691
+ profiles: outputs.CortexAgentShowOutputProfile[];
692
+ schemaName: string;
693
+ }
694
+ export interface CortexAgentShowOutputProfile {
695
+ avatar: string;
696
+ color: string;
697
+ displayName: string;
698
+ }
651
699
  export interface CortexSearchServiceDescribeOutput {
652
700
  attributeColumns: string[];
653
701
  columns: string[];
@@ -919,6 +967,7 @@ export interface ExternalVolumeDescribeOutputStorageLocationAzureStorageLocation
919
967
  azureConsentUrl: string;
920
968
  azureMultiTenantAppName: string;
921
969
  azureTenantId: string;
970
+ usePrivatelinkEndpoint: string;
922
971
  }
923
972
  export interface ExternalVolumeDescribeOutputStorageLocationGcsStorageLocation {
924
973
  encryptionKmsKeyId: string;
@@ -1637,6 +1686,8 @@ export interface GetCatalogIntegrationsCatalogIntegrationDescribeOutput {
1637
1686
  catalogSource: string;
1638
1687
  comment: string;
1639
1688
  enabled: boolean;
1689
+ glueAwsExternalId: string;
1690
+ glueAwsIamUserArn: string;
1640
1691
  glueAwsRoleArn: string;
1641
1692
  glueCatalogId: string;
1642
1693
  glueRegion: string;
@@ -1757,6 +1808,80 @@ export interface GetConnectionsConnectionShowOutput {
1757
1808
  regionGroup: string;
1758
1809
  snowflakeRegion: string;
1759
1810
  }
1811
+ export interface GetCortexAgentsCortexAgent {
1812
+ /**
1813
+ * Holds the output of DESCRIBE AGENT.
1814
+ */
1815
+ describeOutputs: outputs.GetCortexAgentsCortexAgentDescribeOutput[];
1816
+ /**
1817
+ * Holds the output of SHOW AGENTS.
1818
+ */
1819
+ showOutputs: outputs.GetCortexAgentsCortexAgentShowOutput[];
1820
+ }
1821
+ export interface GetCortexAgentsCortexAgentDescribeOutput {
1822
+ agentSpec: string;
1823
+ aliases: string;
1824
+ comment: string;
1825
+ createdOn: string;
1826
+ databaseName: string;
1827
+ defaultVersionName: string;
1828
+ name: string;
1829
+ owner: string;
1830
+ profiles: outputs.GetCortexAgentsCortexAgentDescribeOutputProfile[];
1831
+ schemaName: string;
1832
+ versions: string;
1833
+ }
1834
+ export interface GetCortexAgentsCortexAgentDescribeOutputProfile {
1835
+ avatar: string;
1836
+ color: string;
1837
+ displayName: string;
1838
+ }
1839
+ export interface GetCortexAgentsCortexAgentShowOutput {
1840
+ comment: string;
1841
+ createdOn: string;
1842
+ databaseName: string;
1843
+ name: string;
1844
+ owner: string;
1845
+ profiles: outputs.GetCortexAgentsCortexAgentShowOutputProfile[];
1846
+ schemaName: string;
1847
+ }
1848
+ export interface GetCortexAgentsCortexAgentShowOutputProfile {
1849
+ avatar: string;
1850
+ color: string;
1851
+ displayName: string;
1852
+ }
1853
+ export interface GetCortexAgentsIn {
1854
+ /**
1855
+ * Returns records for the entire account.
1856
+ */
1857
+ account?: boolean;
1858
+ /**
1859
+ * Returns records for the specified application.
1860
+ */
1861
+ application?: string;
1862
+ /**
1863
+ * Returns records for the specified application package.
1864
+ */
1865
+ applicationPackage?: string;
1866
+ /**
1867
+ * Returns records for the current database in use or for a specified database.
1868
+ */
1869
+ database?: string;
1870
+ /**
1871
+ * Returns records for the current schema in use or a specified schema. Use fully qualified name.
1872
+ */
1873
+ schema?: string;
1874
+ }
1875
+ export interface GetCortexAgentsLimit {
1876
+ /**
1877
+ * 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.
1878
+ */
1879
+ from?: string;
1880
+ /**
1881
+ * The maximum number of rows to return.
1882
+ */
1883
+ rows: number;
1884
+ }
1760
1885
  export interface GetCortexSearchServicesCortexSearchService {
1761
1886
  /**
1762
1887
  * Comment for the cortex search service.
@@ -2164,6 +2289,7 @@ export interface GetExternalVolumesExternalVolumeDescribeOutputStorageLocationAz
2164
2289
  azureConsentUrl: string;
2165
2290
  azureMultiTenantAppName: string;
2166
2291
  azureTenantId: string;
2292
+ usePrivatelinkEndpoint: string;
2167
2293
  }
2168
2294
  export interface GetExternalVolumesExternalVolumeDescribeOutputStorageLocationGcsStorageLocation {
2169
2295
  encryptionKmsKeyId: string;
@@ -4324,6 +4450,7 @@ export interface GetTagsTagShowOutput {
4324
4450
  createdOn: string;
4325
4451
  databaseName: string;
4326
4452
  name: string;
4453
+ onConflict: string;
4327
4454
  owner: string;
4328
4455
  ownerRoleType: string;
4329
4456
  propagate: string;
@@ -11514,11 +11641,11 @@ export interface TableTag {
11514
11641
  }
11515
11642
  export interface TagOnConflict {
11516
11643
  /**
11517
- * The order of the values in the ALLOWED_VALUES property of the tag determines which value is used when there is a conflict. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
11644
+ * The order of the values in the ALLOWED_VALUES property of the tag determines which value is used when there is a conflict.
11518
11645
  */
11519
11646
  allowedValuesSequence?: boolean;
11520
11647
  /**
11521
- * 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. External changes for this field won't be detected. In case you want to apply external changes, you can re-create the resource manually using "terraform taint".
11648
+ * 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.
11522
11649
  */
11523
11650
  customValue?: string;
11524
11651
  }
@@ -11528,6 +11655,7 @@ export interface TagShowOutput {
11528
11655
  createdOn: string;
11529
11656
  databaseName: string;
11530
11657
  name: string;
11658
+ onConflict: string;
11531
11659
  owner: string;
11532
11660
  ownerRoleType: string;
11533
11661
  propagate: string;