pulumi-aiven 6.19.0a1721711612__py3-none-any.whl → 6.19.0a1721845827__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.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +10 -0
- pulumi_aiven/_inputs.py +774 -0
- pulumi_aiven/get_thanos.py +449 -0
- pulumi_aiven/outputs.py +1356 -0
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/thanos.py +1208 -0
- {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721845827.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721845827.dist-info}/RECORD +10 -8
- {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721845827.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721845827.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -97,6 +97,7 @@ from .get_redis_user import *
|
|
|
97
97
|
from .get_service_component import *
|
|
98
98
|
from .get_service_integration import *
|
|
99
99
|
from .get_service_integration_endpoint import *
|
|
100
|
+
from .get_thanos import *
|
|
100
101
|
from .get_transit_gateway_vpc_attachment import *
|
|
101
102
|
from .grafana import *
|
|
102
103
|
from .influx_db import *
|
|
@@ -144,6 +145,7 @@ from .redis_user import *
|
|
|
144
145
|
from .service_integration import *
|
|
145
146
|
from .service_integration_endpoint import *
|
|
146
147
|
from .static_ip import *
|
|
148
|
+
from .thanos import *
|
|
147
149
|
from .transit_gateway_vpc_attachment import *
|
|
148
150
|
from ._inputs import *
|
|
149
151
|
from . import outputs
|
|
@@ -734,6 +736,14 @@ _utilities.register(
|
|
|
734
736
|
"aiven:index/staticIp:StaticIp": "StaticIp"
|
|
735
737
|
}
|
|
736
738
|
},
|
|
739
|
+
{
|
|
740
|
+
"pkg": "aiven",
|
|
741
|
+
"mod": "index/thanos",
|
|
742
|
+
"fqn": "pulumi_aiven",
|
|
743
|
+
"classes": {
|
|
744
|
+
"aiven:index/thanos:Thanos": "Thanos"
|
|
745
|
+
}
|
|
746
|
+
},
|
|
737
747
|
{
|
|
738
748
|
"pkg": "aiven",
|
|
739
749
|
"mod": "index/transitGatewayVpcAttachment",
|