@pulumi/snowflake 2.11.0-alpha.1766126285 → 2.11.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
@@ -2069,6 +2069,115 @@ export interface GetImageRepositoriesIn {
2069
2069
  */
2070
2070
  schema?: string;
2071
2071
  }
2072
+ export interface GetListingsLimit {
2073
+ /**
2074
+ * 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.
2075
+ */
2076
+ from?: string;
2077
+ /**
2078
+ * The maximum number of rows to return.
2079
+ */
2080
+ rows: number;
2081
+ }
2082
+ export interface GetListingsListing {
2083
+ /**
2084
+ * Holds the output of DESCRIBE LISTING.
2085
+ */
2086
+ describeOutputs: outputs.GetListingsListingDescribeOutput[];
2087
+ /**
2088
+ * Holds the output of SHOW LISTINGS.
2089
+ */
2090
+ showOutputs: outputs.GetListingsListingShowOutput[];
2091
+ }
2092
+ export interface GetListingsListingDescribeOutput {
2093
+ applicationPackage: string;
2094
+ approverContact: string;
2095
+ businessNeeds: string;
2096
+ categories: string;
2097
+ comment: string;
2098
+ createdOn: string;
2099
+ customizedContactInfo: string;
2100
+ dataAttributes: string;
2101
+ dataDictionary: string;
2102
+ dataPreview: string;
2103
+ description: string;
2104
+ distribution: string;
2105
+ globalName: string;
2106
+ isApplication: boolean;
2107
+ isByRequest: boolean;
2108
+ isLimitedTrial: boolean;
2109
+ isMonetized: boolean;
2110
+ isMountlessQueryable: boolean;
2111
+ isShare: boolean;
2112
+ isTargeted: boolean;
2113
+ lastCommittedVersionAlias: string;
2114
+ lastCommittedVersionName: string;
2115
+ lastCommittedVersionUri: string;
2116
+ legacyUniformListingLocators: string;
2117
+ limitedTrialPlan: string;
2118
+ listingTerms: string;
2119
+ liveVersionUri: string;
2120
+ manifestYaml: string;
2121
+ monetizationDisplayOrder: string;
2122
+ name: string;
2123
+ organizationProfileName: string;
2124
+ owner: string;
2125
+ ownerRoleType: string;
2126
+ profile: string;
2127
+ publishedOn: string;
2128
+ publishedVersionAlias: string;
2129
+ publishedVersionName: string;
2130
+ publishedVersionUri: string;
2131
+ refreshSchedule: string;
2132
+ refreshType: string;
2133
+ regions: string;
2134
+ rejectionReason: string;
2135
+ requestApprovalType: string;
2136
+ resources: string;
2137
+ retriedOn: string;
2138
+ reviewState: string;
2139
+ revisions: string;
2140
+ scheduledDropTime: string;
2141
+ share: string;
2142
+ state: string;
2143
+ subtitle: string;
2144
+ supportContact: string;
2145
+ targetAccounts: string;
2146
+ title: string;
2147
+ trialDetails: string;
2148
+ uniformListingLocator: string;
2149
+ unpublishedByAdminReasons: string;
2150
+ updatedOn: string;
2151
+ usageExamples: string;
2152
+ }
2153
+ export interface GetListingsListingShowOutput {
2154
+ comment: string;
2155
+ createdOn: string;
2156
+ detailedTargetAccounts: string;
2157
+ distribution: string;
2158
+ globalName: string;
2159
+ isApplication: boolean;
2160
+ isByRequest: boolean;
2161
+ isLimitedTrial: boolean;
2162
+ isMonetized: boolean;
2163
+ isMountlessQueryable: boolean;
2164
+ isTargeted: boolean;
2165
+ name: string;
2166
+ organizationProfileName: string;
2167
+ owner: string;
2168
+ ownerRoleType: string;
2169
+ profile: string;
2170
+ publishedOn: string;
2171
+ regions: string;
2172
+ rejectedOn: string;
2173
+ reviewState: string;
2174
+ state: string;
2175
+ subtitle: string;
2176
+ targetAccounts: string;
2177
+ title: string;
2178
+ uniformListingLocator: string;
2179
+ updatedOn: string;
2180
+ }
2072
2181
  export interface GetMaskingPoliciesIn {
2073
2182
  /**
2074
2183
  * Returns records for the entire account.
@@ -3495,6 +3604,8 @@ export interface GetTasksTaskParameter {
3495
3604
  rowsPerResultsets: outputs.GetTasksTaskParameterRowsPerResultset[];
3496
3605
  s3StageVpceDnsNames: outputs.GetTasksTaskParameterS3StageVpceDnsName[];
3497
3606
  searchPaths: outputs.GetTasksTaskParameterSearchPath[];
3607
+ serverlessTaskMaxStatementSizes: outputs.GetTasksTaskParameterServerlessTaskMaxStatementSize[];
3608
+ serverlessTaskMinStatementSizes: outputs.GetTasksTaskParameterServerlessTaskMinStatementSize[];
3498
3609
  statementQueuedTimeoutInSeconds: outputs.GetTasksTaskParameterStatementQueuedTimeoutInSecond[];
3499
3610
  statementTimeoutInSeconds: outputs.GetTasksTaskParameterStatementTimeoutInSecond[];
3500
3611
  strictJsonOutputs: outputs.GetTasksTaskParameterStrictJsonOutput[];
@@ -3746,6 +3857,20 @@ export interface GetTasksTaskParameterSearchPath {
3746
3857
  level: string;
3747
3858
  value: string;
3748
3859
  }
3860
+ export interface GetTasksTaskParameterServerlessTaskMaxStatementSize {
3861
+ default: string;
3862
+ description: string;
3863
+ key: string;
3864
+ level: string;
3865
+ value: string;
3866
+ }
3867
+ export interface GetTasksTaskParameterServerlessTaskMinStatementSize {
3868
+ default: string;
3869
+ description: string;
3870
+ key: string;
3871
+ level: string;
3872
+ value: string;
3873
+ }
3749
3874
  export interface GetTasksTaskParameterStatementQueuedTimeoutInSecond {
3750
3875
  default: string;
3751
3876
  description: string;
@@ -3949,9 +4074,15 @@ export interface GetTasksTaskShowOutput {
3949
4074
  schedule: string;
3950
4075
  schemaName: string;
3951
4076
  state: string;
4077
+ targetCompletionIntervals: outputs.GetTasksTaskShowOutputTargetCompletionInterval[];
3952
4078
  taskRelations: outputs.GetTasksTaskShowOutputTaskRelation[];
3953
4079
  warehouse: string;
3954
4080
  }
4081
+ export interface GetTasksTaskShowOutputTargetCompletionInterval {
4082
+ hours: number;
4083
+ minutes: number;
4084
+ seconds: number;
4085
+ }
3955
4086
  export interface GetTasksTaskShowOutputTaskRelation {
3956
4087
  finalizedRootTask: string;
3957
4088
  finalizer: string;
@@ -4015,6 +4146,7 @@ export interface GetUsersUserDescribeOutput {
4015
4146
  extAuthnUid: string;
4016
4147
  firstName: string;
4017
4148
  hasMfa: boolean;
4149
+ hasWorkloadIdentity: boolean;
4018
4150
  lastName: string;
4019
4151
  loginName: string;
4020
4152
  middleName: string;
@@ -4516,6 +4648,7 @@ export interface GetUsersUserShowOutput {
4516
4648
  hasMfa: boolean;
4517
4649
  hasPassword: boolean;
4518
4650
  hasRsaPublicKey: boolean;
4651
+ hasWorkloadIdentity: boolean;
4519
4652
  lastName: string;
4520
4653
  lastSuccessLogin: string;
4521
4654
  lockedUntilTime: string;
@@ -5463,6 +5596,7 @@ export interface LegacyServiceUserShowOutput {
5463
5596
  hasMfa: boolean;
5464
5597
  hasPassword: boolean;
5465
5598
  hasRsaPublicKey: boolean;
5599
+ hasWorkloadIdentity: boolean;
5466
5600
  lastName: string;
5467
5601
  lastSuccessLogin: string;
5468
5602
  lockedUntilTime: string;
@@ -7595,6 +7729,7 @@ export interface ServiceUserShowOutput {
7595
7729
  hasMfa: boolean;
7596
7730
  hasPassword: boolean;
7597
7731
  hasRsaPublicKey: boolean;
7732
+ hasWorkloadIdentity: boolean;
7598
7733
  lastName: string;
7599
7734
  lastSuccessLogin: string;
7600
7735
  lockedUntilTime: string;
@@ -8148,6 +8283,8 @@ export interface TaskParameter {
8148
8283
  rowsPerResultsets: outputs.TaskParameterRowsPerResultset[];
8149
8284
  s3StageVpceDnsNames: outputs.TaskParameterS3StageVpceDnsName[];
8150
8285
  searchPaths: outputs.TaskParameterSearchPath[];
8286
+ serverlessTaskMaxStatementSizes: outputs.TaskParameterServerlessTaskMaxStatementSize[];
8287
+ serverlessTaskMinStatementSizes: outputs.TaskParameterServerlessTaskMinStatementSize[];
8151
8288
  statementQueuedTimeoutInSeconds: outputs.TaskParameterStatementQueuedTimeoutInSecond[];
8152
8289
  statementTimeoutInSeconds: outputs.TaskParameterStatementTimeoutInSecond[];
8153
8290
  strictJsonOutputs: outputs.TaskParameterStrictJsonOutput[];
@@ -8399,6 +8536,20 @@ export interface TaskParameterSearchPath {
8399
8536
  level: string;
8400
8537
  value: string;
8401
8538
  }
8539
+ export interface TaskParameterServerlessTaskMaxStatementSize {
8540
+ default: string;
8541
+ description: string;
8542
+ key: string;
8543
+ level: string;
8544
+ value: string;
8545
+ }
8546
+ export interface TaskParameterServerlessTaskMinStatementSize {
8547
+ default: string;
8548
+ description: string;
8549
+ key: string;
8550
+ level: string;
8551
+ value: string;
8552
+ }
8402
8553
  export interface TaskParameterStatementQueuedTimeoutInSecond {
8403
8554
  default: string;
8404
8555
  description: string;
@@ -8620,14 +8771,34 @@ export interface TaskShowOutput {
8620
8771
  schedule: string;
8621
8772
  schemaName: string;
8622
8773
  state: string;
8774
+ targetCompletionIntervals: outputs.TaskShowOutputTargetCompletionInterval[];
8623
8775
  taskRelations: outputs.TaskShowOutputTaskRelation[];
8624
8776
  warehouse: string;
8625
8777
  }
8778
+ export interface TaskShowOutputTargetCompletionInterval {
8779
+ hours: number;
8780
+ minutes: number;
8781
+ seconds: number;
8782
+ }
8626
8783
  export interface TaskShowOutputTaskRelation {
8627
8784
  finalizedRootTask: string;
8628
8785
  finalizer: string;
8629
8786
  predecessors: string[];
8630
8787
  }
8788
+ export interface TaskTargetCompletionInterval {
8789
+ /**
8790
+ * Specifies the target completion interval in hours. (conflicts with `minutes` and `seconds`)
8791
+ */
8792
+ hours?: number;
8793
+ /**
8794
+ * Specifies the target completion interval in minutes. (conflicts with `hours` and `seconds`)
8795
+ */
8796
+ minutes?: number;
8797
+ /**
8798
+ * Specifies the target completion interval in seconds. (conflicts with `hours` and `minutes`)
8799
+ */
8800
+ seconds?: number;
8801
+ }
8631
8802
  export interface UserParameter {
8632
8803
  abortDetachedQueries: outputs.UserParameterAbortDetachedQuery[];
8633
8804
  autocommits: outputs.UserParameterAutocommit[];
@@ -9124,6 +9295,7 @@ export interface UserShowOutput {
9124
9295
  hasMfa: boolean;
9125
9296
  hasPassword: boolean;
9126
9297
  hasRsaPublicKey: boolean;
9298
+ hasWorkloadIdentity: boolean;
9127
9299
  lastName: string;
9128
9300
  lastSuccessLogin: string;
9129
9301
  lockedUntilTime: string;