@pulumi/dbtcloud 1.6.0-alpha.1771480527 → 1.6.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/environment.d.ts +24 -0
- package/environment.js +14 -0
- package/environment.js.map +1 -1
- package/getEnvironment.d.ts +4 -0
- package/getEnvironment.js.map +1 -1
- package/getGlobalConnection.d.ts +4 -0
- package/getGlobalConnection.js.map +1 -1
- package/getGlobalConnections.d.ts +1 -1
- package/getProfile.d.ts +92 -0
- package/getProfile.js +54 -0
- package/getProfile.js.map +1 -0
- package/getProfiles.d.ts +67 -0
- package/getProfiles.js +50 -0
- package/getProfiles.js.map +1 -0
- package/getSalesforceCredential.d.ts +64 -0
- package/getSalesforceCredential.js +30 -0
- package/getSalesforceCredential.js.map +1 -0
- package/globalConnection.d.ts +12 -0
- package/globalConnection.js +2 -0
- package/globalConnection.js.map +1 -1
- package/index.d.ts +15 -0
- package/index.js +21 -2
- package/index.js.map +1 -1
- package/package.json +2 -2
- package/profile.d.ts +150 -0
- package/profile.js +117 -0
- package/profile.js.map +1 -0
- package/salesforceCredential.d.ts +156 -0
- package/salesforceCredential.js +115 -0
- package/salesforceCredential.js.map +1 -0
- package/types/input.d.ts +14 -0
- package/types/output.d.ts +62 -0
package/environment.d.ts
CHANGED
|
@@ -34,6 +34,18 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
34
34
|
* type: "development",
|
|
35
35
|
* connectionId: myOtherGlobalConnection.id,
|
|
36
36
|
* });
|
|
37
|
+
* // Deployment environment with a primary profile (binds connection + credentials via profile)
|
|
38
|
+
* // NOTE: avoid setting connection_id, credential_id, or extended_attributes_id alongside
|
|
39
|
+
* // primary_profile_id — dbt Cloud may propagate the environment's values onto the profile,
|
|
40
|
+
* // overwriting the profile's own settings and affecting other environments sharing that profile.
|
|
41
|
+
* const profiledEnvironment = new dbtcloud.Environment("profiled_environment", {
|
|
42
|
+
* dbtVersion: "latest",
|
|
43
|
+
* name: "Staging",
|
|
44
|
+
* projectId: dbtProject.id,
|
|
45
|
+
* type: "deployment",
|
|
46
|
+
* deploymentType: "staging",
|
|
47
|
+
* primaryProfileId: myProfile.profileId,
|
|
48
|
+
* });
|
|
37
49
|
* ```
|
|
38
50
|
*
|
|
39
51
|
* ## Import
|
|
@@ -112,6 +124,10 @@ export declare class Environment extends pulumi.CustomResource {
|
|
|
112
124
|
* The name of the environment
|
|
113
125
|
*/
|
|
114
126
|
readonly name: pulumi.Output<string>;
|
|
127
|
+
/**
|
|
128
|
+
* The ID of the primary profile for this environment. A profile ties together a connection and credentials. Only applicable to deployment environments. > Setting `primaryProfileId` alongside `connectionId`, `credentialId`, or `extendedAttributesId` will produce an error. When a profile is assigned, the API determines those values from the profile. Manage connection, credentials, and extended attributes through the `dbtcloud.Profile` resource instead.
|
|
129
|
+
*/
|
|
130
|
+
readonly primaryProfileId: pulumi.Output<number>;
|
|
115
131
|
/**
|
|
116
132
|
* Project ID to create the environment in
|
|
117
133
|
*/
|
|
@@ -177,6 +193,10 @@ export interface EnvironmentState {
|
|
|
177
193
|
* The name of the environment
|
|
178
194
|
*/
|
|
179
195
|
name?: pulumi.Input<string>;
|
|
196
|
+
/**
|
|
197
|
+
* The ID of the primary profile for this environment. A profile ties together a connection and credentials. Only applicable to deployment environments. > Setting `primaryProfileId` alongside `connectionId`, `credentialId`, or `extendedAttributesId` will produce an error. When a profile is assigned, the API determines those values from the profile. Manage connection, credentials, and extended attributes through the `dbtcloud.Profile` resource instead.
|
|
198
|
+
*/
|
|
199
|
+
primaryProfileId?: pulumi.Input<number>;
|
|
180
200
|
/**
|
|
181
201
|
* Project ID to create the environment in
|
|
182
202
|
*/
|
|
@@ -230,6 +250,10 @@ export interface EnvironmentArgs {
|
|
|
230
250
|
* The name of the environment
|
|
231
251
|
*/
|
|
232
252
|
name?: pulumi.Input<string>;
|
|
253
|
+
/**
|
|
254
|
+
* The ID of the primary profile for this environment. A profile ties together a connection and credentials. Only applicable to deployment environments. > Setting `primaryProfileId` alongside `connectionId`, `credentialId`, or `extendedAttributesId` will produce an error. When a profile is assigned, the API determines those values from the profile. Manage connection, credentials, and extended attributes through the `dbtcloud.Profile` resource instead.
|
|
255
|
+
*/
|
|
256
|
+
primaryProfileId?: pulumi.Input<number>;
|
|
233
257
|
/**
|
|
234
258
|
* Project ID to create the environment in
|
|
235
259
|
*/
|
package/environment.js
CHANGED
|
@@ -40,6 +40,18 @@ const utilities = require("./utilities");
|
|
|
40
40
|
* type: "development",
|
|
41
41
|
* connectionId: myOtherGlobalConnection.id,
|
|
42
42
|
* });
|
|
43
|
+
* // Deployment environment with a primary profile (binds connection + credentials via profile)
|
|
44
|
+
* // NOTE: avoid setting connection_id, credential_id, or extended_attributes_id alongside
|
|
45
|
+
* // primary_profile_id — dbt Cloud may propagate the environment's values onto the profile,
|
|
46
|
+
* // overwriting the profile's own settings and affecting other environments sharing that profile.
|
|
47
|
+
* const profiledEnvironment = new dbtcloud.Environment("profiled_environment", {
|
|
48
|
+
* dbtVersion: "latest",
|
|
49
|
+
* name: "Staging",
|
|
50
|
+
* projectId: dbtProject.id,
|
|
51
|
+
* type: "deployment",
|
|
52
|
+
* deploymentType: "staging",
|
|
53
|
+
* primaryProfileId: myProfile.profileId,
|
|
54
|
+
* });
|
|
43
55
|
* ```
|
|
44
56
|
*
|
|
45
57
|
* ## Import
|
|
@@ -100,6 +112,7 @@ class Environment extends pulumi.CustomResource {
|
|
|
100
112
|
resourceInputs["extendedAttributesId"] = state?.extendedAttributesId;
|
|
101
113
|
resourceInputs["isActive"] = state?.isActive;
|
|
102
114
|
resourceInputs["name"] = state?.name;
|
|
115
|
+
resourceInputs["primaryProfileId"] = state?.primaryProfileId;
|
|
103
116
|
resourceInputs["projectId"] = state?.projectId;
|
|
104
117
|
resourceInputs["type"] = state?.type;
|
|
105
118
|
resourceInputs["useCustomBranch"] = state?.useCustomBranch;
|
|
@@ -121,6 +134,7 @@ class Environment extends pulumi.CustomResource {
|
|
|
121
134
|
resourceInputs["extendedAttributesId"] = args?.extendedAttributesId;
|
|
122
135
|
resourceInputs["isActive"] = args?.isActive;
|
|
123
136
|
resourceInputs["name"] = args?.name;
|
|
137
|
+
resourceInputs["primaryProfileId"] = args?.primaryProfileId;
|
|
124
138
|
resourceInputs["projectId"] = args?.projectId;
|
|
125
139
|
resourceInputs["type"] = args?.type;
|
|
126
140
|
resourceInputs["useCustomBranch"] = args?.useCustomBranch;
|
package/environment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../environment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"environment.js","sourceRoot":"","sources":["../environment.ts"],"names":[],"mappings":"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"}
|
package/getEnvironment.d.ts
CHANGED
|
@@ -60,6 +60,10 @@ export interface GetEnvironmentResult {
|
|
|
60
60
|
* The name of the environment
|
|
61
61
|
*/
|
|
62
62
|
readonly name: string;
|
|
63
|
+
/**
|
|
64
|
+
* The ID of the primary profile for this environment
|
|
65
|
+
*/
|
|
66
|
+
readonly primaryProfileId: number;
|
|
63
67
|
/**
|
|
64
68
|
* The project ID to which the environment belongs
|
|
65
69
|
*/
|
package/getEnvironment.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../getEnvironment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;
|
|
1
|
+
{"version":3,"file":"getEnvironment.js","sourceRoot":"","sources":["../getEnvironment.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8CAA8C,EAAE;QACzE,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,wCAMC;AA6ED;;GAEG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAAiC;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8CAA8C,EAAE;QAC/E,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,oDAMC"}
|
package/getGlobalConnection.d.ts
CHANGED
|
@@ -72,6 +72,10 @@ export interface GetGlobalConnectionResult {
|
|
|
72
72
|
* Redshift connection configuration
|
|
73
73
|
*/
|
|
74
74
|
readonly redshift: outputs.GetGlobalConnectionRedshift;
|
|
75
|
+
/**
|
|
76
|
+
* Salesforce connection configuration.
|
|
77
|
+
*/
|
|
78
|
+
readonly salesforce: outputs.GetGlobalConnectionSalesforce;
|
|
75
79
|
/**
|
|
76
80
|
* Snowflake connection configuration
|
|
77
81
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGlobalConnection.js","sourceRoot":"","sources":["../getGlobalConnection.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC;
|
|
1
|
+
{"version":3,"file":"getGlobalConnection.js","sourceRoot":"","sources":["../getGlobalConnection.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;GAWG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC;AAmFD;;;;;;;;;;;GAWG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8DAKC"}
|
|
@@ -18,7 +18,7 @@ export declare function getGlobalConnections(opts?: pulumi.InvokeOptions): Promi
|
|
|
18
18
|
*/
|
|
19
19
|
export interface GetGlobalConnectionsResult {
|
|
20
20
|
/**
|
|
21
|
-
* A
|
|
21
|
+
* A list of all the connections
|
|
22
22
|
*/
|
|
23
23
|
readonly connections: outputs.GetGlobalConnectionsConnection[];
|
|
24
24
|
/**
|
package/getProfile.d.ts
ADDED
|
@@ -0,0 +1,92 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Retrieve data for a single profile
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
10
|
+
*
|
|
11
|
+
* const myProfile = dbtcloud.getProfile({
|
|
12
|
+
* profileId: 12345,
|
|
13
|
+
* projectId: 6789,
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getProfile(args: GetProfileArgs, opts?: pulumi.InvokeOptions): Promise<GetProfileResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getProfile.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetProfileArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the profile
|
|
24
|
+
*/
|
|
25
|
+
profileId: number;
|
|
26
|
+
/**
|
|
27
|
+
* The project ID to which the profile belongs
|
|
28
|
+
*/
|
|
29
|
+
projectId: number;
|
|
30
|
+
}
|
|
31
|
+
/**
|
|
32
|
+
* A collection of values returned by getProfile.
|
|
33
|
+
*/
|
|
34
|
+
export interface GetProfileResult {
|
|
35
|
+
/**
|
|
36
|
+
* The ID of the connection used by this profile
|
|
37
|
+
*/
|
|
38
|
+
readonly connectionId: number;
|
|
39
|
+
/**
|
|
40
|
+
* The ID of the credentials used by this profile
|
|
41
|
+
*/
|
|
42
|
+
readonly credentialsId: number;
|
|
43
|
+
/**
|
|
44
|
+
* The ID of the extended attributes for this profile
|
|
45
|
+
*/
|
|
46
|
+
readonly extendedAttributesId: number;
|
|
47
|
+
/**
|
|
48
|
+
* The ID of this resource. Contains the project ID and the profile ID.
|
|
49
|
+
*/
|
|
50
|
+
readonly id: string;
|
|
51
|
+
/**
|
|
52
|
+
* Unique identifier for the profile
|
|
53
|
+
*/
|
|
54
|
+
readonly key: string;
|
|
55
|
+
/**
|
|
56
|
+
* The ID of the profile
|
|
57
|
+
*/
|
|
58
|
+
readonly profileId: number;
|
|
59
|
+
/**
|
|
60
|
+
* The project ID to which the profile belongs
|
|
61
|
+
*/
|
|
62
|
+
readonly projectId: number;
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Retrieve data for a single profile
|
|
66
|
+
*
|
|
67
|
+
* ## Example Usage
|
|
68
|
+
*
|
|
69
|
+
* ```typescript
|
|
70
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
71
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
72
|
+
*
|
|
73
|
+
* const myProfile = dbtcloud.getProfile({
|
|
74
|
+
* profileId: 12345,
|
|
75
|
+
* projectId: 6789,
|
|
76
|
+
* });
|
|
77
|
+
* ```
|
|
78
|
+
*/
|
|
79
|
+
export declare function getProfileOutput(args: GetProfileOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfileResult>;
|
|
80
|
+
/**
|
|
81
|
+
* A collection of arguments for invoking getProfile.
|
|
82
|
+
*/
|
|
83
|
+
export interface GetProfileOutputArgs {
|
|
84
|
+
/**
|
|
85
|
+
* The ID of the profile
|
|
86
|
+
*/
|
|
87
|
+
profileId: pulumi.Input<number>;
|
|
88
|
+
/**
|
|
89
|
+
* The project ID to which the profile belongs
|
|
90
|
+
*/
|
|
91
|
+
projectId: pulumi.Input<number>;
|
|
92
|
+
}
|
package/getProfile.js
ADDED
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getProfileOutput = exports.getProfile = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieve data for a single profile
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
16
|
+
*
|
|
17
|
+
* const myProfile = dbtcloud.getProfile({
|
|
18
|
+
* profileId: 12345,
|
|
19
|
+
* projectId: 6789,
|
|
20
|
+
* });
|
|
21
|
+
* ```
|
|
22
|
+
*/
|
|
23
|
+
function getProfile(args, opts) {
|
|
24
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
25
|
+
return pulumi.runtime.invoke("dbtcloud:index/getProfile:getProfile", {
|
|
26
|
+
"profileId": args.profileId,
|
|
27
|
+
"projectId": args.projectId,
|
|
28
|
+
}, opts);
|
|
29
|
+
}
|
|
30
|
+
exports.getProfile = getProfile;
|
|
31
|
+
/**
|
|
32
|
+
* Retrieve data for a single profile
|
|
33
|
+
*
|
|
34
|
+
* ## Example Usage
|
|
35
|
+
*
|
|
36
|
+
* ```typescript
|
|
37
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
38
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
39
|
+
*
|
|
40
|
+
* const myProfile = dbtcloud.getProfile({
|
|
41
|
+
* profileId: 12345,
|
|
42
|
+
* projectId: 6789,
|
|
43
|
+
* });
|
|
44
|
+
* ```
|
|
45
|
+
*/
|
|
46
|
+
function getProfileOutput(args, opts) {
|
|
47
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
48
|
+
return pulumi.runtime.invokeOutput("dbtcloud:index/getProfile:getProfile", {
|
|
49
|
+
"profileId": args.profileId,
|
|
50
|
+
"projectId": args.projectId,
|
|
51
|
+
}, opts);
|
|
52
|
+
}
|
|
53
|
+
exports.getProfileOutput = getProfileOutput;
|
|
54
|
+
//# sourceMappingURL=getProfile.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProfile.js","sourceRoot":"","sources":["../getProfile.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sCAAsC,EAAE;QACjE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAiDD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAAiC;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sCAAsC,EAAE;QACvE,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC"}
|
package/getProfiles.d.ts
ADDED
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieve data for multiple profiles
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
11
|
+
*
|
|
12
|
+
* const all = dbtcloud.getProfiles({
|
|
13
|
+
* projectId: 6789,
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getProfiles(args: GetProfilesArgs, opts?: pulumi.InvokeOptions): Promise<GetProfilesResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getProfiles.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetProfilesArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The project ID to filter profiles for
|
|
24
|
+
*/
|
|
25
|
+
projectId: number;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getProfiles.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetProfilesResult {
|
|
31
|
+
/**
|
|
32
|
+
* The provider-assigned unique ID for this managed resource.
|
|
33
|
+
*/
|
|
34
|
+
readonly id: string;
|
|
35
|
+
/**
|
|
36
|
+
* The list of profiles
|
|
37
|
+
*/
|
|
38
|
+
readonly profiles: outputs.GetProfilesProfile[];
|
|
39
|
+
/**
|
|
40
|
+
* The project ID to filter profiles for
|
|
41
|
+
*/
|
|
42
|
+
readonly projectId: number;
|
|
43
|
+
}
|
|
44
|
+
/**
|
|
45
|
+
* Retrieve data for multiple profiles
|
|
46
|
+
*
|
|
47
|
+
* ## Example Usage
|
|
48
|
+
*
|
|
49
|
+
* ```typescript
|
|
50
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
51
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
52
|
+
*
|
|
53
|
+
* const all = dbtcloud.getProfiles({
|
|
54
|
+
* projectId: 6789,
|
|
55
|
+
* });
|
|
56
|
+
* ```
|
|
57
|
+
*/
|
|
58
|
+
export declare function getProfilesOutput(args: GetProfilesOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetProfilesResult>;
|
|
59
|
+
/**
|
|
60
|
+
* A collection of arguments for invoking getProfiles.
|
|
61
|
+
*/
|
|
62
|
+
export interface GetProfilesOutputArgs {
|
|
63
|
+
/**
|
|
64
|
+
* The project ID to filter profiles for
|
|
65
|
+
*/
|
|
66
|
+
projectId: pulumi.Input<number>;
|
|
67
|
+
}
|
package/getProfiles.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getProfilesOutput = exports.getProfiles = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieve data for multiple profiles
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
16
|
+
*
|
|
17
|
+
* const all = dbtcloud.getProfiles({
|
|
18
|
+
* projectId: 6789,
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getProfiles(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("dbtcloud:index/getProfiles:getProfiles", {
|
|
25
|
+
"projectId": args.projectId,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getProfiles = getProfiles;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieve data for multiple profiles
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as dbtcloud from "@pulumi/dbtcloud";
|
|
37
|
+
*
|
|
38
|
+
* const all = dbtcloud.getProfiles({
|
|
39
|
+
* projectId: 6789,
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getProfilesOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("dbtcloud:index/getProfiles:getProfiles", {
|
|
46
|
+
"projectId": args.projectId,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getProfilesOutput = getProfilesOutput;
|
|
50
|
+
//# sourceMappingURL=getProfiles.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProfiles.js","sourceRoot":"","sources":["../getProfiles.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAC1E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wCAAwC,EAAE;QACnE,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kCAKC;AA6BD;;;;;;;;;;;;;GAaG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAAiC;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wCAAwC,EAAE;QACzE,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,8CAKC"}
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Salesforce credential data source
|
|
4
|
+
*/
|
|
5
|
+
export declare function getSalesforceCredential(args: GetSalesforceCredentialArgs, opts?: pulumi.InvokeOptions): Promise<GetSalesforceCredentialResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getSalesforceCredential.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetSalesforceCredentialArgs {
|
|
10
|
+
/**
|
|
11
|
+
* Credential ID
|
|
12
|
+
*/
|
|
13
|
+
credentialId: number;
|
|
14
|
+
/**
|
|
15
|
+
* Project ID
|
|
16
|
+
*/
|
|
17
|
+
projectId: number;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A collection of values returned by getSalesforceCredential.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetSalesforceCredentialResult {
|
|
23
|
+
/**
|
|
24
|
+
* Credential ID
|
|
25
|
+
*/
|
|
26
|
+
readonly credentialId: number;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of this resource. Contains the project ID and the credential ID.
|
|
29
|
+
*/
|
|
30
|
+
readonly id: string;
|
|
31
|
+
/**
|
|
32
|
+
* The number of threads to use for dbt operations
|
|
33
|
+
*/
|
|
34
|
+
readonly numThreads: number;
|
|
35
|
+
/**
|
|
36
|
+
* Project ID
|
|
37
|
+
*/
|
|
38
|
+
readonly projectId: number;
|
|
39
|
+
/**
|
|
40
|
+
* Target name
|
|
41
|
+
*/
|
|
42
|
+
readonly targetName: string;
|
|
43
|
+
/**
|
|
44
|
+
* The Salesforce username for OAuth JWT bearer flow authentication
|
|
45
|
+
*/
|
|
46
|
+
readonly username: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* Salesforce credential data source
|
|
50
|
+
*/
|
|
51
|
+
export declare function getSalesforceCredentialOutput(args: GetSalesforceCredentialOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output<GetSalesforceCredentialResult>;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of arguments for invoking getSalesforceCredential.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetSalesforceCredentialOutputArgs {
|
|
56
|
+
/**
|
|
57
|
+
* Credential ID
|
|
58
|
+
*/
|
|
59
|
+
credentialId: pulumi.Input<number>;
|
|
60
|
+
/**
|
|
61
|
+
* Project ID
|
|
62
|
+
*/
|
|
63
|
+
projectId: pulumi.Input<number>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,30 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by pulumi-language-nodejs. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.getSalesforceCredentialOutput = exports.getSalesforceCredential = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Salesforce credential data source
|
|
10
|
+
*/
|
|
11
|
+
function getSalesforceCredential(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("dbtcloud:index/getSalesforceCredential:getSalesforceCredential", {
|
|
14
|
+
"credentialId": args.credentialId,
|
|
15
|
+
"projectId": args.projectId,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getSalesforceCredential = getSalesforceCredential;
|
|
19
|
+
/**
|
|
20
|
+
* Salesforce credential data source
|
|
21
|
+
*/
|
|
22
|
+
function getSalesforceCredentialOutput(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invokeOutput("dbtcloud:index/getSalesforceCredential:getSalesforceCredential", {
|
|
25
|
+
"credentialId": args.credentialId,
|
|
26
|
+
"projectId": args.projectId,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getSalesforceCredentialOutput = getSalesforceCredentialOutput;
|
|
30
|
+
//# sourceMappingURL=getSalesforceCredential.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getSalesforceCredential.js","sourceRoot":"","sources":["../getSalesforceCredential.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gEAAgE,EAAE;QAC3F,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC;AA6CD;;GAEG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAAiC;IACpH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,gEAAgE,EAAE;QACjG,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sEAMC"}
|
package/globalConnection.d.ts
CHANGED
|
@@ -234,6 +234,10 @@ export declare class GlobalConnection extends pulumi.CustomResource {
|
|
|
234
234
|
* Redshift connection configuration
|
|
235
235
|
*/
|
|
236
236
|
readonly redshift: pulumi.Output<outputs.GlobalConnectionRedshift | undefined>;
|
|
237
|
+
/**
|
|
238
|
+
* Salesforce connection configuration.
|
|
239
|
+
*/
|
|
240
|
+
readonly salesforce: pulumi.Output<outputs.GlobalConnectionSalesforce | undefined>;
|
|
237
241
|
/**
|
|
238
242
|
* Snowflake connection configuration
|
|
239
243
|
*/
|
|
@@ -308,6 +312,10 @@ export interface GlobalConnectionState {
|
|
|
308
312
|
* Redshift connection configuration
|
|
309
313
|
*/
|
|
310
314
|
redshift?: pulumi.Input<inputs.GlobalConnectionRedshift>;
|
|
315
|
+
/**
|
|
316
|
+
* Salesforce connection configuration.
|
|
317
|
+
*/
|
|
318
|
+
salesforce?: pulumi.Input<inputs.GlobalConnectionSalesforce>;
|
|
311
319
|
/**
|
|
312
320
|
* Snowflake connection configuration
|
|
313
321
|
*/
|
|
@@ -366,6 +374,10 @@ export interface GlobalConnectionArgs {
|
|
|
366
374
|
* Redshift connection configuration
|
|
367
375
|
*/
|
|
368
376
|
redshift?: pulumi.Input<inputs.GlobalConnectionRedshift>;
|
|
377
|
+
/**
|
|
378
|
+
* Salesforce connection configuration.
|
|
379
|
+
*/
|
|
380
|
+
salesforce?: pulumi.Input<inputs.GlobalConnectionSalesforce>;
|
|
369
381
|
/**
|
|
370
382
|
* Snowflake connection configuration
|
|
371
383
|
*/
|
package/globalConnection.js
CHANGED
|
@@ -217,6 +217,7 @@ class GlobalConnection extends pulumi.CustomResource {
|
|
|
217
217
|
resourceInputs["postgres"] = state?.postgres;
|
|
218
218
|
resourceInputs["privateLinkEndpointId"] = state?.privateLinkEndpointId;
|
|
219
219
|
resourceInputs["redshift"] = state?.redshift;
|
|
220
|
+
resourceInputs["salesforce"] = state?.salesforce;
|
|
220
221
|
resourceInputs["snowflake"] = state?.snowflake;
|
|
221
222
|
resourceInputs["starburst"] = state?.starburst;
|
|
222
223
|
resourceInputs["synapse"] = state?.synapse;
|
|
@@ -234,6 +235,7 @@ class GlobalConnection extends pulumi.CustomResource {
|
|
|
234
235
|
resourceInputs["postgres"] = args?.postgres;
|
|
235
236
|
resourceInputs["privateLinkEndpointId"] = args?.privateLinkEndpointId;
|
|
236
237
|
resourceInputs["redshift"] = args?.redshift;
|
|
238
|
+
resourceInputs["salesforce"] = args?.salesforce;
|
|
237
239
|
resourceInputs["snowflake"] = args?.snowflake;
|
|
238
240
|
resourceInputs["starburst"] = args?.starburst;
|
|
239
241
|
resourceInputs["synapse"] = args?.synapse;
|
package/globalConnection.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"globalConnection.js","sourceRoot":"","sources":["../globalConnection.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA2KG;AACH,MAAa,gBAAiB,SAAQ,MAAM,CAAC,cAAc;IACvD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA6B,EAAE,IAAmC;QAC3H,OAAO,IAAI,gBAAgB,CAAC,IAAI,EAAO,KAAK,EAAE,EAAE,GAAG,IAAI,EAAE,EAAE,EAAE,EAAE,EAAE,CAAC,CAAC;IACvE,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,gBAAgB,CAAC,YAAY,CAAC;IACjE,CAAC;
|
|
1
|
+
{"version":3,"file":"globalConnection.js","sourceRoot":"","sources":["../globalConnection.ts"],"names":[],"mappings":"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"}
|
package/index.d.ts
CHANGED
|
@@ -100,6 +100,12 @@ export declare const getPrivatelinkEndpointOutput: typeof import("./getPrivateli
|
|
|
100
100
|
export { GetPrivatelinkEndpointsResult } from "./getPrivatelinkEndpoints";
|
|
101
101
|
export declare const getPrivatelinkEndpoints: typeof import("./getPrivatelinkEndpoints").getPrivatelinkEndpoints;
|
|
102
102
|
export declare const getPrivatelinkEndpointsOutput: typeof import("./getPrivatelinkEndpoints").getPrivatelinkEndpointsOutput;
|
|
103
|
+
export { GetProfileArgs, GetProfileResult, GetProfileOutputArgs } from "./getProfile";
|
|
104
|
+
export declare const getProfile: typeof import("./getProfile").getProfile;
|
|
105
|
+
export declare const getProfileOutput: typeof import("./getProfile").getProfileOutput;
|
|
106
|
+
export { GetProfilesArgs, GetProfilesResult, GetProfilesOutputArgs } from "./getProfiles";
|
|
107
|
+
export declare const getProfiles: typeof import("./getProfiles").getProfiles;
|
|
108
|
+
export declare const getProfilesOutput: typeof import("./getProfiles").getProfilesOutput;
|
|
103
109
|
export { GetProjectArgs, GetProjectResult, GetProjectOutputArgs } from "./getProject";
|
|
104
110
|
export declare const getProject: typeof import("./getProject").getProject;
|
|
105
111
|
export declare const getProjectOutput: typeof import("./getProject").getProjectOutput;
|
|
@@ -115,6 +121,9 @@ export declare const getRepositoryOutput: typeof import("./getRepository").getRe
|
|
|
115
121
|
export { GetRunsArgs, GetRunsResult, GetRunsOutputArgs } from "./getRuns";
|
|
116
122
|
export declare const getRuns: typeof import("./getRuns").getRuns;
|
|
117
123
|
export declare const getRunsOutput: typeof import("./getRuns").getRunsOutput;
|
|
124
|
+
export { GetSalesforceCredentialArgs, GetSalesforceCredentialResult, GetSalesforceCredentialOutputArgs } from "./getSalesforceCredential";
|
|
125
|
+
export declare const getSalesforceCredential: typeof import("./getSalesforceCredential").getSalesforceCredential;
|
|
126
|
+
export declare const getSalesforceCredentialOutput: typeof import("./getSalesforceCredential").getSalesforceCredentialOutput;
|
|
118
127
|
export { GetServiceTokenArgs, GetServiceTokenResult, GetServiceTokenOutputArgs } from "./getServiceToken";
|
|
119
128
|
export declare const getServiceToken: typeof import("./getServiceToken").getServiceToken;
|
|
120
129
|
export declare const getServiceTokenOutput: typeof import("./getServiceToken").getServiceTokenOutput;
|
|
@@ -190,6 +199,9 @@ export declare const PostgresCredential: typeof import("./postgresCredential").P
|
|
|
190
199
|
export { PostgresSemanticLayerCredentialArgs, PostgresSemanticLayerCredentialState } from "./postgresSemanticLayerCredential";
|
|
191
200
|
export type PostgresSemanticLayerCredential = import("./postgresSemanticLayerCredential").PostgresSemanticLayerCredential;
|
|
192
201
|
export declare const PostgresSemanticLayerCredential: typeof import("./postgresSemanticLayerCredential").PostgresSemanticLayerCredential;
|
|
202
|
+
export { ProfileArgs, ProfileState } from "./profile";
|
|
203
|
+
export type Profile = import("./profile").Profile;
|
|
204
|
+
export declare const Profile: typeof import("./profile").Profile;
|
|
193
205
|
export { ProjectArgs, ProjectState } from "./project";
|
|
194
206
|
export type Project = import("./project").Project;
|
|
195
207
|
export declare const Project: typeof import("./project").Project;
|
|
@@ -209,6 +221,9 @@ export declare const RedshiftSemanticLayerCredential: typeof import("./redshiftS
|
|
|
209
221
|
export { RepositoryArgs, RepositoryState } from "./repository";
|
|
210
222
|
export type Repository = import("./repository").Repository;
|
|
211
223
|
export declare const Repository: typeof import("./repository").Repository;
|
|
224
|
+
export { SalesforceCredentialArgs, SalesforceCredentialState } from "./salesforceCredential";
|
|
225
|
+
export type SalesforceCredential = import("./salesforceCredential").SalesforceCredential;
|
|
226
|
+
export declare const SalesforceCredential: typeof import("./salesforceCredential").SalesforceCredential;
|
|
212
227
|
export { ScimGroupPartialPermissionsArgs, ScimGroupPartialPermissionsState } from "./scimGroupPartialPermissions";
|
|
213
228
|
export type ScimGroupPartialPermissions = import("./scimGroupPartialPermissions").ScimGroupPartialPermissions;
|
|
214
229
|
export declare const ScimGroupPartialPermissions: typeof import("./scimGroupPartialPermissions").ScimGroupPartialPermissions;
|