@pulumi/dbtcloud 1.3.0-alpha.1763099137 → 1.3.0-alpha.1763523467
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/databricksCredential.d.ts +9 -3
- package/databricksCredential.js.map +1 -1
- package/environment.d.ts +3 -3
- package/getJob.d.ts +4 -0
- package/getJob.js.map +1 -1
- package/getSparkCredential.d.ts +88 -0
- package/getSparkCredential.js +54 -0
- package/getSparkCredential.js.map +1 -0
- package/globalConnection.d.ts +2 -1
- package/globalConnection.js +2 -1
- package/globalConnection.js.map +1 -1
- package/index.d.ts +9 -0
- package/index.js +15 -2
- package/index.js.map +1 -1
- package/job.d.ts +12 -0
- package/job.js +2 -0
- package/job.js.map +1 -1
- package/package.json +2 -2
- package/scimGroupPartialPermissions.d.ts +141 -0
- package/scimGroupPartialPermissions.js +133 -0
- package/scimGroupPartialPermissions.js.map +1 -0
- package/sparkCredential.d.ts +144 -0
- package/sparkCredential.js +114 -0
- package/sparkCredential.js.map +1 -0
- package/types/input.d.ts +28 -4
- package/types/output.d.ts +35 -7
package/types/output.d.ts
CHANGED
|
@@ -55,7 +55,9 @@ export interface DatabricksSemanticLayerCredentialConfiguration {
|
|
|
55
55
|
}
|
|
56
56
|
export interface DatabricksSemanticLayerCredentialCredential {
|
|
57
57
|
/**
|
|
58
|
-
* The type of the adapter
|
|
58
|
+
* The type of the adapter. 'spark' is deprecated, but still supported for backwards compatibility. For Spark, please use the spark*credential resource. Optional only when semantic*layer_credential is set to true; otherwise, this field is required.
|
|
59
|
+
*
|
|
60
|
+
* @deprecated This field is deprecated and will be removed in a future release. Semantic Layer spark credentials are not supported yet, only databricks is supported.
|
|
59
61
|
*/
|
|
60
62
|
adapterType: string;
|
|
61
63
|
/**
|
|
@@ -207,7 +209,7 @@ export interface GetGlobalConnectionAthena {
|
|
|
207
209
|
*/
|
|
208
210
|
regionName: string;
|
|
209
211
|
/**
|
|
210
|
-
* Prefix for storing tables, if different from the connection's S3 staging directory.
|
|
212
|
+
* Prefix for storing tables, if different from the connection's S3 staging directory. Must be in the format 's3://bucket-name/path/'.
|
|
211
213
|
*/
|
|
212
214
|
s3DataDir: string;
|
|
213
215
|
/**
|
|
@@ -215,11 +217,11 @@ export interface GetGlobalConnectionAthena {
|
|
|
215
217
|
*/
|
|
216
218
|
s3DataNaming: string;
|
|
217
219
|
/**
|
|
218
|
-
* S3 location to store Athena query results and metadata.
|
|
220
|
+
* S3 location to store Athena query results and metadata. Must be in the format 's3://bucket-name/path/'.
|
|
219
221
|
*/
|
|
220
222
|
s3StagingDir: string;
|
|
221
223
|
/**
|
|
222
|
-
* Prefix for storing temporary tables, if different from the connection's S3 data directory.
|
|
224
|
+
* Prefix for storing temporary tables, if different from the connection's S3 data directory. Must be in the format 's3://bucket-name/path/'.
|
|
223
225
|
*/
|
|
224
226
|
s3TmpTableDir: string;
|
|
225
227
|
/**
|
|
@@ -744,6 +746,10 @@ export interface GetJobsJob {
|
|
|
744
746
|
*/
|
|
745
747
|
executeSteps: string[];
|
|
746
748
|
execution: outputs.GetJobsJobExecution;
|
|
749
|
+
/**
|
|
750
|
+
* Whether force node selection (SAO) is enabled for this job
|
|
751
|
+
*/
|
|
752
|
+
forceNodeSelection: boolean;
|
|
747
753
|
/**
|
|
748
754
|
* Whether the job generate docs
|
|
749
755
|
*/
|
|
@@ -1145,7 +1151,7 @@ export interface GlobalConnectionAthena {
|
|
|
1145
1151
|
*/
|
|
1146
1152
|
regionName: string;
|
|
1147
1153
|
/**
|
|
1148
|
-
* Prefix for storing tables, if different from the connection's S3 staging directory.
|
|
1154
|
+
* Prefix for storing tables, if different from the connection's S3 staging directory. Must be in the format 's3://bucket-name/path/'.
|
|
1149
1155
|
*/
|
|
1150
1156
|
s3DataDir?: string;
|
|
1151
1157
|
/**
|
|
@@ -1153,11 +1159,11 @@ export interface GlobalConnectionAthena {
|
|
|
1153
1159
|
*/
|
|
1154
1160
|
s3DataNaming?: string;
|
|
1155
1161
|
/**
|
|
1156
|
-
* S3 location to store Athena query results and metadata.
|
|
1162
|
+
* S3 location to store Athena query results and metadata. Must be in the format 's3://bucket-name/path/'.
|
|
1157
1163
|
*/
|
|
1158
1164
|
s3StagingDir: string;
|
|
1159
1165
|
/**
|
|
1160
|
-
* Prefix for storing temporary tables, if different from the connection's S3 data directory.
|
|
1166
|
+
* Prefix for storing temporary tables, if different from the connection's S3 data directory. Must be in the format 's3://bucket-name/path/'.
|
|
1161
1167
|
*/
|
|
1162
1168
|
s3TmpTableDir?: string;
|
|
1163
1169
|
/**
|
|
@@ -1701,6 +1707,28 @@ export interface RedshiftSemanticLayerCredentialCredential {
|
|
|
1701
1707
|
*/
|
|
1702
1708
|
username: string;
|
|
1703
1709
|
}
|
|
1710
|
+
export interface ScimGroupPartialPermissionsPermission {
|
|
1711
|
+
/**
|
|
1712
|
+
* Whether access should be provided for all projects or not.
|
|
1713
|
+
*/
|
|
1714
|
+
allProjects: boolean;
|
|
1715
|
+
/**
|
|
1716
|
+
* Set of permissions to apply. The permissions allowed are the same as the ones for the `dbtcloud.Group` resource.
|
|
1717
|
+
*/
|
|
1718
|
+
permissionSet: string;
|
|
1719
|
+
/**
|
|
1720
|
+
* Project ID to apply this permission to for this group.
|
|
1721
|
+
*/
|
|
1722
|
+
projectId?: number;
|
|
1723
|
+
/**
|
|
1724
|
+
* What types of environments to apply Write permissions to.
|
|
1725
|
+
* Even if Write access is restricted to some environment types, the permission set will have Read access to all environments.
|
|
1726
|
+
* The values allowed are `all`, `development`, `staging`, `production` and `other`.
|
|
1727
|
+
* Not setting a value is the same as selecting `all`.
|
|
1728
|
+
* Not all permission sets support environment level write settings, only `analyst`, `databaseAdmin`, `developer`, `gitAdmin` and `teamAdmin`.
|
|
1729
|
+
*/
|
|
1730
|
+
writableEnvironmentCategories?: string[];
|
|
1731
|
+
}
|
|
1704
1732
|
export interface ScimGroupPermissionsPermission {
|
|
1705
1733
|
/**
|
|
1706
1734
|
* Whether access should be provided for all projects or not.
|