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.
Files changed (44) hide show
  1. pulumiverse_cpln/__init__.py +241 -0
  2. pulumiverse_cpln/_inputs.py +18692 -0
  3. pulumiverse_cpln/_utilities.py +331 -0
  4. pulumiverse_cpln/agent.py +330 -0
  5. pulumiverse_cpln/audit_context.py +300 -0
  6. pulumiverse_cpln/cloud_account.py +546 -0
  7. pulumiverse_cpln/config/__init__.py +9 -0
  8. pulumiverse_cpln/config/__init__.pyi +48 -0
  9. pulumiverse_cpln/config/vars.py +64 -0
  10. pulumiverse_cpln/custom_location.py +424 -0
  11. pulumiverse_cpln/domain.py +377 -0
  12. pulumiverse_cpln/domain_route.py +645 -0
  13. pulumiverse_cpln/get_cloud_account.py +107 -0
  14. pulumiverse_cpln/get_gvc.py +423 -0
  15. pulumiverse_cpln/get_image.py +284 -0
  16. pulumiverse_cpln/get_images.py +261 -0
  17. pulumiverse_cpln/get_location.py +273 -0
  18. pulumiverse_cpln/get_locations.py +171 -0
  19. pulumiverse_cpln/get_org.py +250 -0
  20. pulumiverse_cpln/get_secret.py +555 -0
  21. pulumiverse_cpln/group.py +539 -0
  22. pulumiverse_cpln/gvc.py +771 -0
  23. pulumiverse_cpln/identity.py +688 -0
  24. pulumiverse_cpln/ip_set.py +521 -0
  25. pulumiverse_cpln/location.py +435 -0
  26. pulumiverse_cpln/mk8s.py +848 -0
  27. pulumiverse_cpln/mk8s_kubeconfig.py +362 -0
  28. pulumiverse_cpln/org.py +594 -0
  29. pulumiverse_cpln/org_logging.py +616 -0
  30. pulumiverse_cpln/org_tracing.py +347 -0
  31. pulumiverse_cpln/outputs.py +14498 -0
  32. pulumiverse_cpln/policy.py +620 -0
  33. pulumiverse_cpln/provider.py +271 -0
  34. pulumiverse_cpln/pulumi-plugin.json +5 -0
  35. pulumiverse_cpln/py.typed +0 -0
  36. pulumiverse_cpln/secret.py +915 -0
  37. pulumiverse_cpln/service_account.py +328 -0
  38. pulumiverse_cpln/service_account_key.py +285 -0
  39. pulumiverse_cpln/volume_set.py +765 -0
  40. pulumiverse_cpln/workload.py +1033 -0
  41. pulumiverse_cpln-0.0.0.dist-info/METADATA +83 -0
  42. pulumiverse_cpln-0.0.0.dist-info/RECORD +44 -0
  43. pulumiverse_cpln-0.0.0.dist-info/WHEEL +5 -0
  44. pulumiverse_cpln-0.0.0.dist-info/top_level.txt +1 -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,44 @@
