pulumi-gcp 8.5.0__py3-none-any.whl → 8.5.0a1727969630__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 +0 -24
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/bigtable/gc_policy.py +0 -7
- pulumi_gcp/compute/_inputs.py +15 -299
- pulumi_gcp/compute/backend_service.py +7 -111
- pulumi_gcp/compute/get_backend_service.py +1 -11
- pulumi_gcp/compute/network.py +0 -236
- pulumi_gcp/compute/outputs.py +14 -399
- pulumi_gcp/compute/region_backend_service.py +7 -115
- pulumi_gcp/compute/route.py +0 -92
- pulumi_gcp/compute/subnetwork.py +2 -2
- pulumi_gcp/container/_inputs.py +0 -94
- pulumi_gcp/container/aws_node_pool.py +0 -59
- pulumi_gcp/container/outputs.py +0 -79
- pulumi_gcp/dataproc/__init__.py +0 -1
- pulumi_gcp/dataproc/_inputs.py +0 -1394
- pulumi_gcp/dataproc/outputs.py +0 -1127
- pulumi_gcp/firestore/field.py +4 -4
- pulumi_gcp/gkehub/membership_binding.py +6 -6
- pulumi_gcp/gkehub/membership_rbac_role_binding.py +4 -4
- pulumi_gcp/gkehub/namespace.py +4 -4
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/healthcare/__init__.py +0 -1
- pulumi_gcp/healthcare/_inputs.py +0 -538
- pulumi_gcp/healthcare/outputs.py +0 -467
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- pulumi_gcp/logging/log_scope.py +7 -7
- pulumi_gcp/networkconnectivity/spoke.py +10 -10
- pulumi_gcp/orgpolicy/policy.py +2 -2
- pulumi_gcp/pubsub/_inputs.py +1 -333
- pulumi_gcp/pubsub/outputs.py +2 -410
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +0 -44
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/repository.py +2 -0
- pulumi_gcp/securityposture/posture.py +2 -0
- pulumi_gcp/securityposture/posture_deployment.py +2 -0
- pulumi_gcp/serviceusage/consumer_quota_override.py +2 -0
- pulumi_gcp/siteverification/__init__.py +0 -1
- pulumi_gcp/sourcerepo/get_repository.py +1 -11
- pulumi_gcp/sourcerepo/repository.py +0 -47
- pulumi_gcp/tags/tag_key.py +7 -7
- pulumi_gcp/tags/tag_value.py +7 -7
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/RECORD +49 -52
- pulumi_gcp/dataproc/batch.py +0 -1514
- pulumi_gcp/healthcare/pipeline_job.py +0 -1233
- pulumi_gcp/siteverification/owner.py +0 -398
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.5.0.dist-info → pulumi_gcp-8.5.0a1727969630.dist-info}/top_level.txt +0 -0
@@ -559,15 +559,15 @@ class Spoke(pulumi.CustomResource):
|
|
559
559
|
import pulumi_gcp as gcp
|
560
560
|
|
561
561
|
network = gcp.compute.Network("network",
|
562
|
-
name="tf-test-
|
562
|
+
name="tf-test-network_2067",
|
563
563
|
auto_create_subnetworks=False)
|
564
564
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
565
|
-
name="tf-test-
|
565
|
+
name="tf-test-subnet_40785",
|
566
566
|
ip_cidr_range="10.0.0.0/28",
|
567
567
|
region="us-central1",
|
568
568
|
network=network.self_link)
|
569
569
|
instance = gcp.compute.Instance("instance",
|
570
|
-
name="tf-test-
|
570
|
+
name="tf-test-instance_79169",
|
571
571
|
machine_type="e2-medium",
|
572
572
|
can_ip_forward=True,
|
573
573
|
zone="us-central1-a",
|
@@ -584,13 +584,13 @@ class Spoke(pulumi.CustomResource):
|
|
584
584
|
}],
|
585
585
|
}])
|
586
586
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
587
|
-
name="tf-test-
|
587
|
+
name="tf-test-hub_56529",
|
588
588
|
description="A sample hub",
|
589
589
|
labels={
|
590
590
|
"label-two": "value-one",
|
591
591
|
})
|
592
592
|
primary = gcp.networkconnectivity.Spoke("primary",
|
593
|
-
name="tf-test-
|
593
|
+
name="tf-test-name_75413",
|
594
594
|
location="us-central1",
|
595
595
|
description="A sample spoke with a linked routher appliance instance",
|
596
596
|
labels={
|
@@ -867,15 +867,15 @@ class Spoke(pulumi.CustomResource):
|
|
867
867
|
import pulumi_gcp as gcp
|
868
868
|
|
869
869
|
network = gcp.compute.Network("network",
|
870
|
-
name="tf-test-
|
870
|
+
name="tf-test-network_2067",
|
871
871
|
auto_create_subnetworks=False)
|
872
872
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
873
|
-
name="tf-test-
|
873
|
+
name="tf-test-subnet_40785",
|
874
874
|
ip_cidr_range="10.0.0.0/28",
|
875
875
|
region="us-central1",
|
876
876
|
network=network.self_link)
|
877
877
|
instance = gcp.compute.Instance("instance",
|
878
|
-
name="tf-test-
|
878
|
+
name="tf-test-instance_79169",
|
879
879
|
machine_type="e2-medium",
|
880
880
|
can_ip_forward=True,
|
881
881
|
zone="us-central1-a",
|
@@ -892,13 +892,13 @@ class Spoke(pulumi.CustomResource):
|
|
892
892
|
}],
|
893
893
|
}])
|
894
894
|
basic_hub = gcp.networkconnectivity.Hub("basic_hub",
|
895
|
-
name="tf-test-
|
895
|
+
name="tf-test-hub_56529",
|
896
896
|
description="A sample hub",
|
897
897
|
labels={
|
898
898
|
"label-two": "value-one",
|
899
899
|
})
|
900
900
|
primary = gcp.networkconnectivity.Spoke("primary",
|
901
|
-
name="tf-test-
|
901
|
+
name="tf-test-name_75413",
|
902
902
|
location="us-central1",
|
903
903
|
description="A sample spoke with a linked routher appliance instance",
|
904
904
|
labels={
|
pulumi_gcp/orgpolicy/policy.py
CHANGED
@@ -313,7 +313,7 @@ class Policy(pulumi.CustomResource):
|
|
313
313
|
import pulumi_gcp as gcp
|
314
314
|
|
315
315
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
316
|
-
name="custom.
|
316
|
+
name="custom.disableGkeAutoUpgrade_37559",
|
317
317
|
parent="organizations/123456789",
|
318
318
|
display_name="Disable GKE auto upgrade",
|
319
319
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|
@@ -474,7 +474,7 @@ class Policy(pulumi.CustomResource):
|
|
474
474
|
import pulumi_gcp as gcp
|
475
475
|
|
476
476
|
constraint = gcp.orgpolicy.CustomConstraint("constraint",
|
477
|
-
name="custom.
|
477
|
+
name="custom.disableGkeAutoUpgrade_37559",
|
478
478
|
parent="organizations/123456789",
|
479
479
|
display_name="Disable GKE auto upgrade",
|
480
480
|
description="Only allow GKE NodePool resource to be created or updated if AutoUpgrade is not enabled where this custom constraint is enforced.",
|
pulumi_gcp/pubsub/_inputs.py
CHANGED
@@ -59,16 +59,6 @@ __all__ = [
|
|
59
59
|
'TopicIngestionDataSourceSettingsArgsDict',
|
60
60
|
'TopicIngestionDataSourceSettingsAwsKinesisArgs',
|
61
61
|
'TopicIngestionDataSourceSettingsAwsKinesisArgsDict',
|
62
|
-
'TopicIngestionDataSourceSettingsCloudStorageArgs',
|
63
|
-
'TopicIngestionDataSourceSettingsCloudStorageArgsDict',
|
64
|
-
'TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs',
|
65
|
-
'TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgsDict',
|
66
|
-
'TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs',
|
67
|
-
'TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgsDict',
|
68
|
-
'TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs',
|
69
|
-
'TopicIngestionDataSourceSettingsCloudStorageTextFormatArgsDict',
|
70
|
-
'TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs',
|
71
|
-
'TopicIngestionDataSourceSettingsPlatformLogsSettingsArgsDict',
|
72
62
|
'TopicMessageStoragePolicyArgs',
|
73
63
|
'TopicMessageStoragePolicyArgsDict',
|
74
64
|
'TopicSchemaSettingsArgs',
|
@@ -1508,41 +1498,19 @@ if not MYPY:
|
|
1508
1498
|
Settings for ingestion from Amazon Kinesis Data Streams.
|
1509
1499
|
Structure is documented below.
|
1510
1500
|
"""
|
1511
|
-
cloud_storage: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgsDict']]
|
1512
|
-
"""
|
1513
|
-
Settings for ingestion from Cloud Storage.
|
1514
|
-
Structure is documented below.
|
1515
|
-
"""
|
1516
|
-
platform_logs_settings: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgsDict']]
|
1517
|
-
"""
|
1518
|
-
Settings for Platform Logs regarding ingestion to Pub/Sub. If unset,
|
1519
|
-
no Platform Logs will be generated.'
|
1520
|
-
Structure is documented below.
|
1521
|
-
"""
|
1522
1501
|
elif False:
|
1523
1502
|
TopicIngestionDataSourceSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1524
1503
|
|
1525
1504
|
@pulumi.input_type
|
1526
1505
|
class TopicIngestionDataSourceSettingsArgs:
|
1527
1506
|
def __init__(__self__, *,
|
1528
|
-
aws_kinesis: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']] = None
|
1529
|
-
cloud_storage: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs']] = None,
|
1530
|
-
platform_logs_settings: Optional[pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs']] = None):
|
1507
|
+
aws_kinesis: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']] = None):
|
1531
1508
|
"""
|
1532
1509
|
:param pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs'] aws_kinesis: Settings for ingestion from Amazon Kinesis Data Streams.
|
1533
1510
|
Structure is documented below.
|
1534
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs'] cloud_storage: Settings for ingestion from Cloud Storage.
|
1535
|
-
Structure is documented below.
|
1536
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs'] platform_logs_settings: Settings for Platform Logs regarding ingestion to Pub/Sub. If unset,
|
1537
|
-
no Platform Logs will be generated.'
|
1538
|
-
Structure is documented below.
|
1539
1511
|
"""
|
1540
1512
|
if aws_kinesis is not None:
|
1541
1513
|
pulumi.set(__self__, "aws_kinesis", aws_kinesis)
|
1542
|
-
if cloud_storage is not None:
|
1543
|
-
pulumi.set(__self__, "cloud_storage", cloud_storage)
|
1544
|
-
if platform_logs_settings is not None:
|
1545
|
-
pulumi.set(__self__, "platform_logs_settings", platform_logs_settings)
|
1546
1514
|
|
1547
1515
|
@property
|
1548
1516
|
@pulumi.getter(name="awsKinesis")
|
@@ -1557,33 +1525,6 @@ class TopicIngestionDataSourceSettingsArgs:
|
|
1557
1525
|
def aws_kinesis(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']]):
|
1558
1526
|
pulumi.set(self, "aws_kinesis", value)
|
1559
1527
|
|
1560
|
-
@property
|
1561
|
-
@pulumi.getter(name="cloudStorage")
|
1562
|
-
def cloud_storage(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs']]:
|
1563
|
-
"""
|
1564
|
-
Settings for ingestion from Cloud Storage.
|
1565
|
-
Structure is documented below.
|
1566
|
-
"""
|
1567
|
-
return pulumi.get(self, "cloud_storage")
|
1568
|
-
|
1569
|
-
@cloud_storage.setter
|
1570
|
-
def cloud_storage(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageArgs']]):
|
1571
|
-
pulumi.set(self, "cloud_storage", value)
|
1572
|
-
|
1573
|
-
@property
|
1574
|
-
@pulumi.getter(name="platformLogsSettings")
|
1575
|
-
def platform_logs_settings(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs']]:
|
1576
|
-
"""
|
1577
|
-
Settings for Platform Logs regarding ingestion to Pub/Sub. If unset,
|
1578
|
-
no Platform Logs will be generated.'
|
1579
|
-
Structure is documented below.
|
1580
|
-
"""
|
1581
|
-
return pulumi.get(self, "platform_logs_settings")
|
1582
|
-
|
1583
|
-
@platform_logs_settings.setter
|
1584
|
-
def platform_logs_settings(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs']]):
|
1585
|
-
pulumi.set(self, "platform_logs_settings", value)
|
1586
|
-
|
1587
1528
|
|
1588
1529
|
if not MYPY:
|
1589
1530
|
class TopicIngestionDataSourceSettingsAwsKinesisArgsDict(TypedDict):
|
@@ -1694,279 +1635,6 @@ class TopicIngestionDataSourceSettingsAwsKinesisArgs:
|
|
1694
1635
|
pulumi.set(self, "stream_arn", value)
|
1695
1636
|
|
1696
1637
|
|
1697
|
-
if not MYPY:
|
1698
|
-
class TopicIngestionDataSourceSettingsCloudStorageArgsDict(TypedDict):
|
1699
|
-
bucket: pulumi.Input[str]
|
1700
|
-
"""
|
1701
|
-
Cloud Storage bucket. The bucket name must be without any
|
1702
|
-
prefix like "gs://". See the bucket naming requirements:
|
1703
|
-
https://cloud.google.com/storage/docs/buckets#naming.
|
1704
|
-
"""
|
1705
|
-
avro_format: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgsDict']]
|
1706
|
-
"""
|
1707
|
-
Configuration for reading Cloud Storage data in Avro binary format. The
|
1708
|
-
bytes of each object will be set to the `data` field of a Pub/Sub message.
|
1709
|
-
"""
|
1710
|
-
match_glob: NotRequired[pulumi.Input[str]]
|
1711
|
-
"""
|
1712
|
-
Glob pattern used to match objects that will be ingested. If unset, all
|
1713
|
-
objects will be ingested. See the supported patterns:
|
1714
|
-
https://cloud.google.com/storage/docs/json_api/v1/objects/list#list-objects-and-prefixes-using-glob
|
1715
|
-
"""
|
1716
|
-
minimum_object_create_time: NotRequired[pulumi.Input[str]]
|
1717
|
-
"""
|
1718
|
-
The timestamp set in RFC3339 text format. If set, only objects with a
|
1719
|
-
larger or equal timestamp will be ingested. Unset by default, meaning
|
1720
|
-
all objects will be ingested.
|
1721
|
-
"""
|
1722
|
-
pubsub_avro_format: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgsDict']]
|
1723
|
-
"""
|
1724
|
-
Configuration for reading Cloud Storage data written via Cloud Storage
|
1725
|
-
subscriptions(See https://cloud.google.com/pubsub/docs/cloudstorage). The
|
1726
|
-
data and attributes fields of the originally exported Pub/Sub message
|
1727
|
-
will be restored when publishing.
|
1728
|
-
"""
|
1729
|
-
text_format: NotRequired[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageTextFormatArgsDict']]
|
1730
|
-
"""
|
1731
|
-
Configuration for reading Cloud Storage data in text format. Each line of
|
1732
|
-
text as specified by the delimiter will be set to the `data` field of a
|
1733
|
-
Pub/Sub message.
|
1734
|
-
Structure is documented below.
|
1735
|
-
"""
|
1736
|
-
elif False:
|
1737
|
-
TopicIngestionDataSourceSettingsCloudStorageArgsDict: TypeAlias = Mapping[str, Any]
|
1738
|
-
|
1739
|
-
@pulumi.input_type
|
1740
|
-
class TopicIngestionDataSourceSettingsCloudStorageArgs:
|
1741
|
-
def __init__(__self__, *,
|
1742
|
-
bucket: pulumi.Input[str],
|
1743
|
-
avro_format: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs']] = None,
|
1744
|
-
match_glob: Optional[pulumi.Input[str]] = None,
|
1745
|
-
minimum_object_create_time: Optional[pulumi.Input[str]] = None,
|
1746
|
-
pubsub_avro_format: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs']] = None,
|
1747
|
-
text_format: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs']] = None):
|
1748
|
-
"""
|
1749
|
-
:param pulumi.Input[str] bucket: Cloud Storage bucket. The bucket name must be without any
|
1750
|
-
prefix like "gs://". See the bucket naming requirements:
|
1751
|
-
https://cloud.google.com/storage/docs/buckets#naming.
|
1752
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs'] avro_format: Configuration for reading Cloud Storage data in Avro binary format. The
|
1753
|
-
bytes of each object will be set to the `data` field of a Pub/Sub message.
|
1754
|
-
:param pulumi.Input[str] match_glob: Glob pattern used to match objects that will be ingested. If unset, all
|
1755
|
-
objects will be ingested. See the supported patterns:
|
1756
|
-
https://cloud.google.com/storage/docs/json_api/v1/objects/list#list-objects-and-prefixes-using-glob
|
1757
|
-
:param pulumi.Input[str] minimum_object_create_time: The timestamp set in RFC3339 text format. If set, only objects with a
|
1758
|
-
larger or equal timestamp will be ingested. Unset by default, meaning
|
1759
|
-
all objects will be ingested.
|
1760
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs'] pubsub_avro_format: Configuration for reading Cloud Storage data written via Cloud Storage
|
1761
|
-
subscriptions(See https://cloud.google.com/pubsub/docs/cloudstorage). The
|
1762
|
-
data and attributes fields of the originally exported Pub/Sub message
|
1763
|
-
will be restored when publishing.
|
1764
|
-
:param pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs'] text_format: Configuration for reading Cloud Storage data in text format. Each line of
|
1765
|
-
text as specified by the delimiter will be set to the `data` field of a
|
1766
|
-
Pub/Sub message.
|
1767
|
-
Structure is documented below.
|
1768
|
-
"""
|
1769
|
-
pulumi.set(__self__, "bucket", bucket)
|
1770
|
-
if avro_format is not None:
|
1771
|
-
pulumi.set(__self__, "avro_format", avro_format)
|
1772
|
-
if match_glob is not None:
|
1773
|
-
pulumi.set(__self__, "match_glob", match_glob)
|
1774
|
-
if minimum_object_create_time is not None:
|
1775
|
-
pulumi.set(__self__, "minimum_object_create_time", minimum_object_create_time)
|
1776
|
-
if pubsub_avro_format is not None:
|
1777
|
-
pulumi.set(__self__, "pubsub_avro_format", pubsub_avro_format)
|
1778
|
-
if text_format is not None:
|
1779
|
-
pulumi.set(__self__, "text_format", text_format)
|
1780
|
-
|
1781
|
-
@property
|
1782
|
-
@pulumi.getter
|
1783
|
-
def bucket(self) -> pulumi.Input[str]:
|
1784
|
-
"""
|
1785
|
-
Cloud Storage bucket. The bucket name must be without any
|
1786
|
-
prefix like "gs://". See the bucket naming requirements:
|
1787
|
-
https://cloud.google.com/storage/docs/buckets#naming.
|
1788
|
-
"""
|
1789
|
-
return pulumi.get(self, "bucket")
|
1790
|
-
|
1791
|
-
@bucket.setter
|
1792
|
-
def bucket(self, value: pulumi.Input[str]):
|
1793
|
-
pulumi.set(self, "bucket", value)
|
1794
|
-
|
1795
|
-
@property
|
1796
|
-
@pulumi.getter(name="avroFormat")
|
1797
|
-
def avro_format(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs']]:
|
1798
|
-
"""
|
1799
|
-
Configuration for reading Cloud Storage data in Avro binary format. The
|
1800
|
-
bytes of each object will be set to the `data` field of a Pub/Sub message.
|
1801
|
-
"""
|
1802
|
-
return pulumi.get(self, "avro_format")
|
1803
|
-
|
1804
|
-
@avro_format.setter
|
1805
|
-
def avro_format(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs']]):
|
1806
|
-
pulumi.set(self, "avro_format", value)
|
1807
|
-
|
1808
|
-
@property
|
1809
|
-
@pulumi.getter(name="matchGlob")
|
1810
|
-
def match_glob(self) -> Optional[pulumi.Input[str]]:
|
1811
|
-
"""
|
1812
|
-
Glob pattern used to match objects that will be ingested. If unset, all
|
1813
|
-
objects will be ingested. See the supported patterns:
|
1814
|
-
https://cloud.google.com/storage/docs/json_api/v1/objects/list#list-objects-and-prefixes-using-glob
|
1815
|
-
"""
|
1816
|
-
return pulumi.get(self, "match_glob")
|
1817
|
-
|
1818
|
-
@match_glob.setter
|
1819
|
-
def match_glob(self, value: Optional[pulumi.Input[str]]):
|
1820
|
-
pulumi.set(self, "match_glob", value)
|
1821
|
-
|
1822
|
-
@property
|
1823
|
-
@pulumi.getter(name="minimumObjectCreateTime")
|
1824
|
-
def minimum_object_create_time(self) -> Optional[pulumi.Input[str]]:
|
1825
|
-
"""
|
1826
|
-
The timestamp set in RFC3339 text format. If set, only objects with a
|
1827
|
-
larger or equal timestamp will be ingested. Unset by default, meaning
|
1828
|
-
all objects will be ingested.
|
1829
|
-
"""
|
1830
|
-
return pulumi.get(self, "minimum_object_create_time")
|
1831
|
-
|
1832
|
-
@minimum_object_create_time.setter
|
1833
|
-
def minimum_object_create_time(self, value: Optional[pulumi.Input[str]]):
|
1834
|
-
pulumi.set(self, "minimum_object_create_time", value)
|
1835
|
-
|
1836
|
-
@property
|
1837
|
-
@pulumi.getter(name="pubsubAvroFormat")
|
1838
|
-
def pubsub_avro_format(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs']]:
|
1839
|
-
"""
|
1840
|
-
Configuration for reading Cloud Storage data written via Cloud Storage
|
1841
|
-
subscriptions(See https://cloud.google.com/pubsub/docs/cloudstorage). The
|
1842
|
-
data and attributes fields of the originally exported Pub/Sub message
|
1843
|
-
will be restored when publishing.
|
1844
|
-
"""
|
1845
|
-
return pulumi.get(self, "pubsub_avro_format")
|
1846
|
-
|
1847
|
-
@pubsub_avro_format.setter
|
1848
|
-
def pubsub_avro_format(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs']]):
|
1849
|
-
pulumi.set(self, "pubsub_avro_format", value)
|
1850
|
-
|
1851
|
-
@property
|
1852
|
-
@pulumi.getter(name="textFormat")
|
1853
|
-
def text_format(self) -> Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs']]:
|
1854
|
-
"""
|
1855
|
-
Configuration for reading Cloud Storage data in text format. Each line of
|
1856
|
-
text as specified by the delimiter will be set to the `data` field of a
|
1857
|
-
Pub/Sub message.
|
1858
|
-
Structure is documented below.
|
1859
|
-
"""
|
1860
|
-
return pulumi.get(self, "text_format")
|
1861
|
-
|
1862
|
-
@text_format.setter
|
1863
|
-
def text_format(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs']]):
|
1864
|
-
pulumi.set(self, "text_format", value)
|
1865
|
-
|
1866
|
-
|
1867
|
-
if not MYPY:
|
1868
|
-
class TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgsDict(TypedDict):
|
1869
|
-
pass
|
1870
|
-
elif False:
|
1871
|
-
TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgsDict: TypeAlias = Mapping[str, Any]
|
1872
|
-
|
1873
|
-
@pulumi.input_type
|
1874
|
-
class TopicIngestionDataSourceSettingsCloudStorageAvroFormatArgs:
|
1875
|
-
def __init__(__self__):
|
1876
|
-
pass
|
1877
|
-
|
1878
|
-
|
1879
|
-
if not MYPY:
|
1880
|
-
class TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgsDict(TypedDict):
|
1881
|
-
pass
|
1882
|
-
elif False:
|
1883
|
-
TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgsDict: TypeAlias = Mapping[str, Any]
|
1884
|
-
|
1885
|
-
@pulumi.input_type
|
1886
|
-
class TopicIngestionDataSourceSettingsCloudStoragePubsubAvroFormatArgs:
|
1887
|
-
def __init__(__self__):
|
1888
|
-
pass
|
1889
|
-
|
1890
|
-
|
1891
|
-
if not MYPY:
|
1892
|
-
class TopicIngestionDataSourceSettingsCloudStorageTextFormatArgsDict(TypedDict):
|
1893
|
-
delimiter: NotRequired[pulumi.Input[str]]
|
1894
|
-
"""
|
1895
|
-
The delimiter to use when using the 'text' format. Each line of text as
|
1896
|
-
specified by the delimiter will be set to the 'data' field of a Pub/Sub
|
1897
|
-
message. When unset, '\\n' is used.
|
1898
|
-
"""
|
1899
|
-
elif False:
|
1900
|
-
TopicIngestionDataSourceSettingsCloudStorageTextFormatArgsDict: TypeAlias = Mapping[str, Any]
|
1901
|
-
|
1902
|
-
@pulumi.input_type
|
1903
|
-
class TopicIngestionDataSourceSettingsCloudStorageTextFormatArgs:
|
1904
|
-
def __init__(__self__, *,
|
1905
|
-
delimiter: Optional[pulumi.Input[str]] = None):
|
1906
|
-
"""
|
1907
|
-
:param pulumi.Input[str] delimiter: The delimiter to use when using the 'text' format. Each line of text as
|
1908
|
-
specified by the delimiter will be set to the 'data' field of a Pub/Sub
|
1909
|
-
message. When unset, '\\n' is used.
|
1910
|
-
"""
|
1911
|
-
if delimiter is not None:
|
1912
|
-
pulumi.set(__self__, "delimiter", delimiter)
|
1913
|
-
|
1914
|
-
@property
|
1915
|
-
@pulumi.getter
|
1916
|
-
def delimiter(self) -> Optional[pulumi.Input[str]]:
|
1917
|
-
"""
|
1918
|
-
The delimiter to use when using the 'text' format. Each line of text as
|
1919
|
-
specified by the delimiter will be set to the 'data' field of a Pub/Sub
|
1920
|
-
message. When unset, '\\n' is used.
|
1921
|
-
"""
|
1922
|
-
return pulumi.get(self, "delimiter")
|
1923
|
-
|
1924
|
-
@delimiter.setter
|
1925
|
-
def delimiter(self, value: Optional[pulumi.Input[str]]):
|
1926
|
-
pulumi.set(self, "delimiter", value)
|
1927
|
-
|
1928
|
-
|
1929
|
-
if not MYPY:
|
1930
|
-
class TopicIngestionDataSourceSettingsPlatformLogsSettingsArgsDict(TypedDict):
|
1931
|
-
severity: NotRequired[pulumi.Input[str]]
|
1932
|
-
"""
|
1933
|
-
The minimum severity level of Platform Logs that will be written. If unspecified,
|
1934
|
-
no Platform Logs will be written.
|
1935
|
-
Default value is `SEVERITY_UNSPECIFIED`.
|
1936
|
-
Possible values are: `SEVERITY_UNSPECIFIED`, `DISABLED`, `DEBUG`, `INFO`, `WARNING`, `ERROR`.
|
1937
|
-
"""
|
1938
|
-
elif False:
|
1939
|
-
TopicIngestionDataSourceSettingsPlatformLogsSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1940
|
-
|
1941
|
-
@pulumi.input_type
|
1942
|
-
class TopicIngestionDataSourceSettingsPlatformLogsSettingsArgs:
|
1943
|
-
def __init__(__self__, *,
|
1944
|
-
severity: Optional[pulumi.Input[str]] = None):
|
1945
|
-
"""
|
1946
|
-
:param pulumi.Input[str] severity: The minimum severity level of Platform Logs that will be written. If unspecified,
|
1947
|
-
no Platform Logs will be written.
|
1948
|
-
Default value is `SEVERITY_UNSPECIFIED`.
|
1949
|
-
Possible values are: `SEVERITY_UNSPECIFIED`, `DISABLED`, `DEBUG`, `INFO`, `WARNING`, `ERROR`.
|
1950
|
-
"""
|
1951
|
-
if severity is not None:
|
1952
|
-
pulumi.set(__self__, "severity", severity)
|
1953
|
-
|
1954
|
-
@property
|
1955
|
-
@pulumi.getter
|
1956
|
-
def severity(self) -> Optional[pulumi.Input[str]]:
|
1957
|
-
"""
|
1958
|
-
The minimum severity level of Platform Logs that will be written. If unspecified,
|
1959
|
-
no Platform Logs will be written.
|
1960
|
-
Default value is `SEVERITY_UNSPECIFIED`.
|
1961
|
-
Possible values are: `SEVERITY_UNSPECIFIED`, `DISABLED`, `DEBUG`, `INFO`, `WARNING`, `ERROR`.
|
1962
|
-
"""
|
1963
|
-
return pulumi.get(self, "severity")
|
1964
|
-
|
1965
|
-
@severity.setter
|
1966
|
-
def severity(self, value: Optional[pulumi.Input[str]]):
|
1967
|
-
pulumi.set(self, "severity", value)
|
1968
|
-
|
1969
|
-
|
1970
1638
|
if not MYPY:
|
1971
1639
|
class TopicMessageStoragePolicyArgsDict(TypedDict):
|
1972
1640
|
allowed_persistence_regions: pulumi.Input[Sequence[pulumi.Input[str]]]
|