pulumi-dbtcloud 0.1.0__tar.gz
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.
- pulumi_dbtcloud-0.1.0/PKG-INFO +74 -0
- pulumi_dbtcloud-0.1.0/README.md +60 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/__init__.py +272 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/_inputs.py +175 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/_utilities.py +291 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/big_query_connection.py +1404 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/big_query_credential.py +359 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/config/__init__.py +8 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/config/__init__.pyi +28 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/config/vars.py +40 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/connection.py +1097 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/databricks_credential.py +532 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/environment.py +677 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/environment_variable.py +315 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/environment_variable_job_override.py +363 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/extended_attributes.py +374 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/fabric_connection.py +584 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/fabric_credential.py +578 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_azure_dev_ops_project.py +123 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_azure_dev_ops_repository.py +182 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_big_query_connection.py +388 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_big_query_credential.py +141 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_connection.py +232 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_databricks_credential.py +167 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_environment.py +219 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_environment_variable.py +115 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_extended_attributes.py +146 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_group.py +136 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_group_users.py +118 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_job.py +233 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_notification.py +178 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_postgres_credential.py +154 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_privatelink_endpoint.py +165 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_project.py +191 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_repository.py +211 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_service_token.py +124 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_snowflake_credential.py +167 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_user.py +100 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_user_groups.py +113 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/get_webhook.py +188 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/group.py +390 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/job.py +1419 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/license_map.py +253 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/notification.py +626 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/outputs.py +302 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/postgres_credential.py +562 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/project.py +238 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/project_artefacts.py +286 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/project_connection.py +238 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/project_repository.py +238 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/provider.py +173 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/pulumi-plugin.json +5 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/py.typed +0 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/repository.py +696 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/service_token.py +363 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/snowflake_credential.py +749 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/user_groups.py +274 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud/webhook.py +558 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud.egg-info/PKG-INFO +74 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud.egg-info/SOURCES.txt +63 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud.egg-info/dependency_links.txt +1 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud.egg-info/requires.txt +3 -0
- pulumi_dbtcloud-0.1.0/pulumi_dbtcloud.egg-info/top_level.txt +1 -0
- pulumi_dbtcloud-0.1.0/pyproject.toml +22 -0
- pulumi_dbtcloud-0.1.0/setup.cfg +4 -0
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
Metadata-Version: 2.1
|
|
2
|
+
Name: pulumi_dbtcloud
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: A Pulumi package for creating and managing dbt Cloud resources.
|
|
5
|
+
License: Apache-2.0
|
|
6
|
+
Project-URL: Homepage, https://www.pulumi.com
|
|
7
|
+
Project-URL: Repository, https://github.com/pulumi/pulumi-dbtcloud
|
|
8
|
+
Keywords: pulumi,dbtcloud,dbt,cloud,category/cloud
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Requires-Dist: parver>=0.2.1
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.0.0
|
|
13
|
+
Requires-Dist: semver>=2.8.1
|
|
14
|
+
|
|
15
|
+
# dbt Cloud Resource Provider
|
|
16
|
+
|
|
17
|
+
The dbt Cloud Resource Provider lets you manage dbt Cloud resources.
|
|
18
|
+
|
|
19
|
+
## Installation
|
|
20
|
+
|
|
21
|
+
This package is available for several languages/platforms:
|
|
22
|
+
|
|
23
|
+
- JavaScript/TypeScript: [`@pulumi/dbtcloud`](https://www.npmjs.com/package/@pulumi/dbtcloud)
|
|
24
|
+
- Python: [`pulumi-dbtcloud`](https://pypi.org/project/pulumi-dbtcloud/)
|
|
25
|
+
- Go: [`github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud`](https://pkg.go.dev/github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud)
|
|
26
|
+
- .NET: [`Pulumi.Dbtcloud`](https://www.nuget.org/packages/Pulumi.DbtCloud)
|
|
27
|
+
|
|
28
|
+
### Node.js (JavaScript/TypeScript)
|
|
29
|
+
|
|
30
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
npm install @pulumi/dbtcloud
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
or `yarn`:
|
|
37
|
+
|
|
38
|
+
```bash
|
|
39
|
+
yarn add @pulumi/dbtcloud
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
### Python
|
|
43
|
+
|
|
44
|
+
To use from Python, install using `pip`:
|
|
45
|
+
|
|
46
|
+
```bash
|
|
47
|
+
pip install pulumi-dbtcloud
|
|
48
|
+
```
|
|
49
|
+
|
|
50
|
+
### Go
|
|
51
|
+
|
|
52
|
+
To use from Go, use `go get` to grab the latest version of the library:
|
|
53
|
+
|
|
54
|
+
```bash
|
|
55
|
+
go get github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud
|
|
56
|
+
```
|
|
57
|
+
|
|
58
|
+
### .NET
|
|
59
|
+
|
|
60
|
+
To use from .NET, install using `dotnet add package`:
|
|
61
|
+
|
|
62
|
+
```bash
|
|
63
|
+
dotnet add package Pulumi.DbtCloud
|
|
64
|
+
```
|
|
65
|
+
|
|
66
|
+
## Configuration Options
|
|
67
|
+
|
|
68
|
+
Use `pulumi config set dbtcloud:<option> (--secret)`.
|
|
69
|
+
|
|
70
|
+
| Option | Environment Variable | Required/Optional | Default | Description |
|
|
71
|
+
|------------|------------------------|-------------------|--------------------------------------------------------------|-----------------------------------------|
|
|
72
|
+
| `token` | `DBT_CLOUD_TOKEN` | Required | | The API token for your dbt Cloud user |
|
|
73
|
+
| `accountId`| `DBT_CLOUD_ACCOUNT_ID` | Required | | The ID for your dbt Cloud account |
|
|
74
|
+
| `hostUrl` | `DBT_CLOUD_HOST_URL` | Optional | [https://cloud.getdbt.com/api](https://cloud.getdbt.com/api) | The host URL for your dbt Cloud account |
|
|
@@ -0,0 +1,60 @@
|
|
|
1
|
+
# dbt Cloud Resource Provider
|
|
2
|
+
|
|
3
|
+
The dbt Cloud Resource Provider lets you manage dbt Cloud resources.
|
|
4
|
+
|
|
5
|
+
## Installation
|
|
6
|
+
|
|
7
|
+
This package is available for several languages/platforms:
|
|
8
|
+
|
|
9
|
+
- JavaScript/TypeScript: [`@pulumi/dbtcloud`](https://www.npmjs.com/package/@pulumi/dbtcloud)
|
|
10
|
+
- Python: [`pulumi-dbtcloud`](https://pypi.org/project/pulumi-dbtcloud/)
|
|
11
|
+
- Go: [`github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud`](https://pkg.go.dev/github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud)
|
|
12
|
+
- .NET: [`Pulumi.Dbtcloud`](https://www.nuget.org/packages/Pulumi.DbtCloud)
|
|
13
|
+
|
|
14
|
+
### Node.js (JavaScript/TypeScript)
|
|
15
|
+
|
|
16
|
+
To use from JavaScript or TypeScript in Node.js, install using either `npm`:
|
|
17
|
+
|
|
18
|
+
```bash
|
|
19
|
+
npm install @pulumi/dbtcloud
|
|
20
|
+
```
|
|
21
|
+
|
|
22
|
+
or `yarn`:
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
yarn add @pulumi/dbtcloud
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
### Python
|
|
29
|
+
|
|
30
|
+
To use from Python, install using `pip`:
|
|
31
|
+
|
|
32
|
+
```bash
|
|
33
|
+
pip install pulumi-dbtcloud
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
### Go
|
|
37
|
+
|
|
38
|
+
To use from Go, use `go get` to grab the latest version of the library:
|
|
39
|
+
|
|
40
|
+
```bash
|
|
41
|
+
go get github.com/pulumi/pulumi-dbtcloud/sdk/go/dbtcloud
|
|
42
|
+
```
|
|
43
|
+
|
|
44
|
+
### .NET
|
|
45
|
+
|
|
46
|
+
To use from .NET, install using `dotnet add package`:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
dotnet add package Pulumi.DbtCloud
|
|
50
|
+
```
|
|
51
|
+
|
|
52
|
+
## Configuration Options
|
|
53
|
+
|
|
54
|
+
Use `pulumi config set dbtcloud:<option> (--secret)`.
|
|
55
|
+
|
|
56
|
+
| Option | Environment Variable | Required/Optional | Default | Description |
|
|
57
|
+
|------------|------------------------|-------------------|--------------------------------------------------------------|-----------------------------------------|
|
|
58
|
+
| `token` | `DBT_CLOUD_TOKEN` | Required | | The API token for your dbt Cloud user |
|
|
59
|
+
| `accountId`| `DBT_CLOUD_ACCOUNT_ID` | Required | | The ID for your dbt Cloud account |
|
|
60
|
+
| `hostUrl` | `DBT_CLOUD_HOST_URL` | Optional | [https://cloud.getdbt.com/api](https://cloud.getdbt.com/api) | The host URL for your dbt Cloud account |
|
|
@@ -0,0 +1,272 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
from . import _utilities
|
|
6
|
+
import typing
|
|
7
|
+
# Export this package's modules as members:
|
|
8
|
+
from .big_query_connection import *
|
|
9
|
+
from .big_query_credential import *
|
|
10
|
+
from .connection import *
|
|
11
|
+
from .databricks_credential import *
|
|
12
|
+
from .environment import *
|
|
13
|
+
from .environment_variable import *
|
|
14
|
+
from .environment_variable_job_override import *
|
|
15
|
+
from .extended_attributes import *
|
|
16
|
+
from .fabric_connection import *
|
|
17
|
+
from .fabric_credential import *
|
|
18
|
+
from .get_azure_dev_ops_project import *
|
|
19
|
+
from .get_azure_dev_ops_repository import *
|
|
20
|
+
from .get_big_query_connection import *
|
|
21
|
+
from .get_big_query_credential import *
|
|
22
|
+
from .get_connection import *
|
|
23
|
+
from .get_databricks_credential import *
|
|
24
|
+
from .get_environment import *
|
|
25
|
+
from .get_environment_variable import *
|
|
26
|
+
from .get_extended_attributes import *
|
|
27
|
+
from .get_group import *
|
|
28
|
+
from .get_group_users import *
|
|
29
|
+
from .get_job import *
|
|
30
|
+
from .get_notification import *
|
|
31
|
+
from .get_postgres_credential import *
|
|
32
|
+
from .get_privatelink_endpoint import *
|
|
33
|
+
from .get_project import *
|
|
34
|
+
from .get_repository import *
|
|
35
|
+
from .get_service_token import *
|
|
36
|
+
from .get_snowflake_credential import *
|
|
37
|
+
from .get_user import *
|
|
38
|
+
from .get_user_groups import *
|
|
39
|
+
from .get_webhook import *
|
|
40
|
+
from .group import *
|
|
41
|
+
from .job import *
|
|
42
|
+
from .license_map import *
|
|
43
|
+
from .notification import *
|
|
44
|
+
from .postgres_credential import *
|
|
45
|
+
from .project import *
|
|
46
|
+
from .project_artefacts import *
|
|
47
|
+
from .project_connection import *
|
|
48
|
+
from .project_repository import *
|
|
49
|
+
from .provider import *
|
|
50
|
+
from .repository import *
|
|
51
|
+
from .service_token import *
|
|
52
|
+
from .snowflake_credential import *
|
|
53
|
+
from .user_groups import *
|
|
54
|
+
from .webhook import *
|
|
55
|
+
from ._inputs import *
|
|
56
|
+
from . import outputs
|
|
57
|
+
|
|
58
|
+
# Make subpackages available:
|
|
59
|
+
if typing.TYPE_CHECKING:
|
|
60
|
+
import pulumi_dbtcloud.config as __config
|
|
61
|
+
config = __config
|
|
62
|
+
else:
|
|
63
|
+
config = _utilities.lazy_import('pulumi_dbtcloud.config')
|
|
64
|
+
|
|
65
|
+
_utilities.register(
|
|
66
|
+
resource_modules="""
|
|
67
|
+
[
|
|
68
|
+
{
|
|
69
|
+
"pkg": "dbtcloud",
|
|
70
|
+
"mod": "index/bigQueryConnection",
|
|
71
|
+
"fqn": "pulumi_dbtcloud",
|
|
72
|
+
"classes": {
|
|
73
|
+
"dbtcloud:index/bigQueryConnection:BigQueryConnection": "BigQueryConnection"
|
|
74
|
+
}
|
|
75
|
+
},
|
|
76
|
+
{
|
|
77
|
+
"pkg": "dbtcloud",
|
|
78
|
+
"mod": "index/bigQueryCredential",
|
|
79
|
+
"fqn": "pulumi_dbtcloud",
|
|
80
|
+
"classes": {
|
|
81
|
+
"dbtcloud:index/bigQueryCredential:BigQueryCredential": "BigQueryCredential"
|
|
82
|
+
}
|
|
83
|
+
},
|
|
84
|
+
{
|
|
85
|
+
"pkg": "dbtcloud",
|
|
86
|
+
"mod": "index/connection",
|
|
87
|
+
"fqn": "pulumi_dbtcloud",
|
|
88
|
+
"classes": {
|
|
89
|
+
"dbtcloud:index/connection:Connection": "Connection"
|
|
90
|
+
}
|
|
91
|
+
},
|
|
92
|
+
{
|
|
93
|
+
"pkg": "dbtcloud",
|
|
94
|
+
"mod": "index/databricksCredential",
|
|
95
|
+
"fqn": "pulumi_dbtcloud",
|
|
96
|
+
"classes": {
|
|
97
|
+
"dbtcloud:index/databricksCredential:DatabricksCredential": "DatabricksCredential"
|
|
98
|
+
}
|
|
99
|
+
},
|
|
100
|
+
{
|
|
101
|
+
"pkg": "dbtcloud",
|
|
102
|
+
"mod": "index/environment",
|
|
103
|
+
"fqn": "pulumi_dbtcloud",
|
|
104
|
+
"classes": {
|
|
105
|
+
"dbtcloud:index/environment:Environment": "Environment"
|
|
106
|
+
}
|
|
107
|
+
},
|
|
108
|
+
{
|
|
109
|
+
"pkg": "dbtcloud",
|
|
110
|
+
"mod": "index/environmentVariable",
|
|
111
|
+
"fqn": "pulumi_dbtcloud",
|
|
112
|
+
"classes": {
|
|
113
|
+
"dbtcloud:index/environmentVariable:EnvironmentVariable": "EnvironmentVariable"
|
|
114
|
+
}
|
|
115
|
+
},
|
|
116
|
+
{
|
|
117
|
+
"pkg": "dbtcloud",
|
|
118
|
+
"mod": "index/environmentVariableJobOverride",
|
|
119
|
+
"fqn": "pulumi_dbtcloud",
|
|
120
|
+
"classes": {
|
|
121
|
+
"dbtcloud:index/environmentVariableJobOverride:EnvironmentVariableJobOverride": "EnvironmentVariableJobOverride"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
{
|
|
125
|
+
"pkg": "dbtcloud",
|
|
126
|
+
"mod": "index/extendedAttributes",
|
|
127
|
+
"fqn": "pulumi_dbtcloud",
|
|
128
|
+
"classes": {
|
|
129
|
+
"dbtcloud:index/extendedAttributes:ExtendedAttributes": "ExtendedAttributes"
|
|
130
|
+
}
|
|
131
|
+
},
|
|
132
|
+
{
|
|
133
|
+
"pkg": "dbtcloud",
|
|
134
|
+
"mod": "index/fabricConnection",
|
|
135
|
+
"fqn": "pulumi_dbtcloud",
|
|
136
|
+
"classes": {
|
|
137
|
+
"dbtcloud:index/fabricConnection:FabricConnection": "FabricConnection"
|
|
138
|
+
}
|
|
139
|
+
},
|
|
140
|
+
{
|
|
141
|
+
"pkg": "dbtcloud",
|
|
142
|
+
"mod": "index/fabricCredential",
|
|
143
|
+
"fqn": "pulumi_dbtcloud",
|
|
144
|
+
"classes": {
|
|
145
|
+
"dbtcloud:index/fabricCredential:FabricCredential": "FabricCredential"
|
|
146
|
+
}
|
|
147
|
+
},
|
|
148
|
+
{
|
|
149
|
+
"pkg": "dbtcloud",
|
|
150
|
+
"mod": "index/group",
|
|
151
|
+
"fqn": "pulumi_dbtcloud",
|
|
152
|
+
"classes": {
|
|
153
|
+
"dbtcloud:index/group:Group": "Group"
|
|
154
|
+
}
|
|
155
|
+
},
|
|
156
|
+
{
|
|
157
|
+
"pkg": "dbtcloud",
|
|
158
|
+
"mod": "index/job",
|
|
159
|
+
"fqn": "pulumi_dbtcloud",
|
|
160
|
+
"classes": {
|
|
161
|
+
"dbtcloud:index/job:Job": "Job"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"pkg": "dbtcloud",
|
|
166
|
+
"mod": "index/licenseMap",
|
|
167
|
+
"fqn": "pulumi_dbtcloud",
|
|
168
|
+
"classes": {
|
|
169
|
+
"dbtcloud:index/licenseMap:LicenseMap": "LicenseMap"
|
|
170
|
+
}
|
|
171
|
+
},
|
|
172
|
+
{
|
|
173
|
+
"pkg": "dbtcloud",
|
|
174
|
+
"mod": "index/notification",
|
|
175
|
+
"fqn": "pulumi_dbtcloud",
|
|
176
|
+
"classes": {
|
|
177
|
+
"dbtcloud:index/notification:Notification": "Notification"
|
|
178
|
+
}
|
|
179
|
+
},
|
|
180
|
+
{
|
|
181
|
+
"pkg": "dbtcloud",
|
|
182
|
+
"mod": "index/postgresCredential",
|
|
183
|
+
"fqn": "pulumi_dbtcloud",
|
|
184
|
+
"classes": {
|
|
185
|
+
"dbtcloud:index/postgresCredential:PostgresCredential": "PostgresCredential"
|
|
186
|
+
}
|
|
187
|
+
},
|
|
188
|
+
{
|
|
189
|
+
"pkg": "dbtcloud",
|
|
190
|
+
"mod": "index/project",
|
|
191
|
+
"fqn": "pulumi_dbtcloud",
|
|
192
|
+
"classes": {
|
|
193
|
+
"dbtcloud:index/project:Project": "Project"
|
|
194
|
+
}
|
|
195
|
+
},
|
|
196
|
+
{
|
|
197
|
+
"pkg": "dbtcloud",
|
|
198
|
+
"mod": "index/projectArtefacts",
|
|
199
|
+
"fqn": "pulumi_dbtcloud",
|
|
200
|
+
"classes": {
|
|
201
|
+
"dbtcloud:index/projectArtefacts:ProjectArtefacts": "ProjectArtefacts"
|
|
202
|
+
}
|
|
203
|
+
},
|
|
204
|
+
{
|
|
205
|
+
"pkg": "dbtcloud",
|
|
206
|
+
"mod": "index/projectConnection",
|
|
207
|
+
"fqn": "pulumi_dbtcloud",
|
|
208
|
+
"classes": {
|
|
209
|
+
"dbtcloud:index/projectConnection:ProjectConnection": "ProjectConnection"
|
|
210
|
+
}
|
|
211
|
+
},
|
|
212
|
+
{
|
|
213
|
+
"pkg": "dbtcloud",
|
|
214
|
+
"mod": "index/projectRepository",
|
|
215
|
+
"fqn": "pulumi_dbtcloud",
|
|
216
|
+
"classes": {
|
|
217
|
+
"dbtcloud:index/projectRepository:ProjectRepository": "ProjectRepository"
|
|
218
|
+
}
|
|
219
|
+
},
|
|
220
|
+
{
|
|
221
|
+
"pkg": "dbtcloud",
|
|
222
|
+
"mod": "index/repository",
|
|
223
|
+
"fqn": "pulumi_dbtcloud",
|
|
224
|
+
"classes": {
|
|
225
|
+
"dbtcloud:index/repository:Repository": "Repository"
|
|
226
|
+
}
|
|
227
|
+
},
|
|
228
|
+
{
|
|
229
|
+
"pkg": "dbtcloud",
|
|
230
|
+
"mod": "index/serviceToken",
|
|
231
|
+
"fqn": "pulumi_dbtcloud",
|
|
232
|
+
"classes": {
|
|
233
|
+
"dbtcloud:index/serviceToken:ServiceToken": "ServiceToken"
|
|
234
|
+
}
|
|
235
|
+
},
|
|
236
|
+
{
|
|
237
|
+
"pkg": "dbtcloud",
|
|
238
|
+
"mod": "index/snowflakeCredential",
|
|
239
|
+
"fqn": "pulumi_dbtcloud",
|
|
240
|
+
"classes": {
|
|
241
|
+
"dbtcloud:index/snowflakeCredential:SnowflakeCredential": "SnowflakeCredential"
|
|
242
|
+
}
|
|
243
|
+
},
|
|
244
|
+
{
|
|
245
|
+
"pkg": "dbtcloud",
|
|
246
|
+
"mod": "index/userGroups",
|
|
247
|
+
"fqn": "pulumi_dbtcloud",
|
|
248
|
+
"classes": {
|
|
249
|
+
"dbtcloud:index/userGroups:UserGroups": "UserGroups"
|
|
250
|
+
}
|
|
251
|
+
},
|
|
252
|
+
{
|
|
253
|
+
"pkg": "dbtcloud",
|
|
254
|
+
"mod": "index/webhook",
|
|
255
|
+
"fqn": "pulumi_dbtcloud",
|
|
256
|
+
"classes": {
|
|
257
|
+
"dbtcloud:index/webhook:Webhook": "Webhook"
|
|
258
|
+
}
|
|
259
|
+
}
|
|
260
|
+
]
|
|
261
|
+
""",
|
|
262
|
+
resource_packages="""
|
|
263
|
+
[
|
|
264
|
+
{
|
|
265
|
+
"pkg": "dbtcloud",
|
|
266
|
+
"token": "pulumi:providers:dbtcloud",
|
|
267
|
+
"fqn": "pulumi_dbtcloud",
|
|
268
|
+
"class": "Provider"
|
|
269
|
+
}
|
|
270
|
+
]
|
|
271
|
+
"""
|
|
272
|
+
)
|
|
@@ -0,0 +1,175 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from . import _utilities
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'GroupGroupPermissionArgs',
|
|
14
|
+
'JobJobCompletionTriggerConditionArgs',
|
|
15
|
+
'ServiceTokenServiceTokenPermissionArgs',
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
@pulumi.input_type
|
|
19
|
+
class GroupGroupPermissionArgs:
|
|
20
|
+
def __init__(__self__, *,
|
|
21
|
+
all_projects: pulumi.Input[bool],
|
|
22
|
+
permission_set: pulumi.Input[str],
|
|
23
|
+
project_id: Optional[pulumi.Input[int]] = None):
|
|
24
|
+
"""
|
|
25
|
+
:param pulumi.Input[bool] all_projects: Whether or not to apply this permission to all projects for this group
|
|
26
|
+
:param pulumi.Input[str] permission_set: Set of permissions to apply
|
|
27
|
+
:param pulumi.Input[int] project_id: Project ID to apply this permission to for this group
|
|
28
|
+
"""
|
|
29
|
+
pulumi.set(__self__, "all_projects", all_projects)
|
|
30
|
+
pulumi.set(__self__, "permission_set", permission_set)
|
|
31
|
+
if project_id is not None:
|
|
32
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
33
|
+
|
|
34
|
+
@property
|
|
35
|
+
@pulumi.getter(name="allProjects")
|
|
36
|
+
def all_projects(self) -> pulumi.Input[bool]:
|
|
37
|
+
"""
|
|
38
|
+
Whether or not to apply this permission to all projects for this group
|
|
39
|
+
"""
|
|
40
|
+
return pulumi.get(self, "all_projects")
|
|
41
|
+
|
|
42
|
+
@all_projects.setter
|
|
43
|
+
def all_projects(self, value: pulumi.Input[bool]):
|
|
44
|
+
pulumi.set(self, "all_projects", value)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="permissionSet")
|
|
48
|
+
def permission_set(self) -> pulumi.Input[str]:
|
|
49
|
+
"""
|
|
50
|
+
Set of permissions to apply
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "permission_set")
|
|
53
|
+
|
|
54
|
+
@permission_set.setter
|
|
55
|
+
def permission_set(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "permission_set", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="projectId")
|
|
60
|
+
def project_id(self) -> Optional[pulumi.Input[int]]:
|
|
61
|
+
"""
|
|
62
|
+
Project ID to apply this permission to for this group
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "project_id")
|
|
65
|
+
|
|
66
|
+
@project_id.setter
|
|
67
|
+
def project_id(self, value: Optional[pulumi.Input[int]]):
|
|
68
|
+
pulumi.set(self, "project_id", value)
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
@pulumi.input_type
|
|
72
|
+
class JobJobCompletionTriggerConditionArgs:
|
|
73
|
+
def __init__(__self__, *,
|
|
74
|
+
job_id: pulumi.Input[int],
|
|
75
|
+
project_id: pulumi.Input[int],
|
|
76
|
+
statuses: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
77
|
+
"""
|
|
78
|
+
:param pulumi.Input[int] job_id: The ID of the job that would trigger this job after completion.
|
|
79
|
+
:param pulumi.Input[int] project_id: The ID of the project where the trigger job is running in.
|
|
80
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] statuses: List of statuses to trigger the job on. Possible values are `success`, `error` and `canceled`.
|
|
81
|
+
"""
|
|
82
|
+
pulumi.set(__self__, "job_id", job_id)
|
|
83
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
84
|
+
pulumi.set(__self__, "statuses", statuses)
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="jobId")
|
|
88
|
+
def job_id(self) -> pulumi.Input[int]:
|
|
89
|
+
"""
|
|
90
|
+
The ID of the job that would trigger this job after completion.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "job_id")
|
|
93
|
+
|
|
94
|
+
@job_id.setter
|
|
95
|
+
def job_id(self, value: pulumi.Input[int]):
|
|
96
|
+
pulumi.set(self, "job_id", value)
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="projectId")
|
|
100
|
+
def project_id(self) -> pulumi.Input[int]:
|
|
101
|
+
"""
|
|
102
|
+
The ID of the project where the trigger job is running in.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "project_id")
|
|
105
|
+
|
|
106
|
+
@project_id.setter
|
|
107
|
+
def project_id(self, value: pulumi.Input[int]):
|
|
108
|
+
pulumi.set(self, "project_id", value)
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def statuses(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
113
|
+
"""
|
|
114
|
+
List of statuses to trigger the job on. Possible values are `success`, `error` and `canceled`.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "statuses")
|
|
117
|
+
|
|
118
|
+
@statuses.setter
|
|
119
|
+
def statuses(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
|
120
|
+
pulumi.set(self, "statuses", value)
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
@pulumi.input_type
|
|
124
|
+
class ServiceTokenServiceTokenPermissionArgs:
|
|
125
|
+
def __init__(__self__, *,
|
|
126
|
+
all_projects: pulumi.Input[bool],
|
|
127
|
+
permission_set: pulumi.Input[str],
|
|
128
|
+
project_id: Optional[pulumi.Input[int]] = None):
|
|
129
|
+
"""
|
|
130
|
+
:param pulumi.Input[bool] all_projects: Whether or not to apply this permission to all projects for this service token
|
|
131
|
+
:param pulumi.Input[str] permission_set: Set of permissions to apply
|
|
132
|
+
:param pulumi.Input[int] project_id: Project ID to apply this permission to for this service token
|
|
133
|
+
"""
|
|
134
|
+
pulumi.set(__self__, "all_projects", all_projects)
|
|
135
|
+
pulumi.set(__self__, "permission_set", permission_set)
|
|
136
|
+
if project_id is not None:
|
|
137
|
+
pulumi.set(__self__, "project_id", project_id)
|
|
138
|
+
|
|
139
|
+
@property
|
|
140
|
+
@pulumi.getter(name="allProjects")
|
|
141
|
+
def all_projects(self) -> pulumi.Input[bool]:
|
|
142
|
+
"""
|
|
143
|
+
Whether or not to apply this permission to all projects for this service token
|
|
144
|
+
"""
|
|
145
|
+
return pulumi.get(self, "all_projects")
|
|
146
|
+
|
|
147
|
+
@all_projects.setter
|
|
148
|
+
def all_projects(self, value: pulumi.Input[bool]):
|
|
149
|
+
pulumi.set(self, "all_projects", value)
|
|
150
|
+
|
|
151
|
+
@property
|
|
152
|
+
@pulumi.getter(name="permissionSet")
|
|
153
|
+
def permission_set(self) -> pulumi.Input[str]:
|
|
154
|
+
"""
|
|
155
|
+
Set of permissions to apply
|
|
156
|
+
"""
|
|
157
|
+
return pulumi.get(self, "permission_set")
|
|
158
|
+
|
|
159
|
+
@permission_set.setter
|
|
160
|
+
def permission_set(self, value: pulumi.Input[str]):
|
|
161
|
+
pulumi.set(self, "permission_set", value)
|
|
162
|
+
|
|
163
|
+
@property
|
|
164
|
+
@pulumi.getter(name="projectId")
|
|
165
|
+
def project_id(self) -> Optional[pulumi.Input[int]]:
|
|
166
|
+
"""
|
|
167
|
+
Project ID to apply this permission to for this service token
|
|
168
|
+
"""
|
|
169
|
+
return pulumi.get(self, "project_id")
|
|
170
|
+
|
|
171
|
+
@project_id.setter
|
|
172
|
+
def project_id(self, value: Optional[pulumi.Input[int]]):
|
|
173
|
+
pulumi.set(self, "project_id", value)
|
|
174
|
+
|
|
175
|
+
|