@pulumi/dbtcloud 1.8.0 → 1.8.1
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/athenaCredential.d.ts +26 -0
- package/athenaCredential.js +26 -0
- package/athenaCredential.js.map +1 -1
- package/authProvider.d.ts +80 -0
- package/authProvider.js +80 -0
- package/authProvider.js.map +1 -1
- package/databricksCredential.d.ts +24 -0
- package/databricksCredential.js +24 -0
- package/databricksCredential.js.map +1 -1
- package/databricksPlatformMetadataCredential.d.ts +28 -0
- package/databricksPlatformMetadataCredential.js +28 -0
- package/databricksPlatformMetadataCredential.js.map +1 -1
- package/fabricCredential.d.ts +48 -0
- package/fabricCredential.js +48 -0
- package/fabricCredential.js.map +1 -1
- package/index.d.ts +3 -0
- package/index.js +6 -1
- package/index.js.map +1 -1
- package/job.d.ts +1 -1
- package/job.js +1 -1
- package/lineageIntegration.d.ts +32 -0
- package/lineageIntegration.js +32 -0
- package/lineageIntegration.js.map +1 -1
- package/notificationSetting.d.ts +140 -0
- package/notificationSetting.js +115 -0
- package/notificationSetting.js.map +1 -0
- package/oauthConfiguration.d.ts +41 -0
- package/oauthConfiguration.js +41 -0
- package/oauthConfiguration.js.map +1 -1
- package/package.json +2 -2
- package/postgresCredential.d.ts +30 -0
- package/postgresCredential.js +30 -0
- package/postgresCredential.js.map +1 -1
- package/redshiftCredential.d.ts +28 -0
- package/redshiftCredential.js +28 -0
- package/redshiftCredential.js.map +1 -1
- package/salesforceCredential.d.ts +30 -0
- package/salesforceCredential.js +30 -0
- package/salesforceCredential.js.map +1 -1
- package/snowflakeCredential.d.ts +28 -0
- package/snowflakeCredential.js +28 -0
- package/snowflakeCredential.js.map +1 -1
- package/snowflakePlatformMetadataCredential.d.ts +62 -0
- package/snowflakePlatformMetadataCredential.js +62 -0
- package/snowflakePlatformMetadataCredential.js.map +1 -1
- package/sparkCredential.d.ts +22 -0
- package/sparkCredential.js +22 -0
- package/sparkCredential.js.map +1 -1
- package/starburstCredential.d.ts +26 -0
- package/starburstCredential.js +26 -0
- package/starburstCredential.js.map +1 -1
- package/synapseCredential.d.ts +61 -0
- package/synapseCredential.js +61 -0
- package/synapseCredential.js.map +1 -1
- package/teradataCredential.d.ts +24 -0
- package/teradataCredential.js +24 -0
- package/teradataCredential.js.map +1 -1
- package/types/input.d.ts +36 -0
- package/types/output.d.ts +36 -0
- package/webhook.d.ts +1 -1
- package/webhook.js +1 -1
package/athenaCredential.d.ts
CHANGED
|
@@ -2,6 +2,32 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Athena credential resource
|
|
4
4
|
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
10
|
+
*
|
|
11
|
+
* // Using the classic sensitive attributes (stored in state)
|
|
12
|
+
* const example = new dbtcloud.AthenaCredential("example", {
|
|
13
|
+
* projectId: exampleDbtcloudProject.id,
|
|
14
|
+
* awsAccessKeyId: "your-access-key-id",
|
|
15
|
+
* awsSecretAccessKey: "your-secret-access-key",
|
|
16
|
+
* schema: "your_schema",
|
|
17
|
+
* });
|
|
18
|
+
* const config = new pulumi.Config();
|
|
19
|
+
* const athenaAwsAccessKeyId = config.require("athenaAwsAccessKeyId");
|
|
20
|
+
* const athenaAwsSecretAccessKey = config.require("athenaAwsSecretAccessKey");
|
|
21
|
+
* const exampleWo = new dbtcloud.AthenaCredential("example_wo", {
|
|
22
|
+
* projectId: exampleDbtcloudProject.id,
|
|
23
|
+
* awsAccessKeyIdWo: athenaAwsAccessKeyId,
|
|
24
|
+
* awsAccessKeyIdWoVersion: 1,
|
|
25
|
+
* awsSecretAccessKeyWo: athenaAwsSecretAccessKey,
|
|
26
|
+
* awsSecretAccessKeyWoVersion: 1,
|
|
27
|
+
* schema: "your_schema",
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
5
31
|
* ## Import
|
|
6
32
|
*
|
|
7
33
|
* using import blocks (requires Terraform >= 1.5)
|
package/athenaCredential.js
CHANGED
|
@@ -8,6 +8,32 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Athena credential resource
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
16
|
+
*
|
|
17
|
+
* // Using the classic sensitive attributes (stored in state)
|
|
18
|
+
* const example = new dbtcloud.AthenaCredential("example", {
|
|
19
|
+
* projectId: exampleDbtcloudProject.id,
|
|
20
|
+
* awsAccessKeyId: "your-access-key-id",
|
|
21
|
+
* awsSecretAccessKey: "your-secret-access-key",
|
|
22
|
+
* schema: "your_schema",
|
|
23
|
+
* });
|
|
24
|
+
* const config = new pulumi.Config();
|
|
25
|
+
* const athenaAwsAccessKeyId = config.require("athenaAwsAccessKeyId");
|
|
26
|
+
* const athenaAwsSecretAccessKey = config.require("athenaAwsSecretAccessKey");
|
|
27
|
+
* const exampleWo = new dbtcloud.AthenaCredential("example_wo", {
|
|
28
|
+
* projectId: exampleDbtcloudProject.id,
|
|
29
|
+
* awsAccessKeyIdWo: athenaAwsAccessKeyId,
|
|
30
|
+
* awsAccessKeyIdWoVersion: 1,
|
|
31
|
+
* awsSecretAccessKeyWo: athenaAwsSecretAccessKey,
|
|
32
|
+
* awsSecretAccessKeyWoVersion: 1,
|
|
33
|
+
* schema: "your_schema",
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*
|
|
11
37
|
* ## Import
|
|
12
38
|
*
|
|
13
39
|
* using import blocks (requires Terraform >= 1.5)
|
package/athenaCredential.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"athenaCredential.js","sourceRoot":"","sources":["../athenaCredential.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"athenaCredential.js","sourceRoot":"","sources":["../athenaCredential.ts"],"names":[],"mappings":"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"}
|
package/authProvider.d.ts
CHANGED
|
@@ -6,6 +6,86 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
6
6
|
*
|
|
7
7
|
* See the [documentation](https://docs.getdbt.com/docs/cloud/manage-access/sso-overview) for more information.
|
|
8
8
|
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
14
|
+
* import * as std from "@pulumi/std";
|
|
15
|
+
*
|
|
16
|
+
* const config = new pulumi.Config();
|
|
17
|
+
* const samlCert = config.require("samlCert");
|
|
18
|
+
* const saml = new dbtcloud.AuthProvider("saml", {
|
|
19
|
+
* type: "saml",
|
|
20
|
+
* entityId: "https://your-idp.example.com/metadata",
|
|
21
|
+
* ssoUrl: "https://your-idp.example.com/sso/saml",
|
|
22
|
+
* certWo: samlCert,
|
|
23
|
+
* certWoVersion: 1,
|
|
24
|
+
* });
|
|
25
|
+
* export const loginUrl = saml.loginUrl;
|
|
26
|
+
* // SAML — all optional fields
|
|
27
|
+
* const samlFull = new dbtcloud.AuthProvider("saml_full", {
|
|
28
|
+
* type: "saml",
|
|
29
|
+
* entityId: "https://your-idp.example.com/metadata",
|
|
30
|
+
* ssoUrl: "https://your-idp.example.com/sso/saml",
|
|
31
|
+
* cert: std.file({
|
|
32
|
+
* input: "idp-cert.pem",
|
|
33
|
+
* }).then(invoke => invoke.result),
|
|
34
|
+
* signRequest: true,
|
|
35
|
+
* attributeMap: JSON.stringify({
|
|
36
|
+
* email: "nameID",
|
|
37
|
+
* first_name: "firstName",
|
|
38
|
+
* last_name: "lastName",
|
|
39
|
+
* }),
|
|
40
|
+
* allowPasswordBackdoor: false,
|
|
41
|
+
* });
|
|
42
|
+
* // Okta (identical to SAML, different type value)
|
|
43
|
+
* const okta = new dbtcloud.AuthProvider("okta", {
|
|
44
|
+
* type: "okta",
|
|
45
|
+
* entityId: "http://www.okta.com/<okta_app_id>",
|
|
46
|
+
* ssoUrl: "https://<your-org>.okta.com/app/<app_path>/sso/saml",
|
|
47
|
+
* certWo: samlCert,
|
|
48
|
+
* certWoVersion: 1,
|
|
49
|
+
* });
|
|
50
|
+
* const azureClientSecret = config.require("azureClientSecret");
|
|
51
|
+
* const azureSingleTenant = new dbtcloud.AuthProvider("azure_single_tenant", {
|
|
52
|
+
* type: "azure_single_tenant",
|
|
53
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
54
|
+
* tenantId: "11111111-1111-1111-1111-111111111111",
|
|
55
|
+
* clientSecretWo: azureClientSecret,
|
|
56
|
+
* clientSecretWoVersion: 1,
|
|
57
|
+
* domain: "acme.com",
|
|
58
|
+
* includeIndirectGroups: true,
|
|
59
|
+
* maxGroupsToRetrieve: 500,
|
|
60
|
+
* });
|
|
61
|
+
* // Azure AD — multi tenant (no tenant_id required)
|
|
62
|
+
* const azureMultiTenant = new dbtcloud.AuthProvider("azure_multi_tenant", {
|
|
63
|
+
* type: "azure_multi_tenant",
|
|
64
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
65
|
+
* clientSecretWo: azureClientSecret,
|
|
66
|
+
* clientSecretWoVersion: 1,
|
|
67
|
+
* });
|
|
68
|
+
* // Azure Active Directory
|
|
69
|
+
* const azureActiveDirectory = new dbtcloud.AuthProvider("azure_active_directory", {
|
|
70
|
+
* type: "azure_active_directory",
|
|
71
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
72
|
+
* tenantId: "11111111-1111-1111-1111-111111111111",
|
|
73
|
+
* clientSecretWo: azureClientSecret,
|
|
74
|
+
* clientSecretWoVersion: 1,
|
|
75
|
+
* domain: "acme.com",
|
|
76
|
+
* });
|
|
77
|
+
* const gsuiteClientSecret = config.require("gsuiteClientSecret");
|
|
78
|
+
* const gsuite = new dbtcloud.AuthProvider("gsuite", {
|
|
79
|
+
* type: "gsuite",
|
|
80
|
+
* clientId: "000000000000-xxxx.apps.googleusercontent.com",
|
|
81
|
+
* clientSecretWo: gsuiteClientSecret,
|
|
82
|
+
* clientSecretWoVersion: 1,
|
|
83
|
+
* adminRefreshToken: "<oauth-refresh-token>",
|
|
84
|
+
* domain: "acme.com",
|
|
85
|
+
* gsuiteAdminId: "admin@acme.com",
|
|
86
|
+
* });
|
|
87
|
+
* ```
|
|
88
|
+
*
|
|
9
89
|
* ## Import
|
|
10
90
|
*
|
|
11
91
|
* Import an existing auth provider by its numeric ID.
|
package/authProvider.js
CHANGED
|
@@ -12,6 +12,86 @@ const utilities = require("./utilities");
|
|
|
12
12
|
*
|
|
13
13
|
* See the [documentation](https://docs.getdbt.com/docs/cloud/manage-access/sso-overview) for more information.
|
|
14
14
|
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
20
|
+
* import * as std from "@pulumi/std";
|
|
21
|
+
*
|
|
22
|
+
* const config = new pulumi.Config();
|
|
23
|
+
* const samlCert = config.require("samlCert");
|
|
24
|
+
* const saml = new dbtcloud.AuthProvider("saml", {
|
|
25
|
+
* type: "saml",
|
|
26
|
+
* entityId: "https://your-idp.example.com/metadata",
|
|
27
|
+
* ssoUrl: "https://your-idp.example.com/sso/saml",
|
|
28
|
+
* certWo: samlCert,
|
|
29
|
+
* certWoVersion: 1,
|
|
30
|
+
* });
|
|
31
|
+
* export const loginUrl = saml.loginUrl;
|
|
32
|
+
* // SAML — all optional fields
|
|
33
|
+
* const samlFull = new dbtcloud.AuthProvider("saml_full", {
|
|
34
|
+
* type: "saml",
|
|
35
|
+
* entityId: "https://your-idp.example.com/metadata",
|
|
36
|
+
* ssoUrl: "https://your-idp.example.com/sso/saml",
|
|
37
|
+
* cert: std.file({
|
|
38
|
+
* input: "idp-cert.pem",
|
|
39
|
+
* }).then(invoke => invoke.result),
|
|
40
|
+
* signRequest: true,
|
|
41
|
+
* attributeMap: JSON.stringify({
|
|
42
|
+
* email: "nameID",
|
|
43
|
+
* first_name: "firstName",
|
|
44
|
+
* last_name: "lastName",
|
|
45
|
+
* }),
|
|
46
|
+
* allowPasswordBackdoor: false,
|
|
47
|
+
* });
|
|
48
|
+
* // Okta (identical to SAML, different type value)
|
|
49
|
+
* const okta = new dbtcloud.AuthProvider("okta", {
|
|
50
|
+
* type: "okta",
|
|
51
|
+
* entityId: "http://www.okta.com/<okta_app_id>",
|
|
52
|
+
* ssoUrl: "https://<your-org>.okta.com/app/<app_path>/sso/saml",
|
|
53
|
+
* certWo: samlCert,
|
|
54
|
+
* certWoVersion: 1,
|
|
55
|
+
* });
|
|
56
|
+
* const azureClientSecret = config.require("azureClientSecret");
|
|
57
|
+
* const azureSingleTenant = new dbtcloud.AuthProvider("azure_single_tenant", {
|
|
58
|
+
* type: "azure_single_tenant",
|
|
59
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
60
|
+
* tenantId: "11111111-1111-1111-1111-111111111111",
|
|
61
|
+
* clientSecretWo: azureClientSecret,
|
|
62
|
+
* clientSecretWoVersion: 1,
|
|
63
|
+
* domain: "acme.com",
|
|
64
|
+
* includeIndirectGroups: true,
|
|
65
|
+
* maxGroupsToRetrieve: 500,
|
|
66
|
+
* });
|
|
67
|
+
* // Azure AD — multi tenant (no tenant_id required)
|
|
68
|
+
* const azureMultiTenant = new dbtcloud.AuthProvider("azure_multi_tenant", {
|
|
69
|
+
* type: "azure_multi_tenant",
|
|
70
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
71
|
+
* clientSecretWo: azureClientSecret,
|
|
72
|
+
* clientSecretWoVersion: 1,
|
|
73
|
+
* });
|
|
74
|
+
* // Azure Active Directory
|
|
75
|
+
* const azureActiveDirectory = new dbtcloud.AuthProvider("azure_active_directory", {
|
|
76
|
+
* type: "azure_active_directory",
|
|
77
|
+
* clientId: "00000000-0000-0000-0000-000000000000",
|
|
78
|
+
* tenantId: "11111111-1111-1111-1111-111111111111",
|
|
79
|
+
* clientSecretWo: azureClientSecret,
|
|
80
|
+
* clientSecretWoVersion: 1,
|
|
81
|
+
* domain: "acme.com",
|
|
82
|
+
* });
|
|
83
|
+
* const gsuiteClientSecret = config.require("gsuiteClientSecret");
|
|
84
|
+
* const gsuite = new dbtcloud.AuthProvider("gsuite", {
|
|
85
|
+
* type: "gsuite",
|
|
86
|
+
* clientId: "000000000000-xxxx.apps.googleusercontent.com",
|
|
87
|
+
* clientSecretWo: gsuiteClientSecret,
|
|
88
|
+
* clientSecretWoVersion: 1,
|
|
89
|
+
* adminRefreshToken: "<oauth-refresh-token>",
|
|
90
|
+
* domain: "acme.com",
|
|
91
|
+
* gsuiteAdminId: "admin@acme.com",
|
|
92
|
+
* });
|
|
93
|
+
* ```
|
|
94
|
+
*
|
|
15
95
|
* ## Import
|
|
16
96
|
*
|
|
17
97
|
* Import an existing auth provider by its numeric ID.
|
package/authProvider.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"authProvider.js","sourceRoot":"","sources":["../authProvider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"authProvider.js","sourceRoot":"","sources":["../authProvider.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAgGG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACnE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;IA+GD,YAAY,IAAY,EAAE,WAAkD,EAAE,IAAmC;QAC7G,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA4C,CAAC;YAC3D,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,EAAE,iBAAiB,CAAC;YAC/D,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,kBAAkB,CAAC,GAAG,KAAK,EAAE,gBAAgB,CAAC;YAC7D,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,EAAE,YAAY,CAAC;YACrD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,EAAE,cAAc,CAAC;YACzD,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;YAC/C,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,eAAe,CAAC,GAAG,KAAK,EAAE,aAAa,CAAC;YACvD,cAAc,CAAC,uBAAuB,CAAC,GAAG,KAAK,EAAE,qBAAqB,CAAC;YACvE,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,qBAAqB,CAAC,GAAG,KAAK,EAAE,mBAAmB,CAAC;YACnE,cAAc,CAAC,aAAa,CAAC,GAAG,KAAK,EAAE,WAAW,CAAC;YACnD,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,EAAE,MAAM,CAAC;YACzC,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,EAAE,KAAK,CAAC;YACvC,cAAc,CAAC,UAAU,CAAC,GAAG,KAAK,EAAE,QAAQ,CAAC;YAC7C,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,EAAE,IAAI,CAAC;YACrC,cAAc,CAAC,WAAW,CAAC,GAAG,KAAK,EAAE,SAAS,CAAC;SAClD;aAAM;YACH,MAAM,IAAI,GAAG,WAA2C,CAAC;YACzD,IAAI,IAAI,EAAE,IAAI,KAAK,SAAS,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACvC,MAAM,IAAI,KAAK,CAAC,kCAAkC,CAAC,CAAC;aACvD;YACD,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,EAAE,iBAAiB,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAClH,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC;YACpD,cAAc,CAAC,kBAAkB,CAAC,GAAG,IAAI,EAAE,gBAAgB,CAAC;YAC5D,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC3E,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACjF,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,EAAE,YAAY,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACnG,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,EAAE,cAAc,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACzG,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC;YAC5C,cAAc,CAAC,eAAe,CAAC,GAAG,IAAI,EAAE,aAAa,CAAC;YACtD,cAAc,CAAC,uBAAuB,CAAC,GAAG,IAAI,EAAE,qBAAqB,CAAC;YACtE,cAAc,CAAC,qBAAqB,CAAC,GAAG,IAAI,EAAE,mBAAmB,CAAC;YAClE,cAAc,CAAC,aAAa,CAAC,GAAG,IAAI,EAAE,WAAW,CAAC;YAClD,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,QAAQ,CAAC,GAAG,IAAI,EAAE,MAAM,CAAC;YACxC,cAAc,CAAC,UAAU,CAAC,GAAG,IAAI,EAAE,QAAQ,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,SAAS,CAAC;YACvF,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,EAAE,IAAI,CAAC;YACpC,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YACrD,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAChD,cAAc,CAAC,UAAU,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC/C,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,WAAW,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACnD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,MAAM,UAAU,GAAG,EAAE,uBAAuB,EAAE,CAAC,mBAAmB,EAAE,MAAM,EAAE,QAAQ,EAAE,cAAc,EAAE,gBAAgB,EAAE,UAAU,CAAC,EAAE,CAAC;QACtI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,IAAI,EAAE,UAAU,CAAC,CAAC;QAC7C,KAAK,CAAC,YAAY,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IACjE,CAAC;;AA5ML,oCA6MC;AA/LG,gBAAgB;AACO,yBAAY,GAAG,0CAA0C,CAAC"}
|
|
@@ -2,6 +2,30 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Databricks credential resource
|
|
4
4
|
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
10
|
+
*
|
|
11
|
+
* // Using the classic sensitive attribute (stored in state)
|
|
12
|
+
* const myDatabricksCred = new dbtcloud.DatabricksCredential("my_databricks_cred", {
|
|
13
|
+
* projectId: dbtProject.id,
|
|
14
|
+
* token: "abcdefgh",
|
|
15
|
+
* schema: "my_schema",
|
|
16
|
+
* adapterType: "databricks",
|
|
17
|
+
* });
|
|
18
|
+
* const config = new pulumi.Config();
|
|
19
|
+
* const databricksToken = config.require("databricksToken");
|
|
20
|
+
* const myDatabricksCredWo = new dbtcloud.DatabricksCredential("my_databricks_cred_wo", {
|
|
21
|
+
* projectId: dbtProject.id,
|
|
22
|
+
* tokenWo: databricksToken,
|
|
23
|
+
* tokenWoVersion: 1,
|
|
24
|
+
* schema: "my_schema",
|
|
25
|
+
* adapterType: "databricks",
|
|
26
|
+
* });
|
|
27
|
+
* ```
|
|
28
|
+
*
|
|
5
29
|
* ## Import
|
|
6
30
|
*
|
|
7
31
|
* using import blocks (requires Terraform >= 1.5)
|
package/databricksCredential.js
CHANGED
|
@@ -8,6 +8,30 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Databricks credential resource
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
16
|
+
*
|
|
17
|
+
* // Using the classic sensitive attribute (stored in state)
|
|
18
|
+
* const myDatabricksCred = new dbtcloud.DatabricksCredential("my_databricks_cred", {
|
|
19
|
+
* projectId: dbtProject.id,
|
|
20
|
+
* token: "abcdefgh",
|
|
21
|
+
* schema: "my_schema",
|
|
22
|
+
* adapterType: "databricks",
|
|
23
|
+
* });
|
|
24
|
+
* const config = new pulumi.Config();
|
|
25
|
+
* const databricksToken = config.require("databricksToken");
|
|
26
|
+
* const myDatabricksCredWo = new dbtcloud.DatabricksCredential("my_databricks_cred_wo", {
|
|
27
|
+
* projectId: dbtProject.id,
|
|
28
|
+
* tokenWo: databricksToken,
|
|
29
|
+
* tokenWoVersion: 1,
|
|
30
|
+
* schema: "my_schema",
|
|
31
|
+
* adapterType: "databricks",
|
|
32
|
+
* });
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
11
35
|
* ## Import
|
|
12
36
|
*
|
|
13
37
|
* using import blocks (requires Terraform >= 1.5)
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"databricksCredential.js","sourceRoot":"","sources":["../databricksCredential.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"databricksCredential.js","sourceRoot":"","sources":["../databricksCredential.ts"],"names":[],"mappings":"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"}
|
|
@@ -14,6 +14,34 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
14
14
|
*
|
|
15
15
|
* > **Note:** The `connectionId` cannot be changed after creation. To use a different connection,
|
|
16
16
|
* you must destroy and recreate the resource.
|
|
17
|
+
*
|
|
18
|
+
* ## Example Usage
|
|
19
|
+
*
|
|
20
|
+
* ```typescript
|
|
21
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
22
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
23
|
+
*
|
|
24
|
+
* // Using the classic sensitive attribute (stored in state)
|
|
25
|
+
* const example = new dbtcloud.DatabricksPlatformMetadataCredential("example", {
|
|
26
|
+
* connectionId: databricks.id,
|
|
27
|
+
* catalogIngestionEnabled: true,
|
|
28
|
+
* costOptimizationEnabled: false,
|
|
29
|
+
* costInsightsEnabled: false,
|
|
30
|
+
* token: databricksToken,
|
|
31
|
+
* catalog: "main",
|
|
32
|
+
* });
|
|
33
|
+
* const config = new pulumi.Config();
|
|
34
|
+
* const databricksMetadataToken = config.require("databricksMetadataToken");
|
|
35
|
+
* const exampleWo = new dbtcloud.DatabricksPlatformMetadataCredential("example_wo", {
|
|
36
|
+
* connectionId: databricks.id,
|
|
37
|
+
* catalogIngestionEnabled: true,
|
|
38
|
+
* costOptimizationEnabled: false,
|
|
39
|
+
* costInsightsEnabled: false,
|
|
40
|
+
* tokenWo: databricksMetadataToken,
|
|
41
|
+
* tokenWoVersion: 1,
|
|
42
|
+
* catalog: "main",
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
17
45
|
*/
|
|
18
46
|
export declare class DatabricksPlatformMetadataCredential extends pulumi.CustomResource {
|
|
19
47
|
/**
|
|
@@ -20,6 +20,34 @@ const utilities = require("./utilities");
|
|
|
20
20
|
*
|
|
21
21
|
* > **Note:** The `connectionId` cannot be changed after creation. To use a different connection,
|
|
22
22
|
* you must destroy and recreate the resource.
|
|
23
|
+
*
|
|
24
|
+
* ## Example Usage
|
|
25
|
+
*
|
|
26
|
+
* ```typescript
|
|
27
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
28
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
29
|
+
*
|
|
30
|
+
* // Using the classic sensitive attribute (stored in state)
|
|
31
|
+
* const example = new dbtcloud.DatabricksPlatformMetadataCredential("example", {
|
|
32
|
+
* connectionId: databricks.id,
|
|
33
|
+
* catalogIngestionEnabled: true,
|
|
34
|
+
* costOptimizationEnabled: false,
|
|
35
|
+
* costInsightsEnabled: false,
|
|
36
|
+
* token: databricksToken,
|
|
37
|
+
* catalog: "main",
|
|
38
|
+
* });
|
|
39
|
+
* const config = new pulumi.Config();
|
|
40
|
+
* const databricksMetadataToken = config.require("databricksMetadataToken");
|
|
41
|
+
* const exampleWo = new dbtcloud.DatabricksPlatformMetadataCredential("example_wo", {
|
|
42
|
+
* connectionId: databricks.id,
|
|
43
|
+
* catalogIngestionEnabled: true,
|
|
44
|
+
* costOptimizationEnabled: false,
|
|
45
|
+
* costInsightsEnabled: false,
|
|
46
|
+
* tokenWo: databricksMetadataToken,
|
|
47
|
+
* tokenWoVersion: 1,
|
|
48
|
+
* catalog: "main",
|
|
49
|
+
* });
|
|
50
|
+
* ```
|
|
23
51
|
*/
|
|
24
52
|
class DatabricksPlatformMetadataCredential extends pulumi.CustomResource {
|
|
25
53
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"databricksPlatformMetadataCredential.js","sourceRoot":"","sources":["../databricksPlatformMetadataCredential.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"databricksPlatformMetadataCredential.js","sourceRoot":"","sources":["../databricksPlatformMetadataCredential.ts"],"names":[],"mappings":"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"}
|
package/fabricCredential.d.ts
CHANGED
|
@@ -2,6 +2,54 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Fabric credential resource
|
|
4
4
|
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
10
|
+
*
|
|
11
|
+
* // Using the classic sensitive attributes (stored in state)
|
|
12
|
+
* // when using AD authentication
|
|
13
|
+
* const myFabricCredAd = new dbtcloud.FabricCredential("my_fabric_cred_ad", {
|
|
14
|
+
* projectId: dbtProject.id,
|
|
15
|
+
* schema: "my_schema",
|
|
16
|
+
* user: "my_user",
|
|
17
|
+
* password: "my_password",
|
|
18
|
+
* schemaAuthorization: "abcd",
|
|
19
|
+
* });
|
|
20
|
+
* // when using service principal authentication
|
|
21
|
+
* const myFabricCredServPrinc = new dbtcloud.FabricCredential("my_fabric_cred_serv_princ", {
|
|
22
|
+
* projectId: dbtProject.id,
|
|
23
|
+
* schema: "my_schema",
|
|
24
|
+
* clientId: "my_client_id",
|
|
25
|
+
* tenantId: "my_tenant_id",
|
|
26
|
+
* clientSecret: "my_secret",
|
|
27
|
+
* schemaAuthorization: "abcd",
|
|
28
|
+
* });
|
|
29
|
+
* const config = new pulumi.Config();
|
|
30
|
+
* const fabricPassword = config.require("fabricPassword");
|
|
31
|
+
* const fabricClientSecret = config.require("fabricClientSecret");
|
|
32
|
+
* // when using AD authentication with write-only password
|
|
33
|
+
* const myFabricCredAdWo = new dbtcloud.FabricCredential("my_fabric_cred_ad_wo", {
|
|
34
|
+
* projectId: dbtProject.id,
|
|
35
|
+
* schema: "my_schema",
|
|
36
|
+
* user: "my_user",
|
|
37
|
+
* passwordWo: fabricPassword,
|
|
38
|
+
* passwordWoVersion: 1,
|
|
39
|
+
* schemaAuthorization: "abcd",
|
|
40
|
+
* });
|
|
41
|
+
* // when using service principal authentication with write-only client secret
|
|
42
|
+
* const myFabricCredServPrincWo = new dbtcloud.FabricCredential("my_fabric_cred_serv_princ_wo", {
|
|
43
|
+
* projectId: dbtProject.id,
|
|
44
|
+
* schema: "my_schema",
|
|
45
|
+
* clientId: "my_client_id",
|
|
46
|
+
* tenantId: "my_tenant_id",
|
|
47
|
+
* clientSecretWo: fabricClientSecret,
|
|
48
|
+
* clientSecretWoVersion: 1,
|
|
49
|
+
* schemaAuthorization: "abcd",
|
|
50
|
+
* });
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
5
53
|
* ## Import
|
|
6
54
|
*
|
|
7
55
|
* using import blocks (requires Terraform >= 1.5)
|
package/fabricCredential.js
CHANGED
|
@@ -8,6 +8,54 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Fabric credential resource
|
|
10
10
|
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
16
|
+
*
|
|
17
|
+
* // Using the classic sensitive attributes (stored in state)
|
|
18
|
+
* // when using AD authentication
|
|
19
|
+
* const myFabricCredAd = new dbtcloud.FabricCredential("my_fabric_cred_ad", {
|
|
20
|
+
* projectId: dbtProject.id,
|
|
21
|
+
* schema: "my_schema",
|
|
22
|
+
* user: "my_user",
|
|
23
|
+
* password: "my_password",
|
|
24
|
+
* schemaAuthorization: "abcd",
|
|
25
|
+
* });
|
|
26
|
+
* // when using service principal authentication
|
|
27
|
+
* const myFabricCredServPrinc = new dbtcloud.FabricCredential("my_fabric_cred_serv_princ", {
|
|
28
|
+
* projectId: dbtProject.id,
|
|
29
|
+
* schema: "my_schema",
|
|
30
|
+
* clientId: "my_client_id",
|
|
31
|
+
* tenantId: "my_tenant_id",
|
|
32
|
+
* clientSecret: "my_secret",
|
|
33
|
+
* schemaAuthorization: "abcd",
|
|
34
|
+
* });
|
|
35
|
+
* const config = new pulumi.Config();
|
|
36
|
+
* const fabricPassword = config.require("fabricPassword");
|
|
37
|
+
* const fabricClientSecret = config.require("fabricClientSecret");
|
|
38
|
+
* // when using AD authentication with write-only password
|
|
39
|
+
* const myFabricCredAdWo = new dbtcloud.FabricCredential("my_fabric_cred_ad_wo", {
|
|
40
|
+
* projectId: dbtProject.id,
|
|
41
|
+
* schema: "my_schema",
|
|
42
|
+
* user: "my_user",
|
|
43
|
+
* passwordWo: fabricPassword,
|
|
44
|
+
* passwordWoVersion: 1,
|
|
45
|
+
* schemaAuthorization: "abcd",
|
|
46
|
+
* });
|
|
47
|
+
* // when using service principal authentication with write-only client secret
|
|
48
|
+
* const myFabricCredServPrincWo = new dbtcloud.FabricCredential("my_fabric_cred_serv_princ_wo", {
|
|
49
|
+
* projectId: dbtProject.id,
|
|
50
|
+
* schema: "my_schema",
|
|
51
|
+
* clientId: "my_client_id",
|
|
52
|
+
* tenantId: "my_tenant_id",
|
|
53
|
+
* clientSecretWo: fabricClientSecret,
|
|
54
|
+
* clientSecretWoVersion: 1,
|
|
55
|
+
* schemaAuthorization: "abcd",
|
|
56
|
+
* });
|
|
57
|
+
* ```
|
|
58
|
+
*
|
|
11
59
|
* ## Import
|
|
12
60
|
*
|
|
13
61
|
* using import blocks (requires Terraform >= 1.5)
|
package/fabricCredential.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"fabricCredential.js","sourceRoot":"","sources":["../fabricCredential.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"fabricCredential.js","sourceRoot":"","sources":["../fabricCredential.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -187,6 +187,9 @@ export declare const ModelNotifications: typeof import("./modelNotifications").M
|
|
|
187
187
|
export { NotificationArgs, NotificationState } from "./notification";
|
|
188
188
|
export type Notification = import("./notification").Notification;
|
|
189
189
|
export declare const Notification: typeof import("./notification").Notification;
|
|
190
|
+
export { NotificationSettingArgs, NotificationSettingState } from "./notificationSetting";
|
|
191
|
+
export type NotificationSetting = import("./notificationSetting").NotificationSetting;
|
|
192
|
+
export declare const NotificationSetting: typeof import("./notificationSetting").NotificationSetting;
|
|
190
193
|
export { OauthConfigurationArgs, OauthConfigurationState } from "./oauthConfiguration";
|
|
191
194
|
export type OauthConfiguration = import("./oauthConfiguration").OauthConfiguration;
|
|
192
195
|
export declare const OauthConfiguration: typeof import("./oauthConfiguration").OauthConfiguration;
|
package/index.js
CHANGED
|
@@ -18,7 +18,7 @@ var __exportStar = (this && this.__exportStar) || function(m, exports) {
|
|
|
18
18
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
19
19
|
exports.getNotification = exports.getModelNotificationsOutput = exports.getModelNotifications = exports.getJobsOutput = exports.getJobs = exports.getJobOutput = exports.getJob = exports.getGroupsOutput = exports.getGroups = exports.getGroupUsersOutput = exports.getGroupUsers = exports.getGroupOutput = exports.getGroup = exports.getGlobalConnectionsOutput = exports.getGlobalConnections = exports.getGlobalConnectionOutput = exports.getGlobalConnection = exports.getExtendedAttributesOutput = exports.getExtendedAttributes = exports.getEnvironmentsOutput = exports.getEnvironments = exports.getEnvironmentVariableOutput = exports.getEnvironmentVariable = exports.getEnvironmentOutput = exports.getEnvironment = exports.getDatabricksCredentialOutput = exports.getDatabricksCredential = exports.getBigQueryCredentialOutput = exports.getBigQueryCredential = exports.getAzureDevOpsRepositoryOutput = exports.getAzureDevOpsRepository = exports.getAzureDevOpsProjectOutput = exports.getAzureDevOpsProject = exports.getAthenaCredentialOutput = exports.getAthenaCredential = exports.FabricCredential = exports.ExtendedAttributes = exports.EnvironmentVariableJobOverride = exports.EnvironmentVariable = exports.Environment = exports.DatabricksSemanticLayerCredential = exports.DatabricksPlatformMetadataCredential = exports.DatabricksCredential = exports.ConnectionCatalogConfig = exports.BigquerySemanticLayerCredential = exports.BigQueryCredential = exports.AzureAdApplication = exports.AuthProvider = exports.AthenaCredential = exports.AccountFeatures = void 0;
|
|
20
20
|
exports.LineageIntegration = exports.LicenseMap = exports.Job = exports.IpRestrictionsRule = exports.GroupPartialPermissions = exports.Group = exports.GlobalConnection = exports.getWebhookOutput = exports.getWebhook = exports.getUsersOutput = exports.getUsers = exports.getUserGroupsOutput = exports.getUserGroups = exports.getUserOutput = exports.getUser = exports.getTeradataCredentialOutput = exports.getTeradataCredential = exports.getSynapseCredentialOutput = exports.getSynapseCredential = exports.getStarburstCredentialOutput = exports.getStarburstCredential = exports.getSparkCredentialOutput = exports.getSparkCredential = exports.getSnowflakeCredentialOutput = exports.getSnowflakeCredential = exports.getServiceTokenOutput = exports.getServiceToken = exports.getSalesforceCredentialOutput = exports.getSalesforceCredential = exports.getRunsOutput = exports.getRuns = exports.getRepositoryOutput = exports.getRepository = exports.getRedshiftCredentialOutput = exports.getRedshiftCredential = exports.getProjectsOutput = exports.getProjects = exports.getProjectOutput = exports.getProject = exports.getProfilesOutput = exports.getProfiles = exports.getProfileOutput = exports.getProfile = exports.getPrivatelinkEndpointsOutput = exports.getPrivatelinkEndpoints = exports.getPrivatelinkEndpointOutput = exports.getPrivatelinkEndpoint = exports.getPostgresCredentialOutput = exports.getPostgresCredential = exports.getNotificationOutput = void 0;
|
|
21
|
-
exports.types = exports.config = exports.Webhook = exports.UserGroups = exports.TeradataCredential = exports.SynapseCredential = exports.StarburstCredential = exports.SparkCredential = exports.SnowflakeSemanticLayerCredential = exports.SnowflakePlatformMetadataCredential = exports.SnowflakeCredential = exports.ServiceToken = exports.SemanticLayerCredentialServiceTokenMapping = exports.SemanticLayerConfiguration = exports.ScimGroupPermissions = exports.ScimGroupPartialPermissions = exports.ScimConfigToken = exports.ScimConfig = exports.SalesforceCredential = exports.Repository = exports.RedshiftSemanticLayerCredential = exports.RedshiftCredential = exports.ProjectRepository = exports.ProjectArtefacts = exports.Project = exports.Profile = exports.PostgresSemanticLayerCredential = exports.PostgresCredential = exports.PartialNotification = exports.PartialLicenseMap = exports.PartialEnvironmentVariable = exports.OpenaiIntegration = exports.OauthConfiguration = exports.Notification = exports.ModelNotifications = void 0;
|
|
21
|
+
exports.types = exports.config = exports.Webhook = exports.UserGroups = exports.TeradataCredential = exports.SynapseCredential = exports.StarburstCredential = exports.SparkCredential = exports.SnowflakeSemanticLayerCredential = exports.SnowflakePlatformMetadataCredential = exports.SnowflakeCredential = exports.ServiceToken = exports.SemanticLayerCredentialServiceTokenMapping = exports.SemanticLayerConfiguration = exports.ScimGroupPermissions = exports.ScimGroupPartialPermissions = exports.ScimConfigToken = exports.ScimConfig = exports.SalesforceCredential = exports.Repository = exports.RedshiftSemanticLayerCredential = exports.RedshiftCredential = exports.ProjectRepository = exports.ProjectArtefacts = exports.Project = exports.Profile = exports.PostgresSemanticLayerCredential = exports.PostgresCredential = exports.PartialNotification = exports.PartialLicenseMap = exports.PartialEnvironmentVariable = exports.OpenaiIntegration = exports.OauthConfiguration = exports.NotificationSetting = exports.Notification = exports.ModelNotifications = void 0;
|
|
22
22
|
const pulumi = require("@pulumi/pulumi");
|
|
23
23
|
const utilities = require("./utilities");
|
|
24
24
|
exports.AccountFeatures = null;
|
|
@@ -186,6 +186,8 @@ exports.ModelNotifications = null;
|
|
|
186
186
|
utilities.lazyLoad(exports, ["ModelNotifications"], () => require("./modelNotifications"));
|
|
187
187
|
exports.Notification = null;
|
|
188
188
|
utilities.lazyLoad(exports, ["Notification"], () => require("./notification"));
|
|
189
|
+
exports.NotificationSetting = null;
|
|
190
|
+
utilities.lazyLoad(exports, ["NotificationSetting"], () => require("./notificationSetting"));
|
|
189
191
|
exports.OauthConfiguration = null;
|
|
190
192
|
utilities.lazyLoad(exports, ["OauthConfiguration"], () => require("./oauthConfiguration"));
|
|
191
193
|
exports.OpenaiIntegration = null;
|
|
@@ -307,6 +309,8 @@ const _module = {
|
|
|
307
309
|
return new exports.ModelNotifications(name, undefined, { urn });
|
|
308
310
|
case "dbtcloud:index/notification:Notification":
|
|
309
311
|
return new exports.Notification(name, undefined, { urn });
|
|
312
|
+
case "dbtcloud:index/notificationSetting:NotificationSetting":
|
|
313
|
+
return new exports.NotificationSetting(name, undefined, { urn });
|
|
310
314
|
case "dbtcloud:index/oauthConfiguration:OauthConfiguration":
|
|
311
315
|
return new exports.OauthConfiguration(name, undefined, { urn });
|
|
312
316
|
case "dbtcloud:index/openaiIntegration:OpenaiIntegration":
|
|
@@ -398,6 +402,7 @@ pulumi.runtime.registerResourceModule("dbtcloud", "index/licenseMap", _module);
|
|
|
398
402
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/lineageIntegration", _module);
|
|
399
403
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/modelNotifications", _module);
|
|
400
404
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/notification", _module);
|
|
405
|
+
pulumi.runtime.registerResourceModule("dbtcloud", "index/notificationSetting", _module);
|
|
401
406
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/oauthConfiguration", _module);
|
|
402
407
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/openaiIntegration", _module);
|
|
403
408
|
pulumi.runtime.registerResourceModule("dbtcloud", "index/partialEnvironmentVariable", _module);
|