pulumiverse-cpln 0.0.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.
Files changed (50) hide show
  1. pulumiverse_cpln-0.0.0/PKG-INFO +83 -0
  2. pulumiverse_cpln-0.0.0/README.md +59 -0
  3. pulumiverse_cpln-0.0.0/pulumiverse_cpln/__init__.py +241 -0
  4. pulumiverse_cpln-0.0.0/pulumiverse_cpln/_inputs.py +18692 -0
  5. pulumiverse_cpln-0.0.0/pulumiverse_cpln/_utilities.py +331 -0
  6. pulumiverse_cpln-0.0.0/pulumiverse_cpln/agent.py +330 -0
  7. pulumiverse_cpln-0.0.0/pulumiverse_cpln/audit_context.py +300 -0
  8. pulumiverse_cpln-0.0.0/pulumiverse_cpln/cloud_account.py +546 -0
  9. pulumiverse_cpln-0.0.0/pulumiverse_cpln/config/__init__.py +9 -0
  10. pulumiverse_cpln-0.0.0/pulumiverse_cpln/config/__init__.pyi +48 -0
  11. pulumiverse_cpln-0.0.0/pulumiverse_cpln/config/vars.py +64 -0
  12. pulumiverse_cpln-0.0.0/pulumiverse_cpln/custom_location.py +424 -0
  13. pulumiverse_cpln-0.0.0/pulumiverse_cpln/domain.py +377 -0
  14. pulumiverse_cpln-0.0.0/pulumiverse_cpln/domain_route.py +645 -0
  15. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_cloud_account.py +107 -0
  16. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_gvc.py +423 -0
  17. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_image.py +284 -0
  18. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_images.py +261 -0
  19. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_location.py +273 -0
  20. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_locations.py +171 -0
  21. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_org.py +250 -0
  22. pulumiverse_cpln-0.0.0/pulumiverse_cpln/get_secret.py +555 -0
  23. pulumiverse_cpln-0.0.0/pulumiverse_cpln/group.py +539 -0
  24. pulumiverse_cpln-0.0.0/pulumiverse_cpln/gvc.py +771 -0
  25. pulumiverse_cpln-0.0.0/pulumiverse_cpln/identity.py +688 -0
  26. pulumiverse_cpln-0.0.0/pulumiverse_cpln/ip_set.py +521 -0
  27. pulumiverse_cpln-0.0.0/pulumiverse_cpln/location.py +435 -0
  28. pulumiverse_cpln-0.0.0/pulumiverse_cpln/mk8s.py +848 -0
  29. pulumiverse_cpln-0.0.0/pulumiverse_cpln/mk8s_kubeconfig.py +362 -0
  30. pulumiverse_cpln-0.0.0/pulumiverse_cpln/org.py +594 -0
  31. pulumiverse_cpln-0.0.0/pulumiverse_cpln/org_logging.py +616 -0
  32. pulumiverse_cpln-0.0.0/pulumiverse_cpln/org_tracing.py +347 -0
  33. pulumiverse_cpln-0.0.0/pulumiverse_cpln/outputs.py +14498 -0
  34. pulumiverse_cpln-0.0.0/pulumiverse_cpln/policy.py +620 -0
  35. pulumiverse_cpln-0.0.0/pulumiverse_cpln/provider.py +271 -0
  36. pulumiverse_cpln-0.0.0/pulumiverse_cpln/pulumi-plugin.json +5 -0
  37. pulumiverse_cpln-0.0.0/pulumiverse_cpln/py.typed +0 -0
  38. pulumiverse_cpln-0.0.0/pulumiverse_cpln/secret.py +915 -0
  39. pulumiverse_cpln-0.0.0/pulumiverse_cpln/service_account.py +328 -0
  40. pulumiverse_cpln-0.0.0/pulumiverse_cpln/service_account_key.py +285 -0
  41. pulumiverse_cpln-0.0.0/pulumiverse_cpln/volume_set.py +765 -0
  42. pulumiverse_cpln-0.0.0/pulumiverse_cpln/workload.py +1033 -0
  43. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/PKG-INFO +83 -0
  44. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/SOURCES.txt +48 -0
  45. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/dependency_links.txt +1 -0
  46. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/not-zip-safe +1 -0
  47. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/requires.txt +6 -0
  48. pulumiverse_cpln-0.0.0/pulumiverse_cpln.egg-info/top_level.txt +1 -0
  49. pulumiverse_cpln-0.0.0/setup.cfg +4 -0
  50. pulumiverse_cpln-0.0.0/setup.py +46 -0