1
+ pulumiverse_cpln/__init__.py,sha256=Dwlh5rzaHAb-7vM31RMuP3Ee_IDi4xfuHEBapCoUFdE,4743
2
+ pulumiverse_cpln/_inputs.py,sha256=Lp4sJGA0QSKzzV1MOMKhcuPR-rpMUqiN1Xo84I9GRHs,742090
3
+ pulumiverse_cpln/_utilities.py,sha256=gKCIkl_oh08RRzGk3WqceyzWWvtDWhCGUOaU0M5xMfc,10822
4
+ pulumiverse_cpln/agent.py,sha256=1h1rIJ84ZCY8kikqNLdtyXz8ShbjY5jdz6LVF_rOzKw,13087
5
+ pulumiverse_cpln/audit_context.py,sha256=FwStI5v6bObBDB_68DuGV8VxjDceqIxiN1dork2Ex3Q,12107
6
+ pulumiverse_cpln/cloud_account.py,sha256=A8M_cEdrc1d5moHM_uXxSryhrGGmPhi692cfaxovtbo,23878
7
+ pulumiverse_cpln/custom_location.py,sha256=1_tM7Z8wHdCT5WgdsoBNGb442tqUQd92W17SPkBgnv8,17324
8
+ pulumiverse_cpln/domain.py,sha256=W1cUoHxdVW-VdEMHCwcHb82SDR5K9b97qstDCn1SJQU,14980
9
+ pulumiverse_cpln/domain_route.py,sha256=swX7LDhLOC91zUEvM77rnfmfklzqGXg-OPtXiGwmMJc,31069
10
+ pulumiverse_cpln/get_cloud_account.py,sha256=1ZKyi75JYLtQC7B7pBO_1s1JiP4KL2PpEX05J5RSQUs,3647
11
+ pulumiverse_cpln/get_gvc.py,sha256=guyRYHEhvwecZpl_zGGGiwTfXpagaiyO4WTYN2jl-NY,20146
12
+ pulumiverse_cpln/get_image.py,sha256=T-A1o9YAjRCGuFOibwCERzdoPQ7QkRp1s4j7Bxbhn3Q,12573
13
+ pulumiverse_cpln/get_images.py,sha256=WPX53s2Zx0X1rdltOxkUJKMtSg5jsjivVKpoD8rPseo,10999
14
+ pulumiverse_cpln/get_location.py,sha256=Mit6koJOyq8tFz3IG8wY6A3slyWsKU_hYo42DZwiJcs,10102
15
+ pulumiverse_cpln/get_locations.py,sha256=RCBexGVTIoeElzaam7vwOLM05rrgBckSpXxEy2UBpRc,5654
16
+ pulumiverse_cpln/get_org.py,sha256=Y8ngnhLEvs3KpubBbBJRCwcTH0mIE9-36VTKEF2TzoA,9931
17
+ pulumiverse_cpln/get_secret.py,sha256=Lysoo1iB8IAkdpyauVm3_P18ZErwyVKhA9BZO_QDtlY,23817
18
+ pulumiverse_cpln/group.py,sha256=35MycP86EzR9OONLBkGmsyiwEFnXRfnisstCOw6Wefk,26567
19
+ pulumiverse_cpln/gvc.py,sha256=T1cAUDtF70iOT7Vr5z1_jAKclb9-a_O0LcuhjQaoSP0,37665
20
+ pulumiverse_cpln/identity.py,sha256=l1qSXmSrat2jWYlku0XC7LwZcYCik83-YhL2RD5I6n4,36147
21
+ pulumiverse_cpln/ip_set.py,sha256=VOb6wDLF---hHuQlahn-Vj4Z166BiqAkv6bssy4U-Qc,19265
22
+ pulumiverse_cpln/location.py,sha256=eEi-8ggKp34t78NeoTOez2gSTN8SkT-HGF1fjWcMxO4,17246
23
+ pulumiverse_cpln/mk8s.py,sha256=iT-tiEUHpdHOwsFDP4FYxN9nG8dR5lST0554BlHAY4o,39905
24
+ pulumiverse_cpln/mk8s_kubeconfig.py,sha256=7p-5YxPpu_al_jp44N85GEs3yD4rGDJqsOr0dDts_Iw,13691
25
+ pulumiverse_cpln/org.py,sha256=2HXseHZkBSnETQPOt9DSSFqPsKDTQYdPjNY5VrG4i-M,28964
26
+ pulumiverse_cpln/org_logging.py,sha256=8HGOtDmQJijhjnrOfpKw1zcomylOrKP0_ycUyNNrvPo,34621
27
+ pulumiverse_cpln/org_tracing.py,sha256=ha3FfvAge0qkKz6fbvclKW4yYIxxrYcUdUqOEPZWy_c,15297
28
+ pulumiverse_cpln/outputs.py,sha256=Vpl5eFFvCDZE6yFak8GDYaQOR-Nc-oxnxtVWiUdPT38,540350
29
+ pulumiverse_cpln/policy.py,sha256=icAND9QxIPCtmJs05KArnR2JKxolFTuzYOcPTcKE2mA,28508
30
+ pulumiverse_cpln/provider.py,sha256=Uil8XqKBtUl5pcsminyWL1ys37cPGsB2XqkTh1EmKzg,13158
31
+ pulumiverse_cpln/pulumi-plugin.json,sha256=L_Fb3rN49Y9mqIhsMq-4FXgBk9C8mgUfADLySrn9QQ0,92
32
+ pulumiverse_cpln/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
33
+ pulumiverse_cpln/secret.py,sha256=RF2VnIAUSLaYLIOjZCpfW-yF3W6UyNpNoOXqHjaRvTQ,43729
34
+ pulumiverse_cpln/service_account.py,sha256=Kp_EpBlPDHvwfYXWumMbjTHFCTMItGWcne5eDqXcS2s,13274
35
+ pulumiverse_cpln/service_account_key.py,sha256=PrWe0Y_1mpec6J3L1MFOfCGExaynGODdEzWYYyb9CBw,11864
36
+ pulumiverse_cpln/volume_set.py,sha256=CN3UGQWEL331Sf40M64_vHyXKjaYLCcRhxXww_9HZmM,37263
37
+ pulumiverse_cpln/workload.py,sha256=olFgKdhX88oQEjhjb2IhQ0agiDnENh_4eYs7LfelVyI,52334
38
+ pulumiverse_cpln/config/__init__.py,sha256=LBsoZbCKMHDFo-5RJPY0lRzMsShB1weBQPxL9RQBFtY,283
39
+ pulumiverse_cpln/config/__init__.pyi,sha256=8zqmXr1fspz-MNY13j45sP8beqo_RZgrgxqxWyC9BUI,1533
40
+ pulumiverse_cpln/config/vars.py,sha256=L-j-KZFPPVo5sKlsoyCKb-aUlSEqD37DkREXLFY2vHY,2156
41
+ pulumiverse_cpln-0.0.0.dist-info/METADATA,sha256=wiZ2BOkCXWfKVQvz4ExthTiWhNU85lUf0wX1-w_xilY,2218
42
+ pulumiverse_cpln-0.0.0.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
43
+ pulumiverse_cpln-0.0.0.dist-info/top_level.txt,sha256=WSBo6jXFLavFIkKqU5hfnIdNJrx3RX7hnF2Z7i3q86A,17
44
+ pulumiverse_cpln-0.0.0.dist-info/RECORD,,
@@ -0,0 +1,5 @@
1
+ Wheel-Version: 1.0
2
+ Generator: setuptools (80.9.0)
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
5
+
@@ -0,0 +1 @@
1
+ pulumiverse_cpln