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,347 @@
|
|
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
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from . import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = ['OrgTracingArgs', 'OrgTracing']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class OrgTracingArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
controlplane_tracing: Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']] = None,
|
26
|
+
lightstep_tracing: Optional[pulumi.Input['OrgTracingLightstepTracingArgs']] = None,
|
27
|
+
otel_tracing: Optional[pulumi.Input['OrgTracingOtelTracingArgs']] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a OrgTracing resource.
|
30
|
+
"""
|
31
|
+
if controlplane_tracing is not None:
|
32
|
+
pulumi.set(__self__, "controlplane_tracing", controlplane_tracing)
|
33
|
+
if lightstep_tracing is not None:
|
34
|
+
pulumi.set(__self__, "lightstep_tracing", lightstep_tracing)
|
35
|
+
if otel_tracing is not None:
|
36
|
+
pulumi.set(__self__, "otel_tracing", otel_tracing)
|
37
|
+
|
38
|
+
@property
|
39
|
+
@pulumi.getter(name="controlplaneTracing")
|
40
|
+
def controlplane_tracing(self) -> Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']]:
|
41
|
+
return pulumi.get(self, "controlplane_tracing")
|
42
|
+
|
43
|
+
@controlplane_tracing.setter
|
44
|
+
def controlplane_tracing(self, value: Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']]):
|
45
|
+
pulumi.set(self, "controlplane_tracing", value)
|
46
|
+
|
47
|
+
@property
|
48
|
+
@pulumi.getter(name="lightstepTracing")
|
49
|
+
def lightstep_tracing(self) -> Optional[pulumi.Input['OrgTracingLightstepTracingArgs']]:
|
50
|
+
return pulumi.get(self, "lightstep_tracing")
|
51
|
+
|
52
|
+
@lightstep_tracing.setter
|
53
|
+
def lightstep_tracing(self, value: Optional[pulumi.Input['OrgTracingLightstepTracingArgs']]):
|
54
|
+
pulumi.set(self, "lightstep_tracing", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="otelTracing")
|
58
|
+
def otel_tracing(self) -> Optional[pulumi.Input['OrgTracingOtelTracingArgs']]:
|
59
|
+
return pulumi.get(self, "otel_tracing")
|
60
|
+
|
61
|
+
@otel_tracing.setter
|
62
|
+
def otel_tracing(self, value: Optional[pulumi.Input['OrgTracingOtelTracingArgs']]):
|
63
|
+
pulumi.set(self, "otel_tracing", value)
|
64
|
+
|
65
|
+
|
66
|
+
@pulumi.input_type
|
67
|
+
class _OrgTracingState:
|
68
|
+
def __init__(__self__, *,
|
69
|
+
controlplane_tracing: Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']] = None,
|
70
|
+
cpln_id: Optional[pulumi.Input[builtins.str]] = None,
|
71
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
72
|
+
lightstep_tracing: Optional[pulumi.Input['OrgTracingLightstepTracingArgs']] = None,
|
73
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
74
|
+
otel_tracing: Optional[pulumi.Input['OrgTracingOtelTracingArgs']] = None,
|
75
|
+
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
76
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
77
|
+
"""
|
78
|
+
Input properties used for looking up and filtering OrgTracing resources.
|
79
|
+
:param pulumi.Input[builtins.str] cpln_id: The ID, in GUID format, of the Org.
|
80
|
+
:param pulumi.Input[builtins.str] description: Description of the Org.
|
81
|
+
:param pulumi.Input[builtins.str] name: Name of the Org.
|
82
|
+
:param pulumi.Input[builtins.str] self_link: Full link to this resource. Can be referenced by other resources.
|
83
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: Key-value map of resource tags.
|
84
|
+
"""
|
85
|
+
if controlplane_tracing is not None:
|
86
|
+
pulumi.set(__self__, "controlplane_tracing", controlplane_tracing)
|
87
|
+
if cpln_id is not None:
|
88
|
+
pulumi.set(__self__, "cpln_id", cpln_id)
|
89
|
+
if description is not None:
|
90
|
+
pulumi.set(__self__, "description", description)
|
91
|
+
if lightstep_tracing is not None:
|
92
|
+
pulumi.set(__self__, "lightstep_tracing", lightstep_tracing)
|
93
|
+
if name is not None:
|
94
|
+
pulumi.set(__self__, "name", name)
|
95
|
+
if otel_tracing is not None:
|
96
|
+
pulumi.set(__self__, "otel_tracing", otel_tracing)
|
97
|
+
if self_link is not None:
|
98
|
+
pulumi.set(__self__, "self_link", self_link)
|
99
|
+
if tags is not None:
|
100
|
+
pulumi.set(__self__, "tags", tags)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="controlplaneTracing")
|
104
|
+
def controlplane_tracing(self) -> Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']]:
|
105
|
+
return pulumi.get(self, "controlplane_tracing")
|
106
|
+
|
107
|
+
@controlplane_tracing.setter
|
108
|
+
def controlplane_tracing(self, value: Optional[pulumi.Input['OrgTracingControlplaneTracingArgs']]):
|
109
|
+
pulumi.set(self, "controlplane_tracing", value)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="cplnId")
|
113
|
+
def cpln_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
114
|
+
"""
|
115
|
+
The ID, in GUID format, of the Org.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "cpln_id")
|
118
|
+
|
119
|
+
@cpln_id.setter
|
120
|
+
def cpln_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
121
|
+
pulumi.set(self, "cpln_id", value)
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter
|
125
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
126
|
+
"""
|
127
|
+
Description of the Org.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "description")
|
130
|
+
|
131
|
+
@description.setter
|
132
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
133
|
+
pulumi.set(self, "description", value)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="lightstepTracing")
|
137
|
+
def lightstep_tracing(self) -> Optional[pulumi.Input['OrgTracingLightstepTracingArgs']]:
|
138
|
+
return pulumi.get(self, "lightstep_tracing")
|
139
|
+
|
140
|
+
@lightstep_tracing.setter
|
141
|
+
def lightstep_tracing(self, value: Optional[pulumi.Input['OrgTracingLightstepTracingArgs']]):
|
142
|
+
pulumi.set(self, "lightstep_tracing", value)
|
143
|
+
|
144
|
+
@property
|
145
|
+
@pulumi.getter
|
146
|
+
def name(self) -> Optional[pulumi.Input[builtins.str]]:
|
147
|
+
"""
|
148
|
+
Name of the Org.
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "name")
|
151
|
+
|
152
|
+
@name.setter
|
153
|
+
def name(self, value: Optional[pulumi.Input[builtins.str]]):
|
154
|
+
pulumi.set(self, "name", value)
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="otelTracing")
|
158
|
+
def otel_tracing(self) -> Optional[pulumi.Input['OrgTracingOtelTracingArgs']]:
|
159
|
+
return pulumi.get(self, "otel_tracing")
|
160
|
+
|
161
|
+
@otel_tracing.setter
|
162
|
+
def otel_tracing(self, value: Optional[pulumi.Input['OrgTracingOtelTracingArgs']]):
|
163
|
+
pulumi.set(self, "otel_tracing", value)
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="selfLink")
|
167
|
+
def self_link(self) -> Optional[pulumi.Input[builtins.str]]:
|
168
|
+
"""
|
169
|
+
Full link to this resource. Can be referenced by other resources.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "self_link")
|
172
|
+
|
173
|
+
@self_link.setter
|
174
|
+
def self_link(self, value: Optional[pulumi.Input[builtins.str]]):
|
175
|
+
pulumi.set(self, "self_link", value)
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter
|
179
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
180
|
+
"""
|
181
|
+
Key-value map of resource tags.
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "tags")
|
184
|
+
|
185
|
+
@tags.setter
|
186
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
187
|
+
pulumi.set(self, "tags", value)
|
188
|
+
|
189
|
+
|
190
|
+
@pulumi.type_token("cpln:index/orgTracing:OrgTracing")
|
191
|
+
class OrgTracing(pulumi.CustomResource):
|
192
|
+
@overload
|
193
|
+
def __init__(__self__,
|
194
|
+
resource_name: str,
|
195
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
196
|
+
controlplane_tracing: Optional[pulumi.Input[Union['OrgTracingControlplaneTracingArgs', 'OrgTracingControlplaneTracingArgsDict']]] = None,
|
197
|
+
lightstep_tracing: Optional[pulumi.Input[Union['OrgTracingLightstepTracingArgs', 'OrgTracingLightstepTracingArgsDict']]] = None,
|
198
|
+
otel_tracing: Optional[pulumi.Input[Union['OrgTracingOtelTracingArgs', 'OrgTracingOtelTracingArgsDict']]] = None,
|
199
|
+
__props__=None):
|
200
|
+
"""
|
201
|
+
Create a OrgTracing resource with the given unique name, props, and options.
|
202
|
+
:param str resource_name: The name of the resource.
|
203
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
204
|
+
"""
|
205
|
+
...
|
206
|
+
@overload
|
207
|
+
def __init__(__self__,
|
208
|
+
resource_name: str,
|
209
|
+
args: Optional[OrgTracingArgs] = None,
|
210
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
211
|
+
"""
|
212
|
+
Create a OrgTracing resource with the given unique name, props, and options.
|
213
|
+
:param str resource_name: The name of the resource.
|
214
|
+
:param OrgTracingArgs args: The arguments to use to populate this resource's properties.
|
215
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
216
|
+
"""
|
217
|
+
...
|
218
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
219
|
+
resource_args, opts = _utilities.get_resource_args_opts(OrgTracingArgs, pulumi.ResourceOptions, *args, **kwargs)
|
220
|
+
if resource_args is not None:
|
221
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
222
|
+
else:
|
223
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
224
|
+
|
225
|
+
def _internal_init(__self__,
|
226
|
+
resource_name: str,
|
227
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
228
|
+
controlplane_tracing: Optional[pulumi.Input[Union['OrgTracingControlplaneTracingArgs', 'OrgTracingControlplaneTracingArgsDict']]] = None,
|
229
|
+
lightstep_tracing: Optional[pulumi.Input[Union['OrgTracingLightstepTracingArgs', 'OrgTracingLightstepTracingArgsDict']]] = None,
|
230
|
+
otel_tracing: Optional[pulumi.Input[Union['OrgTracingOtelTracingArgs', 'OrgTracingOtelTracingArgsDict']]] = None,
|
231
|
+
__props__=None):
|
232
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
233
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
234
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
235
|
+
if opts.id is None:
|
236
|
+
if __props__ is not None:
|
237
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
238
|
+
__props__ = OrgTracingArgs.__new__(OrgTracingArgs)
|
239
|
+
|
240
|
+
__props__.__dict__["controlplane_tracing"] = controlplane_tracing
|
241
|
+
__props__.__dict__["lightstep_tracing"] = lightstep_tracing
|
242
|
+
__props__.__dict__["otel_tracing"] = otel_tracing
|
243
|
+
__props__.__dict__["cpln_id"] = None
|
244
|
+
__props__.__dict__["description"] = None
|
245
|
+
__props__.__dict__["name"] = None
|
246
|
+
__props__.__dict__["self_link"] = None
|
247
|
+
__props__.__dict__["tags"] = None
|
248
|
+
super(OrgTracing, __self__).__init__(
|
249
|
+
'cpln:index/orgTracing:OrgTracing',
|
250
|
+
resource_name,
|
251
|
+
__props__,
|
252
|
+
opts)
|
253
|
+
|
254
|
+
@staticmethod
|
255
|
+
def get(resource_name: str,
|
256
|
+
id: pulumi.Input[str],
|
257
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
258
|
+
controlplane_tracing: Optional[pulumi.Input[Union['OrgTracingControlplaneTracingArgs', 'OrgTracingControlplaneTracingArgsDict']]] = None,
|
259
|
+
cpln_id: Optional[pulumi.Input[builtins.str]] = None,
|
260
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
261
|
+
lightstep_tracing: Optional[pulumi.Input[Union['OrgTracingLightstepTracingArgs', 'OrgTracingLightstepTracingArgsDict']]] = None,
|
262
|
+
name: Optional[pulumi.Input[builtins.str]] = None,
|
263
|
+
otel_tracing: Optional[pulumi.Input[Union['OrgTracingOtelTracingArgs', 'OrgTracingOtelTracingArgsDict']]] = None,
|
264
|
+
self_link: Optional[pulumi.Input[builtins.str]] = None,
|
265
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None) -> 'OrgTracing':
|
266
|
+
"""
|
267
|
+
Get an existing OrgTracing resource's state with the given name, id, and optional extra
|
268
|
+
properties used to qualify the lookup.
|
269
|
+
|
270
|
+
:param str resource_name: The unique name of the resulting resource.
|
271
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
272
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
273
|
+
:param pulumi.Input[builtins.str] cpln_id: The ID, in GUID format, of the Org.
|
274
|
+
:param pulumi.Input[builtins.str] description: Description of the Org.
|
275
|
+
:param pulumi.Input[builtins.str] name: Name of the Org.
|
276
|
+
:param pulumi.Input[builtins.str] self_link: Full link to this resource. Can be referenced by other resources.
|
277
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] tags: Key-value map of resource tags.
|
278
|
+
"""
|
279
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
280
|
+
|
281
|
+
__props__ = _OrgTracingState.__new__(_OrgTracingState)
|
282
|
+
|
283
|
+
__props__.__dict__["controlplane_tracing"] = controlplane_tracing
|
284
|
+
__props__.__dict__["cpln_id"] = cpln_id
|
285
|
+
__props__.__dict__["description"] = description
|
286
|
+
__props__.__dict__["lightstep_tracing"] = lightstep_tracing
|
287
|
+
__props__.__dict__["name"] = name
|
288
|
+
__props__.__dict__["otel_tracing"] = otel_tracing
|
289
|
+
__props__.__dict__["self_link"] = self_link
|
290
|
+
__props__.__dict__["tags"] = tags
|
291
|
+
return OrgTracing(resource_name, opts=opts, __props__=__props__)
|
292
|
+
|
293
|
+
@property
|
294
|
+
@pulumi.getter(name="controlplaneTracing")
|
295
|
+
def controlplane_tracing(self) -> pulumi.Output[Optional['outputs.OrgTracingControlplaneTracing']]:
|
296
|
+
return pulumi.get(self, "controlplane_tracing")
|
297
|
+
|
298
|
+
@property
|
299
|
+
@pulumi.getter(name="cplnId")
|
300
|
+
def cpln_id(self) -> pulumi.Output[builtins.str]:
|
301
|
+
"""
|
302
|
+
The ID, in GUID format, of the Org.
|
303
|
+
"""
|
304
|
+
return pulumi.get(self, "cpln_id")
|
305
|
+
|
306
|
+
@property
|
307
|
+
@pulumi.getter
|
308
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
309
|
+
"""
|
310
|
+
Description of the Org.
|
311
|
+
"""
|
312
|
+
return pulumi.get(self, "description")
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="lightstepTracing")
|
316
|
+
def lightstep_tracing(self) -> pulumi.Output[Optional['outputs.OrgTracingLightstepTracing']]:
|
317
|
+
return pulumi.get(self, "lightstep_tracing")
|
318
|
+
|
319
|
+
@property
|
320
|
+
@pulumi.getter
|
321
|
+
def name(self) -> pulumi.Output[builtins.str]:
|
322
|
+
"""
|
323
|
+
Name of the Org.
|
324
|
+
"""
|
325
|
+
return pulumi.get(self, "name")
|
326
|
+
|
327
|
+
@property
|
328
|
+
@pulumi.getter(name="otelTracing")
|
329
|
+
def otel_tracing(self) -> pulumi.Output[Optional['outputs.OrgTracingOtelTracing']]:
|
330
|
+
return pulumi.get(self, "otel_tracing")
|
331
|
+
|
332
|
+
@property
|
333
|
+
@pulumi.getter(name="selfLink")
|
334
|
+
def self_link(self) -> pulumi.Output[builtins.str]:
|
335
|
+
"""
|
336
|
+
Full link to this resource. Can be referenced by other resources.
|
337
|
+
"""
|
338
|
+
return pulumi.get(self, "self_link")
|
339
|
+
|
340
|
+
@property
|
341
|
+
@pulumi.getter
|
342
|
+
def tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
343
|
+
"""
|
344
|
+
Key-value map of resource tags.
|
345
|
+
"""
|
346
|
+
return pulumi.get(self, "tags")
|
347
|
+
|