pulumi-gcp 8.17.0a1738090062__py3-none-any.whl → 8.17.0a1738349438__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_gcp/__init__.py +91 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/apigee/_inputs.py +91 -0
- pulumi_gcp/apigee/endpoint_attachment.py +0 -64
- pulumi_gcp/apigee/environment.py +54 -0
- pulumi_gcp/apigee/outputs.py +54 -0
- pulumi_gcp/apihub/__init__.py +10 -0
- pulumi_gcp/apihub/_inputs.py +154 -0
- pulumi_gcp/apihub/api_hub_instance.py +784 -0
- pulumi_gcp/apihub/outputs.py +124 -0
- pulumi_gcp/chronicle/__init__.py +1 -0
- pulumi_gcp/chronicle/_inputs.py +124 -0
- pulumi_gcp/chronicle/outputs.py +112 -0
- pulumi_gcp/chronicle/retrohunt.py +645 -0
- pulumi_gcp/cloudrunv2/_inputs.py +197 -0
- pulumi_gcp/cloudrunv2/get_service.py +12 -1
- pulumi_gcp/cloudrunv2/outputs.py +256 -0
- pulumi_gcp/cloudrunv2/service.py +159 -0
- pulumi_gcp/colab/__init__.py +5 -0
- pulumi_gcp/colab/_inputs.py +131 -0
- pulumi_gcp/colab/get_runtime_template_iam_policy.py +182 -0
- pulumi_gcp/colab/outputs.py +92 -0
- pulumi_gcp/colab/runtime.py +696 -0
- pulumi_gcp/colab/runtime_template_iam_binding.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_member.py +828 -0
- pulumi_gcp/colab/runtime_template_iam_policy.py +667 -0
- pulumi_gcp/compute/__init__.py +4 -0
- pulumi_gcp/compute/_inputs.py +526 -0
- pulumi_gcp/compute/firewall_policy_rule.py +104 -22
- pulumi_gcp/compute/firewall_policy_with_rules.py +114 -42
- pulumi_gcp/compute/get_instance_template_iam_policy.py +159 -0
- pulumi_gcp/compute/instance_template_iam_binding.py +998 -0
- pulumi_gcp/compute/instance_template_iam_member.py +998 -0
- pulumi_gcp/compute/instance_template_iam_policy.py +817 -0
- pulumi_gcp/compute/interconnect_attachment.py +189 -2
- pulumi_gcp/compute/network_firewall_policy_rule.py +122 -10
- pulumi_gcp/compute/network_firewall_policy_with_rules.py +116 -44
- pulumi_gcp/compute/outputs.py +352 -0
- pulumi_gcp/compute/project_metadata_item.py +12 -0
- pulumi_gcp/compute/public_advertised_prefix.py +87 -0
- pulumi_gcp/compute/region_network_firewall_policy_rule.py +130 -10
- pulumi_gcp/compute/region_network_firewall_policy_with_rules.py +104 -32
- pulumi_gcp/compute/router_peer.py +115 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/gemini/code_repository_index.py +29 -33
- pulumi_gcp/gemini/get_repository_group_iam_policy.py +28 -2
- pulumi_gcp/gemini/repository_group.py +76 -26
- pulumi_gcp/gemini/repository_group_iam_binding.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_member.py +258 -0
- pulumi_gcp/gemini/repository_group_iam_policy.py +258 -0
- pulumi_gcp/kms/__init__.py +1 -0
- pulumi_gcp/kms/get_key_handles.py +172 -0
- pulumi_gcp/kms/outputs.py +45 -0
- pulumi_gcp/networksecurity/_inputs.py +72 -0
- pulumi_gcp/networksecurity/outputs.py +76 -0
- pulumi_gcp/networksecurity/security_profile.py +233 -7
- pulumi_gcp/networksecurity/security_profile_group.py +218 -0
- pulumi_gcp/organizations/__init__.py +1 -0
- pulumi_gcp/organizations/get_s.py +128 -0
- pulumi_gcp/organizations/outputs.py +63 -0
- pulumi_gcp/parametermanager/__init__.py +3 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +210 -0
- pulumi_gcp/parametermanager/parameter_version.py +496 -0
- pulumi_gcp/parametermanager/regional_parameter_version.py +10 -38
- pulumi_gcp/provider.py +20 -0
- pulumi_gcp/pubsub/_inputs.py +213 -1
- pulumi_gcp/pubsub/outputs.py +278 -2
- pulumi_gcp/pubsub/topic.py +42 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/redis/__init__.py +1 -0
- pulumi_gcp/redis/_inputs.py +342 -6
- pulumi_gcp/redis/cluster.py +223 -102
- pulumi_gcp/redis/cluster_user_created_connections.py +845 -0
- pulumi_gcp/redis/outputs.py +268 -4
- {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/RECORD +83 -63
- {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738090062.dist-info → pulumi_gcp-8.17.0a1738349438.dist-info}/top_level.txt +0 -0
pulumi_gcp/pubsub/_inputs.py
CHANGED
@@ -59,6 +59,8 @@ __all__ = [
|
|
59
59
|
'TopicIngestionDataSourceSettingsArgsDict',
|
60
60
|
'TopicIngestionDataSourceSettingsAwsKinesisArgs',
|
61
61
|
'TopicIngestionDataSourceSettingsAwsKinesisArgsDict',
|
62
|
+
'TopicIngestionDataSourceSettingsAzureEventHubsArgs',
|
63
|
+
'TopicIngestionDataSourceSettingsAzureEventHubsArgsDict',
|
62
64
|
'TopicIngestionDataSourceSettingsCloudStorageArgs',
|
63
65
|
'TopicIngestionDataSourceSettingsCloudStorageArgsDict',
|
64
66
|
'TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs',
|
@@ -1508,6 +1510,11 @@ if not MYPY:
|
|
1508
1510
|
Settings for ingestion from Amazon Kinesis Data Streams.
|
1509
1511
|
Structure is documented below.
|
1510
1512
|
"""
|
1513
|
+
azure_event_hubs: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsAzureEventHubsArgsDict']]
|
1514
|
+
"""
|
1515
|
+
Settings for ingestion from Azure Event Hubs.
|
1516
|
+
Structure is documented below.
|
1517
|
+
"""
|
1511
1518
|
cloud_storage: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgsDict']]
|
1512
1519
|
"""
|
1513
1520
|
Settings for ingestion from Cloud Storage.
|
@@ -1526,11 +1533,14 @@ elif False:
|
|
1526
1533
|
class TopicIngestionDataSourceSettingsArgs:
|
1527
1534
|
def __init__(__self__, *,
|
1528
1535
|
aws_kinesis: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']] = None,
|
1536
|
+
azure_event_hubs: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAzureEventHubsArgs']] = None,
|
1529
1537
|
cloud_storage: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs']] = None,
|
1530
1538
|
platform_logs_settings: Optional[pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs']] = None):
|
1531
1539
|
"""
|
1532
1540
|
:param pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs'] aws_kinesis: Settings for ingestion from Amazon Kinesis Data Streams.
|
1533
1541
|
Structure is documented below.
|
1542
|
+
:param pulumi.Input['TopicIngestionDataSourceSettingsAzureEventHubsArgs'] azure_event_hubs: Settings for ingestion from Azure Event Hubs.
|
1543
|
+
Structure is documented below.
|
1534
1544
|
:param pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs'] cloud_storage: Settings for ingestion from Cloud Storage.
|
1535
1545
|
Structure is documented below.
|
1536
1546
|
:param pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs'] platform_logs_settings: Settings for Platform Logs regarding ingestion to Pub/Sub. If unset,
|
@@ -1539,6 +1549,8 @@ class TopicIngestionDataSourceSettingsArgs:
|
|
1539
1549
|
"""
|
1540
1550
|
if aws_kinesis is not None:
|
1541
1551
|
pulumi.set(__self__, "aws_kinesis", aws_kinesis)
|
1552
|
+
if azure_event_hubs is not None:
|
1553
|
+
pulumi.set(__self__, "azure_event_hubs", azure_event_hubs)
|
1542
1554
|
if cloud_storage is not None:
|
1543
1555
|
pulumi.set(__self__, "cloud_storage", cloud_storage)
|
1544
1556
|
if platform_logs_settings is not None:
|
@@ -1557,6 +1569,19 @@ class TopicIngestionDataSourceSettingsArgs:
|
|
1557
1569
|
def aws_kinesis(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']]):
|
1558
1570
|
pulumi.set(self, "aws_kinesis", value)
|
1559
1571
|
|
1572
|
+
@property
|
1573
|
+
@pulumi.getter(name="azureEventHubs")
|
1574
|
+
def azure_event_hubs(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsAzureEventHubsArgs']]:
|
1575
|
+
"""
|
1576
|
+
Settings for ingestion from Azure Event Hubs.
|
1577
|
+
Structure is documented below.
|
1578
|
+
"""
|
1579
|
+
return pulumi.get(self, "azure_event_hubs")
|
1580
|
+
|
1581
|
+
@azure_event_hubs.setter
|
1582
|
+
def azure_event_hubs(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAzureEventHubsArgs']]):
|
1583
|
+
pulumi.set(self, "azure_event_hubs", value)
|
1584
|
+
|
1560
1585
|
@property
|
1561
1586
|
@pulumi.getter(name="cloudStorage")
|
1562
1587
|
def cloud_storage(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs']]:
|
@@ -1694,6 +1719,164 @@ class TopicIngestionDataSourceSettingsAwsKinesisArgs:
|
|
1694
1719
|
pulumi.set(self, "stream_arn", value)
|
1695
1720
|
|
1696
1721
|
|
1722
|
+
if not MYPY:
|
1723
|
+
class TopicIngestionDataSourceSettingsAzureEventHubsArgsDict(TypedDict):
|
1724
|
+
client_id: NotRequired[pulumi.Input[str]]
|
1725
|
+
"""
|
1726
|
+
The Azure event hub client ID to use for ingestion.
|
1727
|
+
"""
|
1728
|
+
event_hub: NotRequired[pulumi.Input[str]]
|
1729
|
+
"""
|
1730
|
+
The Azure event hub to ingest data from.
|
1731
|
+
"""
|
1732
|
+
gcp_service_account: NotRequired[pulumi.Input[str]]
|
1733
|
+
"""
|
1734
|
+
The GCP service account to be used for Federated Identity authentication
|
1735
|
+
with Azure (via a `AssumeRoleWithWebIdentity` call for the provided
|
1736
|
+
role).
|
1737
|
+
"""
|
1738
|
+
namespace: NotRequired[pulumi.Input[str]]
|
1739
|
+
"""
|
1740
|
+
The Azure event hub namespace to ingest data from.
|
1741
|
+
"""
|
1742
|
+
resource_group: NotRequired[pulumi.Input[str]]
|
1743
|
+
"""
|
1744
|
+
The name of the resource group within an Azure subscription.
|
1745
|
+
"""
|
1746
|
+
subscription_id: NotRequired[pulumi.Input[str]]
|
1747
|
+
"""
|
1748
|
+
The Azure event hub subscription ID to use for ingestion.
|
1749
|
+
"""
|
1750
|
+
tenant_id: NotRequired[pulumi.Input[str]]
|
1751
|
+
"""
|
1752
|
+
The Azure event hub tenant ID to use for ingestion.
|
1753
|
+
"""
|
1754
|
+
elif False:
|
1755
|
+
TopicIngestionDataSourceSettingsAzureEventHubsArgsDict: TypeAlias = Mapping[str, Any]
|
1756
|
+
|
1757
|
+
@pulumi.input_type
|
1758
|
+
class TopicIngestionDataSourceSettingsAzureEventHubsArgs:
|
1759
|
+
def __init__(__self__, *,
|
1760
|
+
client_id: Optional[pulumi.Input[str]] = None,
|
1761
|
+
event_hub: Optional[pulumi.Input[str]] = None,
|
1762
|
+
gcp_service_account: Optional[pulumi.Input[str]] = None,
|
1763
|
+
namespace: Optional[pulumi.Input[str]] = None,
|
1764
|
+
resource_group: Optional[pulumi.Input[str]] = None,
|
1765
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
1766
|
+
tenant_id: Optional[pulumi.Input[str]] = None):
|
1767
|
+
"""
|
1768
|
+
:param pulumi.Input[str] client_id: The Azure event hub client ID to use for ingestion.
|
1769
|
+
:param pulumi.Input[str] event_hub: The Azure event hub to ingest data from.
|
1770
|
+
:param pulumi.Input[str] gcp_service_account: The GCP service account to be used for Federated Identity authentication
|
1771
|
+
with Azure (via a `AssumeRoleWithWebIdentity` call for the provided
|
1772
|
+
role).
|
1773
|
+
:param pulumi.Input[str] namespace: The Azure event hub namespace to ingest data from.
|
1774
|
+
:param pulumi.Input[str] resource_group: The name of the resource group within an Azure subscription.
|
1775
|
+
:param pulumi.Input[str] subscription_id: The Azure event hub subscription ID to use for ingestion.
|
1776
|
+
:param pulumi.Input[str] tenant_id: The Azure event hub tenant ID to use for ingestion.
|
1777
|
+
"""
|
1778
|
+
if client_id is not None:
|
1779
|
+
pulumi.set(__self__, "client_id", client_id)
|
1780
|
+
if event_hub is not None:
|
1781
|
+
pulumi.set(__self__, "event_hub", event_hub)
|
1782
|
+
if gcp_service_account is not None:
|
1783
|
+
pulumi.set(__self__, "gcp_service_account", gcp_service_account)
|
1784
|
+
if namespace is not None:
|
1785
|
+
pulumi.set(__self__, "namespace", namespace)
|
1786
|
+
if resource_group is not None:
|
1787
|
+
pulumi.set(__self__, "resource_group", resource_group)
|
1788
|
+
if subscription_id is not None:
|
1789
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
1790
|
+
if tenant_id is not None:
|
1791
|
+
pulumi.set(__self__, "tenant_id", tenant_id)
|
1792
|
+
|
1793
|
+
@property
|
1794
|
+
@pulumi.getter(name="clientId")
|
1795
|
+
def client_id(self) -> Optional[pulumi.Input[str]]:
|
1796
|
+
"""
|
1797
|
+
The Azure event hub client ID to use for ingestion.
|
1798
|
+
"""
|
1799
|
+
return pulumi.get(self, "client_id")
|
1800
|
+
|
1801
|
+
@client_id.setter
|
1802
|
+
def client_id(self, value: Optional[pulumi.Input[str]]):
|
1803
|
+
pulumi.set(self, "client_id", value)
|
1804
|
+
|
1805
|
+
@property
|
1806
|
+
@pulumi.getter(name="eventHub")
|
1807
|
+
def event_hub(self) -> Optional[pulumi.Input[str]]:
|
1808
|
+
"""
|
1809
|
+
The Azure event hub to ingest data from.
|
1810
|
+
"""
|
1811
|
+
return pulumi.get(self, "event_hub")
|
1812
|
+
|
1813
|
+
@event_hub.setter
|
1814
|
+
def event_hub(self, value: Optional[pulumi.Input[str]]):
|
1815
|
+
pulumi.set(self, "event_hub", value)
|
1816
|
+
|
1817
|
+
@property
|
1818
|
+
@pulumi.getter(name="gcpServiceAccount")
|
1819
|
+
def gcp_service_account(self) -> Optional[pulumi.Input[str]]:
|
1820
|
+
"""
|
1821
|
+
The GCP service account to be used for Federated Identity authentication
|
1822
|
+
with Azure (via a `AssumeRoleWithWebIdentity` call for the provided
|
1823
|
+
role).
|
1824
|
+
"""
|
1825
|
+
return pulumi.get(self, "gcp_service_account")
|
1826
|
+
|
1827
|
+
@gcp_service_account.setter
|
1828
|
+
def gcp_service_account(self, value: Optional[pulumi.Input[str]]):
|
1829
|
+
pulumi.set(self, "gcp_service_account", value)
|
1830
|
+
|
1831
|
+
@property
|
1832
|
+
@pulumi.getter
|
1833
|
+
def namespace(self) -> Optional[pulumi.Input[str]]:
|
1834
|
+
"""
|
1835
|
+
The Azure event hub namespace to ingest data from.
|
1836
|
+
"""
|
1837
|
+
return pulumi.get(self, "namespace")
|
1838
|
+
|
1839
|
+
@namespace.setter
|
1840
|
+
def namespace(self, value: Optional[pulumi.Input[str]]):
|
1841
|
+
pulumi.set(self, "namespace", value)
|
1842
|
+
|
1843
|
+
@property
|
1844
|
+
@pulumi.getter(name="resourceGroup")
|
1845
|
+
def resource_group(self) -> Optional[pulumi.Input[str]]:
|
1846
|
+
"""
|
1847
|
+
The name of the resource group within an Azure subscription.
|
1848
|
+
"""
|
1849
|
+
return pulumi.get(self, "resource_group")
|
1850
|
+
|
1851
|
+
@resource_group.setter
|
1852
|
+
def resource_group(self, value: Optional[pulumi.Input[str]]):
|
1853
|
+
pulumi.set(self, "resource_group", value)
|
1854
|
+
|
1855
|
+
@property
|
1856
|
+
@pulumi.getter(name="subscriptionId")
|
1857
|
+
def subscription_id(self) -> Optional[pulumi.Input[str]]:
|
1858
|
+
"""
|
1859
|
+
The Azure event hub subscription ID to use for ingestion.
|
1860
|
+
"""
|
1861
|
+
return pulumi.get(self, "subscription_id")
|
1862
|
+
|
1863
|
+
@subscription_id.setter
|
1864
|
+
def subscription_id(self, value: Optional[pulumi.Input[str]]):
|
1865
|
+
pulumi.set(self, "subscription_id", value)
|
1866
|
+
|
1867
|
+
@property
|
1868
|
+
@pulumi.getter(name="tenantId")
|
1869
|
+
def tenant_id(self) -> Optional[pulumi.Input[str]]:
|
1870
|
+
"""
|
1871
|
+
The Azure event hub tenant ID to use for ingestion.
|
1872
|
+
"""
|
1873
|
+
return pulumi.get(self, "tenant_id")
|
1874
|
+
|
1875
|
+
@tenant_id.setter
|
1876
|
+
def tenant_id(self, value: Optional[pulumi.Input[str]]):
|
1877
|
+
pulumi.set(self, "tenant_id", value)
|
1878
|
+
|
1879
|
+
|
1697
1880
|
if not MYPY:
|
1698
1881
|
class TopicIngestionDataSourceSettingsCloudStorageArgsDict(TypedDict):
|
1699
1882
|
bucket: pulumi.Input[str]
|
@@ -1978,13 +2161,21 @@ if not MYPY:
|
|
1978
2161
|
allowed regions. An empty list means that no regions are allowed,
|
1979
2162
|
and is not a valid configuration.
|
1980
2163
|
"""
|
2164
|
+
enforce_in_transit: NotRequired[pulumi.Input[bool]]
|
2165
|
+
"""
|
2166
|
+
If true, `allowedPersistenceRegions` is also used to enforce in-transit
|
2167
|
+
guarantees for messages. That is, Pub/Sub will fail topics.publish
|
2168
|
+
operations on this topic and subscribe operations on any subscription
|
2169
|
+
attached to this topic in any region that is not in `allowedPersistenceRegions`.
|
2170
|
+
"""
|
1981
2171
|
elif False:
|
1982
2172
|
TopicMessageStoragePolicyArgsDict: TypeAlias = Mapping[str, Any]
|
1983
2173
|
|
1984
2174
|
@pulumi.input_type
|
1985
2175
|
class TopicMessageStoragePolicyArgs:
|
1986
2176
|
def __init__(__self__, *,
|
1987
|
-
allowed_persistence_regions: pulumi.Input[Sequence[pulumi.Input[str]]]
|
2177
|
+
allowed_persistence_regions: pulumi.Input[Sequence[pulumi.Input[str]]],
|
2178
|
+
enforce_in_transit: Optional[pulumi.Input[bool]] = None):
|
1988
2179
|
"""
|
1989
2180
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_persistence_regions: A list of IDs of GCP regions where messages that are published to
|
1990
2181
|
the topic may be persisted in storage. Messages published by
|
@@ -1992,8 +2183,14 @@ class TopicMessageStoragePolicyArgs:
|
|
1992
2183
|
of GCP altogether) will be routed for storage in one of the
|
1993
2184
|
allowed regions. An empty list means that no regions are allowed,
|
1994
2185
|
and is not a valid configuration.
|
2186
|
+
:param pulumi.Input[bool] enforce_in_transit: If true, `allowedPersistenceRegions` is also used to enforce in-transit
|
2187
|
+
guarantees for messages. That is, Pub/Sub will fail topics.publish
|
2188
|
+
operations on this topic and subscribe operations on any subscription
|
2189
|
+
attached to this topic in any region that is not in `allowedPersistenceRegions`.
|
1995
2190
|
"""
|
1996
2191
|
pulumi.set(__self__, "allowed_persistence_regions", allowed_persistence_regions)
|
2192
|
+
if enforce_in_transit is not None:
|
2193
|
+
pulumi.set(__self__, "enforce_in_transit", enforce_in_transit)
|
1997
2194
|
|
1998
2195
|
@property
|
1999
2196
|
@pulumi.getter(name="allowedPersistenceRegions")
|
@@ -2012,6 +2209,21 @@ class TopicMessageStoragePolicyArgs:
|
|
2012
2209
|
def allowed_persistence_regions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
|
2013
2210
|
pulumi.set(self, "allowed_persistence_regions", value)
|
2014
2211
|
|
2212
|
+
@property
|
2213
|
+
@pulumi.getter(name="enforceInTransit")
|
2214
|
+
def enforce_in_transit(self) -> Optional[pulumi.Input[bool]]:
|
2215
|
+
"""
|
2216
|
+
If true, `allowedPersistenceRegions` is also used to enforce in-transit
|
2217
|
+
guarantees for messages. That is, Pub/Sub will fail topics.publish
|
2218
|
+
operations on this topic and subscribe operations on any subscription
|
2219
|
+
attached to this topic in any region that is not in `allowedPersistenceRegions`.
|
2220
|
+
"""
|
2221
|
+
return pulumi.get(self, "enforce_in_transit")
|
2222
|
+
|
2223
|
+
@enforce_in_transit.setter
|
2224
|
+
def enforce_in_transit(self, value: Optional[pulumi.Input[bool]]):
|
2225
|
+
pulumi.set(self, "enforce_in_transit", value)
|
2226
|
+
|
2015
2227
|
|
2016
2228
|
if not MYPY:
|
2017
2229
|
class TopicSchemaSettingsArgsDict(TypedDict):
|