pulumiverse-cpln 0.0.0__py3-none-any.whl
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.
- pulumiverse_cpln/__init__.py +241 -0
- pulumiverse_cpln/_inputs.py +18692 -0
- pulumiverse_cpln/_utilities.py +331 -0
- pulumiverse_cpln/agent.py +330 -0
- pulumiverse_cpln/audit_context.py +300 -0
- pulumiverse_cpln/cloud_account.py +546 -0
- pulumiverse_cpln/config/__init__.py +9 -0
- pulumiverse_cpln/config/__init__.pyi +48 -0
- pulumiverse_cpln/config/vars.py +64 -0
- pulumiverse_cpln/custom_location.py +424 -0
- pulumiverse_cpln/domain.py +377 -0
- pulumiverse_cpln/domain_route.py +645 -0
- pulumiverse_cpln/get_cloud_account.py +107 -0
- pulumiverse_cpln/get_gvc.py +423 -0
- pulumiverse_cpln/get_image.py +284 -0
- pulumiverse_cpln/get_images.py +261 -0
- pulumiverse_cpln/get_location.py +273 -0
- pulumiverse_cpln/get_locations.py +171 -0
- pulumiverse_cpln/get_org.py +250 -0
- pulumiverse_cpln/get_secret.py +555 -0
- pulumiverse_cpln/group.py +539 -0
- pulumiverse_cpln/gvc.py +771 -0
- pulumiverse_cpln/identity.py +688 -0
- pulumiverse_cpln/ip_set.py +521 -0
- pulumiverse_cpln/location.py +435 -0
- pulumiverse_cpln/mk8s.py +848 -0
- pulumiverse_cpln/mk8s_kubeconfig.py +362 -0
- pulumiverse_cpln/org.py +594 -0
- pulumiverse_cpln/org_logging.py +616 -0
- pulumiverse_cpln/org_tracing.py +347 -0
- pulumiverse_cpln/outputs.py +14498 -0
- pulumiverse_cpln/policy.py +620 -0
- pulumiverse_cpln/provider.py +271 -0
- pulumiverse_cpln/pulumi-plugin.json +5 -0
- pulumiverse_cpln/py.typed +0 -0
- pulumiverse_cpln/secret.py +915 -0
- pulumiverse_cpln/service_account.py +328 -0
- pulumiverse_cpln/service_account_key.py +285 -0
- pulumiverse_cpln/volume_set.py +765 -0
- pulumiverse_cpln/workload.py +1033 -0
- pulumiverse_cpln-0.0.0.dist-info/METADATA +83 -0
- pulumiverse_cpln-0.0.0.dist-info/RECORD +44 -0
- pulumiverse_cpln-0.0.0.dist-info/WHEEL +5 -0
- pulumiverse_cpln-0.0.0.dist-info/top_level.txt +1 -0
@@ -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
|
+
)
|