pulumi-oci 1.21.0a1706781561__py3-none-any.whl → 1.22.0a1706831235__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.
- pulumi_oci/_utilities.py +6 -2
- pulumi_oci/config/__init__.pyi +0 -4
- pulumi_oci/config/vars.py +0 -4
- {pulumi_oci-1.21.0a1706781561.dist-info → pulumi_oci-1.22.0a1706831235.dist-info}/METADATA +2 -1
- {pulumi_oci-1.21.0a1706781561.dist-info → pulumi_oci-1.22.0a1706831235.dist-info}/RECORD +7 -7
- {pulumi_oci-1.21.0a1706781561.dist-info → pulumi_oci-1.22.0a1706831235.dist-info}/WHEEL +0 -0
- {pulumi_oci-1.21.0a1706781561.dist-info → pulumi_oci-1.22.0a1706831235.dist-info}/top_level.txt +0 -0
pulumi_oci/_utilities.py
CHANGED
@@ -8,7 +8,6 @@ import importlib.util
|
|
8
8
|
import inspect
|
9
9
|
import json
|
10
10
|
import os
|
11
|
-
import pkg_resources
|
12
11
|
import sys
|
13
12
|
import typing
|
14
13
|
|
@@ -19,6 +18,11 @@ from pulumi.runtime.sync_await import _sync_await
|
|
19
18
|
from semver import VersionInfo as SemverVersion
|
20
19
|
from parver import Version as PEP440Version
|
21
20
|
|
21
|
+
if sys.version_info >= (3, 8):
|
22
|
+
from importlib import metadata
|
23
|
+
else:
|
24
|
+
import importlib_metadata as metadata
|
25
|
+
|
22
26
|
|
23
27
|
def get_env(*args):
|
24
28
|
for v in args:
|
@@ -72,7 +76,7 @@ def _get_semver_version():
|
|
72
76
|
# to receive a valid semver string when receiving requests from the language host, so it's our
|
73
77
|
# responsibility as the library to convert our own PEP440 version into a valid semver string.
|
74
78
|
|
75
|
-
pep440_version_string =
|
79
|
+
pep440_version_string = metadata.version(root_package)
|
76
80
|
pep440_version = PEP440Version.parse(pep440_version_string)
|
77
81
|
(major, minor, patch) = pep440_version.release
|
78
82
|
prerelease = None
|
pulumi_oci/config/__init__.pyi
CHANGED
@@ -33,10 +33,6 @@ console. Required if auth is set to 'ApiKey', ignored otherwise.
|
|
33
33
|
"""
|
34
34
|
|
35
35
|
ignoreDefinedTags: Optional[str]
|
36
|
-
"""
|
37
|
-
(Optional) List of defined tags keys that Terraform should ignore when planning creates and updates to the associated
|
38
|
-
remote object
|
39
|
-
"""
|
40
36
|
|
41
37
|
privateKey: Optional[str]
|
42
38
|
"""
|
pulumi_oci/config/vars.py
CHANGED
@@ -48,10 +48,6 @@ class _ExportableConfig(types.ModuleType):
|
|
48
48
|
|
49
49
|
@property
|
50
50
|
def ignore_defined_tags(self) -> Optional[str]:
|
51
|
-
"""
|
52
|
-
(Optional) List of defined tags keys that Terraform should ignore when planning creates and updates to the associated
|
53
|
-
remote object
|
54
|
-
"""
|
55
51
|
return __config__.get('ignoreDefinedTags')
|
56
52
|
|
57
53
|
@property
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: pulumi_oci
|
3
|
-
Version: 1.
|
3
|
+
Version: 1.22.0a1706831235
|
4
4
|
Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
|
5
5
|
License: Apache-2.0
|
6
6
|
Project-URL: Homepage, https://www.pulumi.com
|
@@ -11,6 +11,7 @@ Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver >=0.2.1
|
12
12
|
Requires-Dist: pulumi <4.0.0,>=3.0.0
|
13
13
|
Requires-Dist: semver >=2.8.1
|
14
|
+
Requires-Dist: importlib-metadata <7.0.0,>=6.0.0 ; python_version < "3.8"
|
14
15
|
|
15
16
|
# Oracle Cloud Infrastructure Resource Provider
|
16
17
|
|
@@ -1,5 +1,5 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=A_6rXPMU7JwFTKeZnGc-5x1bPGMSuvCXxALcAK0a-fo,143963
|
2
|
-
pulumi_oci/_utilities.py,sha256=
|
2
|
+
pulumi_oci/_utilities.py,sha256=jMbim532bPc1u3rZevJSaM4zw6tbQPf2c85Dkyq_7_g,9327
|
3
3
|
pulumi_oci/provider.py,sha256=xb4xvGxOAQDmgHlar9M1AaiSt9ZiwtfITBZBtsdkfbg,24464
|
4
4
|
pulumi_oci/pulumi-plugin.json,sha256=M43fXbtz4Dlbv_jxw-1L4SOTGFmJN2lYa7ePzB7DmBs,40
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
@@ -363,8 +363,8 @@ pulumi_oci/computeinstanceagent/get_instance_agent_plugins.py,sha256=ZAZIULZnxYt
|
|
363
363
|
pulumi_oci/computeinstanceagent/get_instance_available_plugin.py,sha256=lZP13lUPa_yOxRUGtxbMWqKQ5wNKHCnHu24FKg_2dvY,8135
|
364
364
|
pulumi_oci/computeinstanceagent/outputs.py,sha256=gmuwk_xkyyk9PaRMEkRooWycM6T3NItHss4ggbyWXz4,5228
|
365
365
|
pulumi_oci/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
366
|
-
pulumi_oci/config/__init__.pyi,sha256=
|
367
|
-
pulumi_oci/config/vars.py,sha256=
|
366
|
+
pulumi_oci/config/__init__.pyi,sha256=4xwbApioG29Of0tq6HLEISY0ufe6t1jisNGL5q40GY4,2606
|
367
|
+
pulumi_oci/config/vars.py,sha256=rivnziHI8Mh46RzRZJv6sCmoJmtOqP-9tnJfGmIHQa0,4135
|
368
368
|
pulumi_oci/containerengine/__init__.py,sha256=6TM0sqIRD8PpUswE0la4moNLNH0LSzXsGiEUcl8RAwk,1305
|
369
369
|
pulumi_oci/containerengine/_inputs.py,sha256=wuYdeth_mTbf7TsCXfFbI05xsfX-jZSXIaODTuHhGbA,167202
|
370
370
|
pulumi_oci/containerengine/addon.py,sha256=0yc36c0EIHQSr3C6TLqGCxb_KgCz4xQOmhVn0y1UCPY,21308
|
@@ -2616,7 +2616,7 @@ pulumi_oci/waf/get_web_app_firewall_policies.py,sha256=KJZEdRiQjG67_3x9zDG9u6m7h
|
|
2616
2616
|
pulumi_oci/waf/get_web_app_firewall_policy.py,sha256=t31n_rsb6FWI8YkhndA1ucpKIbWq9XTogW-6D3Bbfe4,14240
|
2617
2617
|
pulumi_oci/waf/network_address_list.py,sha256=dMGab_fwT5pPiLF9kQ3j-Qd-RkXkDfyz306u2eQh0WQ,32655
|
2618
2618
|
pulumi_oci/waf/outputs.py,sha256=L_Ay91T3B8xIip2QKrOOW99UlLifV9ByKqO-js2Y84w,227577
|
2619
|
-
pulumi_oci-1.
|
2620
|
-
pulumi_oci-1.
|
2621
|
-
pulumi_oci-1.
|
2622
|
-
pulumi_oci-1.
|
2619
|
+
pulumi_oci-1.22.0a1706831235.dist-info/METADATA,sha256=Cl-qAOaNIwefyHgooBPFVRPlDqz76LwQUSah1OSwNZo,3973
|
2620
|
+
pulumi_oci-1.22.0a1706831235.dist-info/WHEEL,sha256=oiQVh_5PnQM0E3gPdiz09WCNmwiHDMaGer_elqB3coM,92
|
2621
|
+
pulumi_oci-1.22.0a1706831235.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
2622
|
+
pulumi_oci-1.22.0a1706831235.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-1.21.0a1706781561.dist-info → pulumi_oci-1.22.0a1706831235.dist-info}/top_level.txt
RENAMED
File without changes
|