@@ -0,0 +1,83 @@
1
+ Metadata-Version: 2.4
2
+ Name: pulumiverse_cpln
3
+ Version: 0.0.0
4
+ Summary: A Pulumi package for creating and managing Control Plane (cpln) resources.
5
+ Home-page: https://www.pulumi.com
6
+ License: Apache-2.0
7
+ Project-URL: Repository, https://github.com/pulumiverse/pulumi-cpln
8
+ Keywords: pulumi cpln category/infrastructure
9
+ Requires-Python: >=3.9
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
+ Requires-Dist: typing-extensions<5,>=4.11; python_version < "3.11"
15
+ Dynamic: description
16
+ Dynamic: description-content-type
17
+ Dynamic: home-page
18
+ Dynamic: keywords
19
+ Dynamic: license
20
+ Dynamic: project-url
21
+ Dynamic: requires-dist
22
+ Dynamic: requires-python
23
+ Dynamic: summary
24
+
25
+ # Control Plane (cpln) Resource Provider
26
+
27
+ The Control Plane Resource Provider lets you manage [Control Plane](https://controlplane.com/) resources.
28
+
29
+ ## Installing
30
+
31
+ This package is available for several languages/platforms:
32
+
33
+ ### Node.js (JavaScript/TypeScript)
34
+
35
+ To use from JavaScript or TypeScript in Node.js, install using either `npm`:
36
+
37
+ ```bash
38
+ npm install @pulumiverse/cpln
39
+ ```
40
+
41
+ or `yarn`:
42
+
43
+ ```bash
44
+ yarn add @pulumiverse/cpln
45
+ ```
46
+
47
+ ### Python
48
+
49
+ To use from Python, install using `pip`:
50
+
51
+ ```bash
52
+ pip install pulumiverse-cpln
53
+ ```
54
+
55
+ ### Go
56
+
57
+ To use from Go, use `go get` to grab the latest version of the library:
58
+
59
+ ```bash
60
+ go get github.com/pulumiverse/pulumi-cpln/sdk/go/...
61
+ ```
62
+
63
+ ### .NET
64
+
65
+ To use from .NET, install using `dotnet add package`:
66
+
67
+ ```bash
68
+ dotnet add package Pulumiverse.cpln
69
+ ```
70
+
71
+ ## Configuration
72
+
73
+ The following configuration points are available for the `cpln` provider:
74
+
75
+ - `cpln:org` - The Control Plane org that this provider will perform actions against
76
+ - `cpln:endpoint` - The Control Plane Data Service API endpoint
77
+ - `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service
78
+ - `cpln:token` - A generated token that can be used to authenticate to the data service API
79
+ - `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API
80
+
81
+ ## Reference
82
+
83
+ For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/).
@@ -0,0 +1,59 @@
1
+ # Control Plane (cpln) Resource Provider
2
+
3
+ The Control Plane Resource Provider lets you manage [Control Plane](https://controlplane.com/) resources.
4
+
5
+ ## Installing
6
+
7
+ This package is available for several languages/platforms:
8
+
9
+ ### Node.js (JavaScript/TypeScript)
10
+
11
+ To use from JavaScript or TypeScript in Node.js, install using either `npm`:
12
+
13
+ ```bash
14
+ npm install @pulumiverse/cpln
15
+ ```
16
+
17
+ or `yarn`:
18
+
19
+ ```bash
20
+ yarn add @pulumiverse/cpln
21
+ ```
22
+
23
+ ### Python
24
+
25
+ To use from Python, install using `pip`:
26
+
27
+ ```bash
28
+ pip install pulumiverse-cpln
29
+ ```
30
+
31
+ ### Go
32
+
33
+ To use from Go, use `go get` to grab the latest version of the library:
34
+
35
+ ```bash
36
+ go get github.com/pulumiverse/pulumi-cpln/sdk/go/...
37
+ ```
38
+
39
+ ### .NET
40
+
41
+ To use from .NET, install using `dotnet add package`:
42
+
43
+ ```bash
44
+ dotnet add package Pulumiverse.cpln
45
+ ```
46
+
47
+ ## Configuration
48
+
49
+ The following configuration points are available for the `cpln` provider:
50
+
51
+ - `cpln:org` - The Control Plane org that this provider will perform actions against
52
+ - `cpln:endpoint` - The Control Plane Data Service API endpoint
53
+ - `cpln:profile` - The user/service account profile that this provider will use to authenticate to the data service
54
+ - `cpln:token` - A generated token that can be used to authenticate to the data service API
55
+ - `cpln:refreshToken` - A generated token that can be used to authenticate to the data service API
56
+
57
+ ## Reference
58
+
59
+ For detailed reference documentation, please visit [the Pulumi registry](https://www.pulumi.com/registry/packages/cpln/api-docs/).
@@ -0,0 +1,241 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by pulumi-language-python. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import builtins
6
+ from . import _utilities
7
+ import typing
8
+ # Export this package's modules as members:
9
+ from .agent import *
10
+ from .audit_context import *
11
+ from .cloud_account import *
12
+ from .custom_location import *
13
+ from .domain import *
14
+ from .domain_route import *
15
+ from .get_cloud_account import *
16
+ from .get_gvc import *
17
+ from .get_image import *
18
+ from .get_images import *
19
+ from .get_location import *
20
+ from .get_locations import *
21
+ from .get_org import *
22
+ from .get_secret import *
23
+ from .group import *
24
+ from .gvc import *
25
+ from .identity import *
26
+ from .ip_set import *
27
+ from .location import *
28
+ from .mk8s import *
29
+ from .mk8s_kubeconfig import *
30
+ from .org import *
31
+ from .org_logging import *
32
+ from .org_tracing import *
33
+ from .policy import *
34
+ from .provider import *
35
+ from .secret import *
36
+ from .service_account import *
37
+ from .service_account_key import *
38
+ from .volume_set import *
39
+ from .workload import *
40
+ from ._inputs import *
41
+ from . import outputs
42
+
43
+ # Make subpackages available:
44
+ if typing.TYPE_CHECKING:
45
+ import pulumiverse_cpln.config as __config
46
+ config = __config
47
+ else:
48
+ config = _utilities.lazy_import('pulumiverse_cpln.config')
49
+
50
+ _utilities.register(
51
+ resource_modules="""
52
+ [
53
+ {
54
+ "pkg": "cpln",
55
+ "mod": "index/agent",
56
+ "fqn": "pulumiverse_cpln",
57
+ "classes": {
58
+ "cpln:index/agent:Agent": "Agent"
59
+ }
60
+ },
61
+ {
62
+ "pkg": "cpln",
63
+ "mod": "index/auditContext",
64
+ "fqn": "pulumiverse_cpln",
65
+ "classes": {
66
+ "cpln:index/auditContext:AuditContext": "AuditContext"
67
+ }
68
+ },
69
+ {
70
+ "pkg": "cpln",
71
+ "mod": "index/cloudAccount",
72
+ "fqn": "pulumiverse_cpln",
73
+ "classes": {
74
+ "cpln:index/cloudAccount:CloudAccount": "CloudAccount"
75
+ }
76
+ },
77
+ {
78
+ "pkg": "cpln",
79
+ "mod": "index/customLocation",
80
+ "fqn": "pulumiverse_cpln",
81
+ "classes": {
82
+ "cpln:index/customLocation:CustomLocation": "CustomLocation"
83
+ }
84
+ },
85
+ {
86
+ "pkg": "cpln",
87
+ "mod": "index/domain",
88
+ "fqn": "pulumiverse_cpln",
89
+ "classes": {
90
+ "cpln:index/domain:Domain": "Domain"
91
+ }
92
+ },
93
+ {
94
+ "pkg": "cpln",
95
+ "mod": "index/domainRoute",
96
+ "fqn": "pulumiverse_cpln",
97
+ "classes": {
98
+ "cpln:index/domainRoute:DomainRoute": "DomainRoute"
99
+ }
100
+ },
101
+ {
102
+ "pkg": "cpln",
103
+ "mod": "index/group",
104
+ "fqn": "pulumiverse_cpln",
105
+ "classes": {
106
+ "cpln:index/group:Group": "Group"
107
+ }
108
+ },
109
+ {
110
+ "pkg": "cpln",
111
+ "mod": "index/gvc",
112
+ "fqn": "pulumiverse_cpln",
113
+ "classes": {
114
+ "cpln:index/gvc:Gvc": "Gvc"
115
+ }
116
+ },
117
+ {
118
+ "pkg": "cpln",
119
+ "mod": "index/identity",
120
+ "fqn": "pulumiverse_cpln",
121
+ "classes": {
122
+ "cpln:index/identity:Identity": "Identity"
123
+ }
124
+ },
125
+ {
126
+ "pkg": "cpln",
127
+ "mod": "index/ipSet",
128
+ "fqn": "pulumiverse_cpln",
129
+ "classes": {
130
+ "cpln:index/ipSet:IpSet": "IpSet"
131
+ }
132
+ },
133
+ {
134
+ "pkg": "cpln",
135
+ "mod": "index/location",
136
+ "fqn": "pulumiverse_cpln",
137
+ "classes": {
138
+ "cpln:index/location:Location": "Location"
139
+ }
140
+ },
141
+ {
142
+ "pkg": "cpln",
143
+ "mod": "index/mk8s",
144
+ "fqn": "pulumiverse_cpln",
145
+ "classes": {
146
+ "cpln:index/mk8s:Mk8s": "Mk8s"
147
+ }
148
+ },
149
+ {
150
+ "pkg": "cpln",
151
+ "mod": "index/mk8sKubeconfig",
152
+ "fqn": "pulumiverse_cpln",
153
+ "classes": {
154
+ "cpln:index/mk8sKubeconfig:Mk8sKubeconfig": "Mk8sKubeconfig"
155
+ }
156
+ },
157
+ {
158
+ "pkg": "cpln",
159
+ "mod": "index/org",
160
+ "fqn": "pulumiverse_cpln",
161
+ "classes": {
162
+ "cpln:index/org:Org": "Org"
163
+ }
164
+ },
165
+ {
166
+ "pkg": "cpln",
167
+ "mod": "index/orgLogging",
168
+ "fqn": "pulumiverse_cpln",
169
+ "classes": {
170
+ "cpln:index/orgLogging:OrgLogging": "OrgLogging"
171
+ }
172
+ },
173
+ {
174
+ "pkg": "cpln",
175
+ "mod": "index/orgTracing",
176
+ "fqn": "pulumiverse_cpln",
177
+ "classes": {
178
+ "cpln:index/orgTracing:OrgTracing": "OrgTracing"
179
+ }
180
+ },
181
+ {
182
+ "pkg": "cpln",
183
+ "mod": "index/policy",
184
+ "fqn": "pulumiverse_cpln",
185
+ "classes": {
186
+ "cpln:index/policy:Policy": "Policy"
187
+ }
188
+ },
189
+ {
190
+ "pkg": "cpln",
191
+ "mod": "index/secret",
192
+ "fqn": "pulumiverse_cpln",
193
+ "classes": {
194
+ "cpln:index/secret:Secret": "Secret"
195
+ }
196
+ },
197
+ {
198
+ "pkg": "cpln",
199
+ "mod": "index/serviceAccount",
200
+ "fqn": "pulumiverse_cpln",
201
+ "classes": {
202
+ "cpln:index/serviceAccount:ServiceAccount": "ServiceAccount"
203
+ }
204
+ },
205
+ {
206
+ "pkg": "cpln",
207
+ "mod": "index/serviceAccountKey",
208
+ "fqn": "pulumiverse_cpln",
209
+ "classes": {
210
+ "cpln:index/serviceAccountKey:ServiceAccountKey": "ServiceAccountKey"
211
+ }
212
+ },
213
+ {
214
+ "pkg": "cpln",
215
+ "mod": "index/volumeSet",
216
+ "fqn": "pulumiverse_cpln",
217
+ "classes": {
218
+ "cpln:index/volumeSet:VolumeSet": "VolumeSet"
219
+ }
220
+ },
221
+ {
222
+ "pkg": "cpln",
223
+ "mod": "index/workload",
224
+ "fqn": "pulumiverse_cpln",
225
+ "classes": {
226
+ "cpln:index/workload:Workload": "Workload"
227
+ }
228
+ }
229
+ ]
230
+ """,
231
+ resource_packages="""
232
+ [
233
+ {
234
+ "pkg": "cpln",
235
+ "token": "pulumi:providers:cpln",
236
+ "fqn": "pulumiverse_cpln",
237
+ "class": "Provider"
238
+ }
239
+ ]
240
+ """
241
+ )