pulumiverse-scaleway 1.18.0a1730280133__py3-none-any.whl → 1.19.0a1730362099__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 pulumiverse-scaleway might be problematic. Click here for more details.
- pulumiverse_scaleway/__init__.py +1 -57
- pulumiverse_scaleway/_inputs.py +0 -446
- pulumiverse_scaleway/cockpit_alert_manager.py +52 -0
- pulumiverse_scaleway/get_instance_private_nic.py +12 -1
- pulumiverse_scaleway/get_registry_image_tag.py +229 -0
- pulumiverse_scaleway/instance_private_nic.py +103 -2
- pulumiverse_scaleway/outputs.py +0 -321
- pulumiverse_scaleway/pulumi-plugin.json +1 -1
- {pulumiverse_scaleway-1.18.0a1730280133.dist-info → pulumiverse_scaleway-1.19.0a1730362099.dist-info}/METADATA +1 -1
- {pulumiverse_scaleway-1.18.0a1730280133.dist-info → pulumiverse_scaleway-1.19.0a1730362099.dist-info}/RECORD +12 -20
- pulumiverse_scaleway/documentdb_database.py +0 -450
- pulumiverse_scaleway/documentdb_instance.py +0 -812
- pulumiverse_scaleway/documentdb_private_network_endpoint.py +0 -352
- pulumiverse_scaleway/documentdb_privilege.py +0 -402
- pulumiverse_scaleway/documentdb_read_replica.py +0 -405
- pulumiverse_scaleway/documentdb_user.py +0 -442
- pulumiverse_scaleway/get_documentdb_database.py +0 -198
- pulumiverse_scaleway/get_documentdb_instance.py +0 -245
- pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py +0 -198
- {pulumiverse_scaleway-1.18.0a1730280133.dist-info → pulumiverse_scaleway-1.19.0a1730362099.dist-info}/WHEEL +0 -0
- {pulumiverse_scaleway-1.18.0a1730280133.dist-info → pulumiverse_scaleway-1.19.0a1730362099.dist-info}/top_level.txt +0 -0
pulumiverse_scaleway/outputs.py
CHANGED
|
@@ -34,9 +34,6 @@ __all__ = [
|
|
|
34
34
|
'DatabaseInstanceReadReplica',
|
|
35
35
|
'DatabaseReadReplicaDirectAccess',
|
|
36
36
|
'DatabaseReadReplicaPrivateNetwork',
|
|
37
|
-
'DocumentdbPrivateNetworkEndpointPrivateNetwork',
|
|
38
|
-
'DocumentdbReadReplicaDirectAccess',
|
|
39
|
-
'DocumentdbReadReplicaPrivateNetwork',
|
|
40
37
|
'DomainRecordGeoIp',
|
|
41
38
|
'DomainRecordGeoIpMatch',
|
|
42
39
|
'DomainRecordHttpService',
|
|
@@ -1531,324 +1528,6 @@ class DatabaseReadReplicaPrivateNetwork(dict):
|
|
|
1531
1528
|
return pulumi.get(self, "zone")
|
|
1532
1529
|
|
|
1533
1530
|
|
|
1534
|
-
@pulumi.output_type
|
|
1535
|
-
class DocumentdbPrivateNetworkEndpointPrivateNetwork(dict):
|
|
1536
|
-
@staticmethod
|
|
1537
|
-
def __key_warning(key: str):
|
|
1538
|
-
suggest = None
|
|
1539
|
-
if key == "ipNet":
|
|
1540
|
-
suggest = "ip_net"
|
|
1541
|
-
|
|
1542
|
-
if suggest:
|
|
1543
|
-
pulumi.log.warn(f"Key '{key}' not found in DocumentdbPrivateNetworkEndpointPrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
|
1544
|
-
|
|
1545
|
-
def __getitem__(self, key: str) -> Any:
|
|
1546
|
-
DocumentdbPrivateNetworkEndpointPrivateNetwork.__key_warning(key)
|
|
1547
|
-
return super().__getitem__(key)
|
|
1548
|
-
|
|
1549
|
-
def get(self, key: str, default = None) -> Any:
|
|
1550
|
-
DocumentdbPrivateNetworkEndpointPrivateNetwork.__key_warning(key)
|
|
1551
|
-
return super().get(key, default)
|
|
1552
|
-
|
|
1553
|
-
def __init__(__self__, *,
|
|
1554
|
-
id: str,
|
|
1555
|
-
hostname: Optional[str] = None,
|
|
1556
|
-
ip: Optional[str] = None,
|
|
1557
|
-
ip_net: Optional[str] = None,
|
|
1558
|
-
name: Optional[str] = None,
|
|
1559
|
-
port: Optional[int] = None,
|
|
1560
|
-
zone: Optional[str] = None):
|
|
1561
|
-
"""
|
|
1562
|
-
:param str id: The private network ID.
|
|
1563
|
-
:param str hostname: The hostname of your endpoint.
|
|
1564
|
-
:param str ip: The IP of your private network service.
|
|
1565
|
-
:param str ip_net: The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. The IP network address within the private subnet is determined by the IP Address Management (IPAM) service if not set.
|
|
1566
|
-
:param str name: The name of your private service.
|
|
1567
|
-
:param int port: The port of your private service.
|
|
1568
|
-
:param str zone: The zone of your endpoint.
|
|
1569
|
-
"""
|
|
1570
|
-
pulumi.set(__self__, "id", id)
|
|
1571
|
-
if hostname is not None:
|
|
1572
|
-
pulumi.set(__self__, "hostname", hostname)
|
|
1573
|
-
if ip is not None:
|
|
1574
|
-
pulumi.set(__self__, "ip", ip)
|
|
1575
|
-
if ip_net is not None:
|
|
1576
|
-
pulumi.set(__self__, "ip_net", ip_net)
|
|
1577
|
-
if name is not None:
|
|
1578
|
-
pulumi.set(__self__, "name", name)
|
|
1579
|
-
if port is not None:
|
|
1580
|
-
pulumi.set(__self__, "port", port)
|
|
1581
|
-
if zone is not None:
|
|
1582
|
-
pulumi.set(__self__, "zone", zone)
|
|
1583
|
-
|
|
1584
|
-
@property
|
|
1585
|
-
@pulumi.getter
|
|
1586
|
-
def id(self) -> str:
|
|
1587
|
-
"""
|
|
1588
|
-
The private network ID.
|
|
1589
|
-
"""
|
|
1590
|
-
return pulumi.get(self, "id")
|
|
1591
|
-
|
|
1592
|
-
@property
|
|
1593
|
-
@pulumi.getter
|
|
1594
|
-
def hostname(self) -> Optional[str]:
|
|
1595
|
-
"""
|
|
1596
|
-
The hostname of your endpoint.
|
|
1597
|
-
"""
|
|
1598
|
-
return pulumi.get(self, "hostname")
|
|
1599
|
-
|
|
1600
|
-
@property
|
|
1601
|
-
@pulumi.getter
|
|
1602
|
-
def ip(self) -> Optional[str]:
|
|
1603
|
-
"""
|
|
1604
|
-
The IP of your private network service.
|
|
1605
|
-
"""
|
|
1606
|
-
return pulumi.get(self, "ip")
|
|
1607
|
-
|
|
1608
|
-
@property
|
|
1609
|
-
@pulumi.getter(name="ipNet")
|
|
1610
|
-
def ip_net(self) -> Optional[str]:
|
|
1611
|
-
"""
|
|
1612
|
-
The IP network address within the private subnet. This must be an IPv4 address with a CIDR notation. The IP network address within the private subnet is determined by the IP Address Management (IPAM) service if not set.
|
|
1613
|
-
"""
|
|
1614
|
-
return pulumi.get(self, "ip_net")
|
|
1615
|
-
|
|
1616
|
-
@property
|
|
1617
|
-
@pulumi.getter
|
|
1618
|
-
def name(self) -> Optional[str]:
|
|
1619
|
-
"""
|
|
1620
|
-
The name of your private service.
|
|
1621
|
-
"""
|
|
1622
|
-
return pulumi.get(self, "name")
|
|
1623
|
-
|
|
1624
|
-
@property
|
|
1625
|
-
@pulumi.getter
|
|
1626
|
-
def port(self) -> Optional[int]:
|
|
1627
|
-
"""
|
|
1628
|
-
The port of your private service.
|
|
1629
|
-
"""
|
|
1630
|
-
return pulumi.get(self, "port")
|
|
1631
|
-
|
|
1632
|
-
@property
|
|
1633
|
-
@pulumi.getter
|
|
1634
|
-
def zone(self) -> Optional[str]:
|
|
1635
|
-
"""
|
|
1636
|
-
The zone of your endpoint.
|
|
1637
|
-
"""
|
|
1638
|
-
return pulumi.get(self, "zone")
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
@pulumi.output_type
|
|
1642
|
-
class DocumentdbReadReplicaDirectAccess(dict):
|
|
1643
|
-
@staticmethod
|
|
1644
|
-
def __key_warning(key: str):
|
|
1645
|
-
suggest = None
|
|
1646
|
-
if key == "endpointId":
|
|
1647
|
-
suggest = "endpoint_id"
|
|
1648
|
-
|
|
1649
|
-
if suggest:
|
|
1650
|
-
pulumi.log.warn(f"Key '{key}' not found in DocumentdbReadReplicaDirectAccess. Access the value via the '{suggest}' property getter instead.")
|
|
1651
|
-
|
|
1652
|
-
def __getitem__(self, key: str) -> Any:
|
|
1653
|
-
DocumentdbReadReplicaDirectAccess.__key_warning(key)
|
|
1654
|
-
return super().__getitem__(key)
|
|
1655
|
-
|
|
1656
|
-
def get(self, key: str, default = None) -> Any:
|
|
1657
|
-
DocumentdbReadReplicaDirectAccess.__key_warning(key)
|
|
1658
|
-
return super().get(key, default)
|
|
1659
|
-
|
|
1660
|
-
def __init__(__self__, *,
|
|
1661
|
-
endpoint_id: Optional[str] = None,
|
|
1662
|
-
hostname: Optional[str] = None,
|
|
1663
|
-
ip: Optional[str] = None,
|
|
1664
|
-
name: Optional[str] = None,
|
|
1665
|
-
port: Optional[int] = None):
|
|
1666
|
-
"""
|
|
1667
|
-
:param str endpoint_id: The ID of the endpoint of the read replica.
|
|
1668
|
-
:param str hostname: Hostname of the endpoint. Only one of ip and hostname may be set.
|
|
1669
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of ip and hostname may be set.
|
|
1670
|
-
:param str name: Name of the endpoint.
|
|
1671
|
-
:param int port: TCP port of the endpoint.
|
|
1672
|
-
"""
|
|
1673
|
-
if endpoint_id is not None:
|
|
1674
|
-
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
1675
|
-
if hostname is not None:
|
|
1676
|
-
pulumi.set(__self__, "hostname", hostname)
|
|
1677
|
-
if ip is not None:
|
|
1678
|
-
pulumi.set(__self__, "ip", ip)
|
|
1679
|
-
if name is not None:
|
|
1680
|
-
pulumi.set(__self__, "name", name)
|
|
1681
|
-
if port is not None:
|
|
1682
|
-
pulumi.set(__self__, "port", port)
|
|
1683
|
-
|
|
1684
|
-
@property
|
|
1685
|
-
@pulumi.getter(name="endpointId")
|
|
1686
|
-
def endpoint_id(self) -> Optional[str]:
|
|
1687
|
-
"""
|
|
1688
|
-
The ID of the endpoint of the read replica.
|
|
1689
|
-
"""
|
|
1690
|
-
return pulumi.get(self, "endpoint_id")
|
|
1691
|
-
|
|
1692
|
-
@property
|
|
1693
|
-
@pulumi.getter
|
|
1694
|
-
def hostname(self) -> Optional[str]:
|
|
1695
|
-
"""
|
|
1696
|
-
Hostname of the endpoint. Only one of ip and hostname may be set.
|
|
1697
|
-
"""
|
|
1698
|
-
return pulumi.get(self, "hostname")
|
|
1699
|
-
|
|
1700
|
-
@property
|
|
1701
|
-
@pulumi.getter
|
|
1702
|
-
def ip(self) -> Optional[str]:
|
|
1703
|
-
"""
|
|
1704
|
-
IPv4 address of the endpoint (IP address). Only one of ip and hostname may be set.
|
|
1705
|
-
"""
|
|
1706
|
-
return pulumi.get(self, "ip")
|
|
1707
|
-
|
|
1708
|
-
@property
|
|
1709
|
-
@pulumi.getter
|
|
1710
|
-
def name(self) -> Optional[str]:
|
|
1711
|
-
"""
|
|
1712
|
-
Name of the endpoint.
|
|
1713
|
-
"""
|
|
1714
|
-
return pulumi.get(self, "name")
|
|
1715
|
-
|
|
1716
|
-
@property
|
|
1717
|
-
@pulumi.getter
|
|
1718
|
-
def port(self) -> Optional[int]:
|
|
1719
|
-
"""
|
|
1720
|
-
TCP port of the endpoint.
|
|
1721
|
-
"""
|
|
1722
|
-
return pulumi.get(self, "port")
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
@pulumi.output_type
|
|
1726
|
-
class DocumentdbReadReplicaPrivateNetwork(dict):
|
|
1727
|
-
@staticmethod
|
|
1728
|
-
def __key_warning(key: str):
|
|
1729
|
-
suggest = None
|
|
1730
|
-
if key == "privateNetworkId":
|
|
1731
|
-
suggest = "private_network_id"
|
|
1732
|
-
elif key == "endpointId":
|
|
1733
|
-
suggest = "endpoint_id"
|
|
1734
|
-
elif key == "serviceIp":
|
|
1735
|
-
suggest = "service_ip"
|
|
1736
|
-
|
|
1737
|
-
if suggest:
|
|
1738
|
-
pulumi.log.warn(f"Key '{key}' not found in DocumentdbReadReplicaPrivateNetwork. Access the value via the '{suggest}' property getter instead.")
|
|
1739
|
-
|
|
1740
|
-
def __getitem__(self, key: str) -> Any:
|
|
1741
|
-
DocumentdbReadReplicaPrivateNetwork.__key_warning(key)
|
|
1742
|
-
return super().__getitem__(key)
|
|
1743
|
-
|
|
1744
|
-
def get(self, key: str, default = None) -> Any:
|
|
1745
|
-
DocumentdbReadReplicaPrivateNetwork.__key_warning(key)
|
|
1746
|
-
return super().get(key, default)
|
|
1747
|
-
|
|
1748
|
-
def __init__(__self__, *,
|
|
1749
|
-
private_network_id: str,
|
|
1750
|
-
endpoint_id: Optional[str] = None,
|
|
1751
|
-
hostname: Optional[str] = None,
|
|
1752
|
-
ip: Optional[str] = None,
|
|
1753
|
-
name: Optional[str] = None,
|
|
1754
|
-
port: Optional[int] = None,
|
|
1755
|
-
service_ip: Optional[str] = None,
|
|
1756
|
-
zone: Optional[str] = None):
|
|
1757
|
-
"""
|
|
1758
|
-
:param str private_network_id: UUID of the private network to be connected to the read replica.
|
|
1759
|
-
:param str endpoint_id: The ID of the endpoint of the read replica.
|
|
1760
|
-
:param str hostname: Hostname of the endpoint. Only one of ip and hostname may be set.
|
|
1761
|
-
:param str ip: IPv4 address of the endpoint (IP address). Only one of ip and hostname may be set.
|
|
1762
|
-
:param str name: Name of the endpoint.
|
|
1763
|
-
:param int port: TCP port of the endpoint.
|
|
1764
|
-
:param str service_ip: The IP network address within the private subnet. This must be an IPv4 address with a
|
|
1765
|
-
CIDR notation. The IP network address within the private subnet is determined by the IP Address Management (IPAM)
|
|
1766
|
-
service if not set.
|
|
1767
|
-
:param str zone: Private network zone
|
|
1768
|
-
"""
|
|
1769
|
-
pulumi.set(__self__, "private_network_id", private_network_id)
|
|
1770
|
-
if endpoint_id is not None:
|
|
1771
|
-
pulumi.set(__self__, "endpoint_id", endpoint_id)
|
|
1772
|
-
if hostname is not None:
|
|
1773
|
-
pulumi.set(__self__, "hostname", hostname)
|
|
1774
|
-
if ip is not None:
|
|
1775
|
-
pulumi.set(__self__, "ip", ip)
|
|
1776
|
-
if name is not None:
|
|
1777
|
-
pulumi.set(__self__, "name", name)
|
|
1778
|
-
if port is not None:
|
|
1779
|
-
pulumi.set(__self__, "port", port)
|
|
1780
|
-
if service_ip is not None:
|
|
1781
|
-
pulumi.set(__self__, "service_ip", service_ip)
|
|
1782
|
-
if zone is not None:
|
|
1783
|
-
pulumi.set(__self__, "zone", zone)
|
|
1784
|
-
|
|
1785
|
-
@property
|
|
1786
|
-
@pulumi.getter(name="privateNetworkId")
|
|
1787
|
-
def private_network_id(self) -> str:
|
|
1788
|
-
"""
|
|
1789
|
-
UUID of the private network to be connected to the read replica.
|
|
1790
|
-
"""
|
|
1791
|
-
return pulumi.get(self, "private_network_id")
|
|
1792
|
-
|
|
1793
|
-
@property
|
|
1794
|
-
@pulumi.getter(name="endpointId")
|
|
1795
|
-
def endpoint_id(self) -> Optional[str]:
|
|
1796
|
-
"""
|
|
1797
|
-
The ID of the endpoint of the read replica.
|
|
1798
|
-
"""
|
|
1799
|
-
return pulumi.get(self, "endpoint_id")
|
|
1800
|
-
|
|
1801
|
-
@property
|
|
1802
|
-
@pulumi.getter
|
|
1803
|
-
def hostname(self) -> Optional[str]:
|
|
1804
|
-
"""
|
|
1805
|
-
Hostname of the endpoint. Only one of ip and hostname may be set.
|
|
1806
|
-
"""
|
|
1807
|
-
return pulumi.get(self, "hostname")
|
|
1808
|
-
|
|
1809
|
-
@property
|
|
1810
|
-
@pulumi.getter
|
|
1811
|
-
def ip(self) -> Optional[str]:
|
|
1812
|
-
"""
|
|
1813
|
-
IPv4 address of the endpoint (IP address). Only one of ip and hostname may be set.
|
|
1814
|
-
"""
|
|
1815
|
-
return pulumi.get(self, "ip")
|
|
1816
|
-
|
|
1817
|
-
@property
|
|
1818
|
-
@pulumi.getter
|
|
1819
|
-
def name(self) -> Optional[str]:
|
|
1820
|
-
"""
|
|
1821
|
-
Name of the endpoint.
|
|
1822
|
-
"""
|
|
1823
|
-
return pulumi.get(self, "name")
|
|
1824
|
-
|
|
1825
|
-
@property
|
|
1826
|
-
@pulumi.getter
|
|
1827
|
-
def port(self) -> Optional[int]:
|
|
1828
|
-
"""
|
|
1829
|
-
TCP port of the endpoint.
|
|
1830
|
-
"""
|
|
1831
|
-
return pulumi.get(self, "port")
|
|
1832
|
-
|
|
1833
|
-
@property
|
|
1834
|
-
@pulumi.getter(name="serviceIp")
|
|
1835
|
-
def service_ip(self) -> Optional[str]:
|
|
1836
|
-
"""
|
|
1837
|
-
The IP network address within the private subnet. This must be an IPv4 address with a
|
|
1838
|
-
CIDR notation. The IP network address within the private subnet is determined by the IP Address Management (IPAM)
|
|
1839
|
-
service if not set.
|
|
1840
|
-
"""
|
|
1841
|
-
return pulumi.get(self, "service_ip")
|
|
1842
|
-
|
|
1843
|
-
@property
|
|
1844
|
-
@pulumi.getter
|
|
1845
|
-
def zone(self) -> Optional[str]:
|
|
1846
|
-
"""
|
|
1847
|
-
Private network zone
|
|
1848
|
-
"""
|
|
1849
|
-
return pulumi.get(self, "zone")
|
|
1850
|
-
|
|
1851
|
-
|
|
1852
1531
|
@pulumi.output_type
|
|
1853
1532
|
class DomainRecordGeoIp(dict):
|
|
1854
1533
|
def __init__(__self__, *,
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
pulumiverse_scaleway/__init__.py,sha256=
|
|
2
|
-
pulumiverse_scaleway/_inputs.py,sha256=
|
|
1
|
+
pulumiverse_scaleway/__init__.py,sha256=yAcj7PU-8vXOJWbx5BSvYZLJt9D1Al5xoI3iAOHyYt0,25496
|
|
2
|
+
pulumiverse_scaleway/_inputs.py,sha256=CJkBzu8YG49NXAUB_PxUMAF9FEX0C4WgN7up7aaUais,315773
|
|
3
3
|
pulumiverse_scaleway/_utilities.py,sha256=6DPa1R8ih1x1D-UsJffEAW__gR8apXT9AVlozHhV3dE,10537
|
|
4
4
|
pulumiverse_scaleway/account_project.py,sha256=E4YNmkyc0wQJ8aE3Bdixjwrj054JSc8vkFbzLzRyqk8,12589
|
|
5
5
|
pulumiverse_scaleway/account_ssh_key.py,sha256=ZI_cW_eM6piT0UJTd2P5fASzRnk-zkJyPRO0WWIDFTw,17481
|
|
@@ -8,7 +8,7 @@ pulumiverse_scaleway/baremetal_server.py,sha256=R5HhA_Jh0jptoPdvYEP4mn4ugbKSHWzu
|
|
|
8
8
|
pulumiverse_scaleway/block_snapshot.py,sha256=5KRJjvwp7Kzu7wesw51W-UE6_9ls2X30Q1ZnaMJiXzU,15961
|
|
9
9
|
pulumiverse_scaleway/block_volume.py,sha256=gSD2_4QYRTfeH_hyyxSwEcZIfp1LsL7EeEl24FlGR4w,21752
|
|
10
10
|
pulumiverse_scaleway/cockpit.py,sha256=LwKTPo1OEp94imrlVtVlInWjmUsQJvLbMwSM5v_UumY,13295
|
|
11
|
-
pulumiverse_scaleway/cockpit_alert_manager.py,sha256=
|
|
11
|
+
pulumiverse_scaleway/cockpit_alert_manager.py,sha256=S0-xLe1HZli234rAQamGL1hrCUv_ZG3fwo7OdySN44Y,19196
|
|
12
12
|
pulumiverse_scaleway/cockpit_grafana_user.py,sha256=OUZW6YctUQ1S8n8t5ZW-2zbS9Ufl03u4GY3ijXt9Rkk,14138
|
|
13
13
|
pulumiverse_scaleway/cockpit_source.py,sha256=Inthzd2fRu1N89lugq0rdeL8Tf-ObGdcks0ge4DV4nw,21168
|
|
14
14
|
pulumiverse_scaleway/cockpit_token.py,sha256=an7fo6gaNyxk84Wi8uGxHq0lQYVwAud68wbLeaiauTQ,18729
|
|
@@ -25,12 +25,6 @@ pulumiverse_scaleway/database_instance.py,sha256=8eoVBs7H84rD0pjg7pQd4wcbyIvXNqJ
|
|
|
25
25
|
pulumiverse_scaleway/database_privilege.py,sha256=sRaJgIG9SYmSZR2-UULFpp4GGIPG-8f7FMRs2Tjpgy0,16765
|
|
26
26
|
pulumiverse_scaleway/database_read_replica.py,sha256=vzpQbumjzH432cIgUex1c-eHN24v83SaIbL21jS89sc,22042
|
|
27
27
|
pulumiverse_scaleway/database_user.py,sha256=2CxBfon3wVTSGh23Y2cqvezBe5VoGj5tykz8YzjcOfU,16554
|
|
28
|
-
pulumiverse_scaleway/documentdb_database.py,sha256=L8FLuZbYjdz669aP6N9yzX0n8oNlwEXyc263zw-nrQE,16607
|
|
29
|
-
pulumiverse_scaleway/documentdb_instance.py,sha256=nd95o-mEQDVriCQIQPqNY0FY9HJVlujptuEA-kOyoMU,35108
|
|
30
|
-
pulumiverse_scaleway/documentdb_private_network_endpoint.py,sha256=_wsN0W192h65C905wFx8oIlWPu7F6QlPE9t6CqVC1jU,15015
|
|
31
|
-
pulumiverse_scaleway/documentdb_privilege.py,sha256=LRDGRBmkrYQ8o4dBPfr5y2CWg1cKgC2GrUQIyNXEoQQ,15810
|
|
32
|
-
pulumiverse_scaleway/documentdb_read_replica.py,sha256=OEKe8YER1PWFVc3eA_WrVGXQCa3kpl2JMnYH0ZJupL4,17476
|
|
33
|
-
pulumiverse_scaleway/documentdb_user.py,sha256=PTa9VTNiCNoMRzmW39-mrlTC531lxm3k4X2RIsZFntw,16377
|
|
34
28
|
pulumiverse_scaleway/domain_record.py,sha256=cvlOQFdHalhypTTsun7OWw9J-kikurPuOgTtpHJMTLs,45687
|
|
35
29
|
pulumiverse_scaleway/domain_zone.py,sha256=n2Dl3LHzmHAsH9DX-7x8ZfDmgQbwTWdQRSJwA_MrW_Q,16714
|
|
36
30
|
pulumiverse_scaleway/flexible_ip.py,sha256=Fgfkv2WufpZtT48mpbtipbQPahyFxQ2sD3XczdZPCX8,25961
|
|
@@ -62,9 +56,6 @@ pulumiverse_scaleway/get_database_acl.py,sha256=EtlKA_amQF3osvONskJNUOIYz3sgoKK_
|
|
|
62
56
|
pulumiverse_scaleway/get_database_backup.py,sha256=FM3-ZxDZxpec62oEmbhNAkit-1TCDrCZRt7XPn8MlFU,10405
|
|
63
57
|
pulumiverse_scaleway/get_database_instance.py,sha256=6xyVl-96HEiJVRiJPBe-DJn31pUueN0h3sUxjBsJzNU,18942
|
|
64
58
|
pulumiverse_scaleway/get_database_privilege.py,sha256=cI0LMzhntg0iHFYm1XYmRm7fcOWldW0k8m1FabhCz30,7314
|
|
65
|
-
pulumiverse_scaleway/get_documentdb_database.py,sha256=Ny5Q3JM4rzI8s058Et93tw-XOp90__Nz3I3j9LkVRJ0,7279
|
|
66
|
-
pulumiverse_scaleway/get_documentdb_instance.py,sha256=HBIXkr_1TDIFx0sHASNTUxEE2PhdgwapDhaY2QCOeQY,10564
|
|
67
|
-
pulumiverse_scaleway/get_documentdb_load_balancer_endpoint.py,sha256=cNG2Gfg8Z7g7eir6TG32LXfSrTxABq_5H4gr2FhGyCo,8668
|
|
68
59
|
pulumiverse_scaleway/get_domain_record.py,sha256=JLHzAsLn70Q6BlZ4BHbg8wecBlHE_dvTnF7_PC6hTro,14938
|
|
69
60
|
pulumiverse_scaleway/get_domain_zone.py,sha256=SQZN2hA1Hepr3PwH6To5rZyc9Ri5QlA6tiroa24A-6c,7865
|
|
70
61
|
pulumiverse_scaleway/get_flexible_ip.py,sha256=SN4OKjLwD5NRJijf3F1UlUC-n0BA6pc6-j8cmpSHA70,9944
|
|
@@ -79,7 +70,7 @@ pulumiverse_scaleway/get_iam_user.py,sha256=k90sJKXTi2Ftn78FT4vRbJVX25RBSTIJ7lgV
|
|
|
79
70
|
pulumiverse_scaleway/get_instance_image.py,sha256=P7XvMqJSYY01zfOvjcKdyDJ_vEFQScd6BWPhqyTcRH8,13054
|
|
80
71
|
pulumiverse_scaleway/get_instance_ip.py,sha256=n0wVT0Amj7sCNFxnvC7927ROFoPtRkYboSLnL22ECoQ,7456
|
|
81
72
|
pulumiverse_scaleway/get_instance_placement_group.py,sha256=uEooaftFK-yyCVcU_1PQiIRyjePpgriuPbTeCls0MLc,9417
|
|
82
|
-
pulumiverse_scaleway/get_instance_private_nic.py,sha256=
|
|
73
|
+
pulumiverse_scaleway/get_instance_private_nic.py,sha256=1apEIMhBM5QSbmrAYGF4g2YVeiWejhkMPrjghbMhVmY,9974
|
|
83
74
|
pulumiverse_scaleway/get_instance_security_group.py,sha256=pRuFyHNMorLE3QN0EozaarKOyR5vRDWqv9y5_Mec2tI,12496
|
|
84
75
|
pulumiverse_scaleway/get_instance_server.py,sha256=GONi4DlfOiPGqwqhyslktRvKbDGN-FRsFNH7FXGsUxY,22254
|
|
85
76
|
pulumiverse_scaleway/get_instance_servers.py,sha256=N8yKv3X7FFNDVTmkRLpCkKGK_AaK5BPtw07JgnCm1Pc,7188
|
|
@@ -111,6 +102,7 @@ pulumiverse_scaleway/get_object_bucket.py,sha256=qy4xH4S4V4G85UqU_XSH5JzFcc2QOFp
|
|
|
111
102
|
pulumiverse_scaleway/get_object_bucket_policy.py,sha256=uZn6WNmFr0_AgdYkllLN7CK3wfKlCWA4ORLw7D1hN6M,6293
|
|
112
103
|
pulumiverse_scaleway/get_redis_cluster.py,sha256=ge4tA0FHHoqdgCFmSnz7KKFhrDYxkZAf-EGfM6ovw6s,13997
|
|
113
104
|
pulumiverse_scaleway/get_registry_image.py,sha256=OgPz7WxGbiRaswIp6H_KMW1Bm3yJDC1QQo74fdhuh3U,9639
|
|
105
|
+
pulumiverse_scaleway/get_registry_image_tag.py,sha256=nDL11suHIVvYcPl4eY1xaKNQophrShYfquWcGlmi5EI,9292
|
|
114
106
|
pulumiverse_scaleway/get_registry_namespace.py,sha256=oc7kuKSlFao3pXytQCr2GQVmozNsfwbK4l5WQ6U_lmQ,8187
|
|
115
107
|
pulumiverse_scaleway/get_secret.py,sha256=N_hgoRks-qZZNDLEv7NjKs0VBs18hg5Y1cyJA54_2FI,14095
|
|
116
108
|
pulumiverse_scaleway/get_secret_version.py,sha256=K-sNkCYl6W0rGIjzL5R7xhyQ9Ap_tZtEu2miz8lh380,15126
|
|
@@ -138,7 +130,7 @@ pulumiverse_scaleway/instance_image.py,sha256=8zfZncK-CnglWjeOow3omD08hH8tylOmLW
|
|
|
138
130
|
pulumiverse_scaleway/instance_ip.py,sha256=BWfgB3eu817qYvHl-KiyZobtLrAy6Aw4IGq1XNxw2sY,19084
|
|
139
131
|
pulumiverse_scaleway/instance_ip_reverse_dns.py,sha256=YcJVXZJZNTreei2oBoQQQqXGOo1KCMe35hAfpPMMU_k,10938
|
|
140
132
|
pulumiverse_scaleway/instance_placement_group.py,sha256=MFMit29D_GR3CR1WDXDFbZRTUg-ja9gZohZEhS0J1Lc,21522
|
|
141
|
-
pulumiverse_scaleway/instance_private_nic.py,sha256=
|
|
133
|
+
pulumiverse_scaleway/instance_private_nic.py,sha256=sfgvywxZqS_NraKPmmYWKXc-Tm33nqmMOBa25mnE5wE,22228
|
|
142
134
|
pulumiverse_scaleway/instance_security_group.py,sha256=ZAGUmOZ_TfoIqyNLM79XwwRWIN_8M7TY1spDOsrnJoI,36463
|
|
143
135
|
pulumiverse_scaleway/instance_security_group_rules.py,sha256=fTtpJb-1C-3v8KuifuAI-kO2A07X4-1uCnSgHyvmy3U,20598
|
|
144
136
|
pulumiverse_scaleway/instance_server.py,sha256=SKUWesCuivSzxT2yvkdZbQcorrEHSREp2FsZTWd6idk,98443
|
|
@@ -176,9 +168,9 @@ pulumiverse_scaleway/object_bucket_lock_configuration.py,sha256=dGlZSNqhU9ZVAov7
|
|
|
176
168
|
pulumiverse_scaleway/object_bucket_policy.py,sha256=GxGiWrEevynIea2zuGVLm9KTPdIN3LYy4KaoEN0CuMg,25181
|
|
177
169
|
pulumiverse_scaleway/object_bucket_website_configuration.py,sha256=WU1OVhYpVZz9UYhbCH-Hv8_odRTBkb5OoGoVkoTUccc,23900
|
|
178
170
|
pulumiverse_scaleway/object_item.py,sha256=bGt9KrQkEYrvZqhfl_8OdPUElGFQ9cu5SKqIOrXvdmQ,31011
|
|
179
|
-
pulumiverse_scaleway/outputs.py,sha256=
|
|
171
|
+
pulumiverse_scaleway/outputs.py,sha256=t8_6LgysUiWEetytkNDuGBQVkIsMk00vb7FH6VXVXXo,401065
|
|
180
172
|
pulumiverse_scaleway/provider.py,sha256=peWeLAx4wsEDPL35OtX2F5JKvy1SDcIAjyNwBA-VLW0,12821
|
|
181
|
-
pulumiverse_scaleway/pulumi-plugin.json,sha256=
|
|
173
|
+
pulumiverse_scaleway/pulumi-plugin.json,sha256=8iBtY49tv4s9SCqmTQlnVHGiNyZ83OhANipiIxn5h2Y,136
|
|
182
174
|
pulumiverse_scaleway/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
183
175
|
pulumiverse_scaleway/redis_cluster.py,sha256=g30_Gfl9YKsRegXj0BE4K6SWfhhweWOcTqoweAaoC5k,53091
|
|
184
176
|
pulumiverse_scaleway/registry_namespace.py,sha256=d_zZrGqutVEIdjORSO0WzrBI0Jlwy5H4hNxyX-eHRCQ,17828
|
|
@@ -202,7 +194,7 @@ pulumiverse_scaleway/webhosting.py,sha256=ITSACl6FDSRz0_YPJhtiEVfnKiWeIRGGvgfsuw
|
|
|
202
194
|
pulumiverse_scaleway/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
203
195
|
pulumiverse_scaleway/config/__init__.pyi,sha256=BHsZ5qXz88BMFi_l7oW5X1wTGLrA-F2BGKK1orsUZCM,1036
|
|
204
196
|
pulumiverse_scaleway/config/vars.py,sha256=kOAHH8xWWS2SXrnyuSDW0mJbWUok5L_42GjO_lmbqXo,2129
|
|
205
|
-
pulumiverse_scaleway-1.
|
|
206
|
-
pulumiverse_scaleway-1.
|
|
207
|
-
pulumiverse_scaleway-1.
|
|
208
|
-
pulumiverse_scaleway-1.
|
|
197
|
+
pulumiverse_scaleway-1.19.0a1730362099.dist-info/METADATA,sha256=nwsDrYwAu_LNAaso67F9H4Nk9o1Xy8bjeFx-X6OZHh4,1644
|
|
198
|
+
pulumiverse_scaleway-1.19.0a1730362099.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
|
|
199
|
+
pulumiverse_scaleway-1.19.0a1730362099.dist-info/top_level.txt,sha256=nZh5pqyc9FpoAll32zwyBXyAUg_m-XQXqk_YOJ5Ih2g,21
|
|
200
|
+
pulumiverse_scaleway-1.19.0a1730362099.dist-info/RECORD,,
|