pulumi-gcp 8.5.0a1728368389__py3-none-any.whl → 8.5.0a1728386657__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 +24 -0
- pulumi_gcp/assuredworkloads/workload.py +7 -7
- pulumi_gcp/bigtable/gc_policy.py +7 -0
- pulumi_gcp/compute/_inputs.py +299 -15
- pulumi_gcp/compute/backend_service.py +111 -7
- pulumi_gcp/compute/get_backend_service.py +11 -1
- pulumi_gcp/compute/network.py +236 -0
- pulumi_gcp/compute/outputs.py +399 -14
- pulumi_gcp/compute/region_backend_service.py +115 -7
- pulumi_gcp/compute/route.py +92 -0
- pulumi_gcp/compute/subnetwork.py +2 -2
- pulumi_gcp/container/_inputs.py +94 -0
- pulumi_gcp/container/aws_node_pool.py +59 -0
- pulumi_gcp/container/outputs.py +79 -0
- pulumi_gcp/dataproc/__init__.py +1 -0
- pulumi_gcp/dataproc/_inputs.py +1394 -0
- pulumi_gcp/dataproc/batch.py +1514 -0
- pulumi_gcp/dataproc/outputs.py +1127 -0
- 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 +1 -0
- pulumi_gcp/healthcare/_inputs.py +538 -0
- pulumi_gcp/healthcare/outputs.py +467 -0
- pulumi_gcp/healthcare/pipeline_job.py +1233 -0
- 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 +333 -1
- pulumi_gcp/pubsub/outputs.py +410 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +44 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/securesourcemanager/repository.py +0 -2
- pulumi_gcp/securityposture/posture.py +0 -2
- pulumi_gcp/securityposture/posture_deployment.py +0 -2
- pulumi_gcp/serviceusage/consumer_quota_override.py +0 -2
- pulumi_gcp/siteverification/__init__.py +1 -0
- pulumi_gcp/siteverification/owner.py +398 -0
- pulumi_gcp/sourcerepo/get_repository.py +11 -1
- pulumi_gcp/sourcerepo/repository.py +47 -0
- 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.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/RECORD +52 -49
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.5.0a1728368389.dist-info → pulumi_gcp-8.5.0a1728386657.dist-info}/top_level.txt +0 -0
@@ -253,7 +253,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
253
253
|
|
254
254
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
255
255
|
region="us-central1",
|
256
|
-
group_name="
|
256
|
+
group_name="testgroup_87786",
|
257
257
|
cidrs=[
|
258
258
|
"10.1.0.0/16",
|
259
259
|
"192.168.10.0/24",
|
@@ -339,7 +339,7 @@ class TunnelDestGroup(pulumi.CustomResource):
|
|
339
339
|
|
340
340
|
dest_group = gcp.iap.TunnelDestGroup("dest_group",
|
341
341
|
region="us-central1",
|
342
|
-
group_name="
|
342
|
+
group_name="testgroup_87786",
|
343
343
|
cidrs=[
|
344
344
|
"10.1.0.0/16",
|
345
345
|
"192.168.10.0/24",
|
@@ -378,8 +378,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
378
378
|
import pulumi_gcp as gcp
|
379
379
|
|
380
380
|
target_project = gcp.organizations.Project("target_project",
|
381
|
-
project_id="tf-
|
382
|
-
name="tf-
|
381
|
+
project_id="tf-test_2067",
|
382
|
+
name="tf-test_40785",
|
383
383
|
org_id="123456789",
|
384
384
|
billing_account="000000-0000000-0000000-000000",
|
385
385
|
deletion_policy="DELETE")
|
@@ -400,8 +400,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
400
400
|
auto_create_subnetworks=False,
|
401
401
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
402
402
|
zone = gcp.dns.ManagedZone("zone",
|
403
|
-
name="tf-test-
|
404
|
-
dns_name="
|
403
|
+
name="tf-test-dns_79169",
|
404
|
+
dns_name="private_56529.example.com.",
|
405
405
|
visibility="private",
|
406
406
|
private_visibility_config={
|
407
407
|
"networks": [{
|
@@ -489,8 +489,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
489
489
|
import pulumi_gcp as gcp
|
490
490
|
|
491
491
|
target_project = gcp.organizations.Project("target_project",
|
492
|
-
project_id="tf-
|
493
|
-
name="tf-
|
492
|
+
project_id="tf-test_2067",
|
493
|
+
name="tf-test_40785",
|
494
494
|
org_id="123456789",
|
495
495
|
billing_account="000000-0000000-0000000-000000",
|
496
496
|
deletion_policy="DELETE")
|
@@ -511,8 +511,8 @@ class ManagedZone(pulumi.CustomResource):
|
|
511
511
|
auto_create_subnetworks=False,
|
512
512
|
opts = pulumi.ResourceOptions(depends_on=[compute]))
|
513
513
|
zone = gcp.dns.ManagedZone("zone",
|
514
|
-
name="tf-test-
|
515
|
-
dns_name="
|
514
|
+
name="tf-test-dns_79169",
|
515
|
+
dns_name="private_56529.example.com.",
|
516
516
|
visibility="private",
|
517
517
|
private_visibility_config={
|
518
518
|
"networks": [{
|
pulumi_gcp/logging/log_scope.py
CHANGED
@@ -31,7 +31,7 @@ class LogScopeArgs:
|
|
31
31
|
|
32
32
|
- - -
|
33
33
|
:param pulumi.Input[str] description: Describes this log scopes.
|
34
|
-
:param pulumi.Input[str] location: The location of the resource. The supported
|
34
|
+
:param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
|
35
35
|
:param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
|
36
36
|
:param pulumi.Input[str] parent: The parent of the resource.
|
37
37
|
"""
|
@@ -76,7 +76,7 @@ class LogScopeArgs:
|
|
76
76
|
@pulumi.getter
|
77
77
|
def location(self) -> Optional[pulumi.Input[str]]:
|
78
78
|
"""
|
79
|
-
The location of the resource. The supported
|
79
|
+
The location of the resource. The only supported location is global so far.
|
80
80
|
"""
|
81
81
|
return pulumi.get(self, "location")
|
82
82
|
|
@@ -123,7 +123,7 @@ class _LogScopeState:
|
|
123
123
|
Input properties used for looking up and filtering LogScope resources.
|
124
124
|
:param pulumi.Input[str] create_time: Output only. The creation timestamp of the log scopes.
|
125
125
|
:param pulumi.Input[str] description: Describes this log scopes.
|
126
|
-
:param pulumi.Input[str] location: The location of the resource. The supported
|
126
|
+
:param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
|
127
127
|
:param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
|
128
128
|
:param pulumi.Input[str] parent: The parent of the resource.
|
129
129
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
|
@@ -175,7 +175,7 @@ class _LogScopeState:
|
|
175
175
|
@pulumi.getter
|
176
176
|
def location(self) -> Optional[pulumi.Input[str]]:
|
177
177
|
"""
|
178
|
-
The location of the resource. The supported
|
178
|
+
The location of the resource. The only supported location is global so far.
|
179
179
|
"""
|
180
180
|
return pulumi.get(self, "location")
|
181
181
|
|
@@ -290,7 +290,7 @@ class LogScope(pulumi.CustomResource):
|
|
290
290
|
:param str resource_name: The name of the resource.
|
291
291
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
292
292
|
:param pulumi.Input[str] description: Describes this log scopes.
|
293
|
-
:param pulumi.Input[str] location: The location of the resource. The supported
|
293
|
+
:param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
|
294
294
|
:param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
|
295
295
|
:param pulumi.Input[str] parent: The parent of the resource.
|
296
296
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
|
@@ -409,7 +409,7 @@ class LogScope(pulumi.CustomResource):
|
|
409
409
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
410
410
|
:param pulumi.Input[str] create_time: Output only. The creation timestamp of the log scopes.
|
411
411
|
:param pulumi.Input[str] description: Describes this log scopes.
|
412
|
-
:param pulumi.Input[str] location: The location of the resource. The supported
|
412
|
+
:param pulumi.Input[str] location: The location of the resource. The only supported location is global so far.
|
413
413
|
:param pulumi.Input[str] name: The resource name of the log scope. For example: \\`projects/my-project/locations/global/logScopes/my-log-scope\\`
|
414
414
|
:param pulumi.Input[str] parent: The parent of the resource.
|
415
415
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] resource_names: Names of one or more parent resources : * \\`projects/[PROJECT_ID]\\` May alternatively be one or more views : * \\`projects/[PROJECT_ID]/locations/[LOCATION_ID]/buckets/[BUCKET_ID]/views/[VIEW_ID]\\` A log scope can include a maximum of 50 projects and a maximum of 100 resources in total.
|
@@ -451,7 +451,7 @@ class LogScope(pulumi.CustomResource):
|
|
451
451
|
@pulumi.getter
|
452
452
|
def location(self) -> pulumi.Output[str]:
|
453
453
|
"""
|
454
|
-
The location of the resource. The supported
|
454
|
+
The location of the resource. The only supported location is global so far.
|
455
455
|
"""
|
456
456
|
return pulumi.get(self, "location")
|
457
457
|
|
@@ -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_75413",
|
563
563
|
auto_create_subnetworks=False)
|
564
564
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
565
|
-
name="tf-test-
|
565
|
+
name="tf-test-subnet_55138",
|
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_37559",
|
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_91980",
|
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_37118",
|
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_75413",
|
871
871
|
auto_create_subnetworks=False)
|
872
872
|
subnetwork = gcp.compute.Subnetwork("subnetwork",
|
873
|
-
name="tf-test-
|
873
|
+
name="tf-test-subnet_55138",
|
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_37559",
|
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_91980",
|
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_37118",
|
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_13293",
|
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_13293",
|
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,6 +59,16 @@ __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',
|
62
72
|
'TopicMessageStoragePolicyArgs',
|
63
73
|
'TopicMessageStoragePolicyArgsDict',
|
64
74
|
'TopicSchemaSettingsArgs',
|
@@ -1498,19 +1508,41 @@ if not MYPY:
|
|
1498
1508
|
Settings for ingestion from Amazon Kinesis Data Streams.
|
1499
1509
|
Structure is documented below.
|
1500
1510
|
"""
|
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
|
+
"""
|
1501
1522
|
elif False:
|
1502
1523
|
TopicIngestionDataSourceSettingsArgsDict: TypeAlias = Mapping[str, Any]
|
1503
1524
|
|
1504
1525
|
@pulumi.input_type
|
1505
1526
|
class TopicIngestionDataSourceSettingsArgs:
|
1506
1527
|
def __init__(__self__, *,
|
1507
|
-
aws_kinesis: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']] = None
|
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):
|
1508
1531
|
"""
|
1509
1532
|
:param pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs'] aws_kinesis: Settings for ingestion from Amazon Kinesis Data Streams.
|
1510
1533
|
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.
|
1511
1539
|
"""
|
1512
1540
|
if aws_kinesis is not None:
|
1513
1541
|
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)
|
1514
1546
|
|
1515
1547
|
@property
|
1516
1548
|
@pulumi.getter(name="awsKinesis")
|
@@ -1525,6 +1557,33 @@ class TopicIngestionDataSourceSettingsArgs:
|
|
1525
1557
|
def aws_kinesis(self, value: Optional[pulumi.Input['TopicIngestionDataSourceSettingsAwsKinesisArgs']]):
|
1526
1558
|
pulumi.set(self, "aws_kinesis", value)
|
1527
1559
|
|
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
|
+
|
1528
1587
|
|
1529
1588
|
if not MYPY:
|
1530
1589
|
class TopicIngestionDataSourceSettingsAwsKinesisArgsDict(TypedDict):
|
@@ -1635,6 +1694,279 @@ class TopicIngestionDataSourceSettingsAwsKinesisArgs:
|
|
1635
1694
|
pulumi.set(self, "stream_arn", value)
|
1636
1695
|
|
1637
1696
|
|
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
|
+
|
1638
1970
|
if not MYPY:
|
1639
1971
|
class TopicMessageStoragePolicyArgsDict(TypedDict):
|
1640
1972
|
allowed_persistence_regions: pulumi.Input[Sequence[pulumi.Input[str]]]
|