pulumi-gcp 8.17.0a1738274430__py3-none-any.whl → 8.18.0__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 +115 -0
- pulumi_gcp/accesscontextmanager/service_perimeter_dry_run_resource.py +28 -0
- pulumi_gcp/alloydb/cluster.py +75 -7
- pulumi_gcp/alloydb/user.py +10 -1
- 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/assuredworkloads/workload.py +7 -7
- pulumi_gcp/beyondcorp/__init__.py +4 -0
- pulumi_gcp/beyondcorp/_inputs.py +130 -0
- pulumi_gcp/beyondcorp/get_security_gateway_iam_policy.py +180 -0
- pulumi_gcp/beyondcorp/outputs.py +76 -0
- pulumi_gcp/beyondcorp/security_gateway.py +52 -25
- pulumi_gcp/beyondcorp/security_gateway_iam_binding.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_member.py +1075 -0
- pulumi_gcp/beyondcorp/security_gateway_iam_policy.py +894 -0
- pulumi_gcp/bigquery/_inputs.py +33 -0
- pulumi_gcp/bigquery/dataset.py +7 -7
- pulumi_gcp/bigquery/outputs.py +36 -0
- pulumi_gcp/bigquery/table.py +61 -7
- 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 +629 -0
- pulumi_gcp/cloudquota/s_quota_adjuster_settings.py +23 -23
- 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 +535 -9
- 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/get_network.py +3 -3
- 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.py +7 -7
- 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 +358 -6
- 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 +227 -3
- pulumi_gcp/config/__init__.pyi +2 -0
- pulumi_gcp/config/vars.py +4 -0
- pulumi_gcp/container/_inputs.py +79 -20
- pulumi_gcp/container/outputs.py +75 -12
- pulumi_gcp/dataproc/_inputs.py +34 -0
- pulumi_gcp/dataproc/outputs.py +37 -0
- pulumi_gcp/dataproc/workflow_template.py +47 -0
- pulumi_gcp/filestore/get_instance.py +12 -1
- pulumi_gcp/filestore/instance.py +75 -0
- pulumi_gcp/firestore/field.py +60 -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/gkehub/_inputs.py +20 -0
- 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/outputs.py +26 -1
- pulumi_gcp/gkehub/scope_rbac_role_binding.py +4 -4
- pulumi_gcp/iap/tunnel_dest_group.py +2 -2
- pulumi_gcp/integrationconnectors/managed_zone.py +8 -8
- 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/netapp/storage_pool.py +1 -1
- pulumi_gcp/networkconnectivity/spoke.py +76 -14
- 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/orgpolicy/policy.py +2 -2
- pulumi_gcp/parametermanager/__init__.py +6 -0
- pulumi_gcp/parametermanager/get_parameter.py +211 -0
- pulumi_gcp/parametermanager/get_parameter_version.py +216 -0
- pulumi_gcp/parametermanager/get_parameters.py +140 -0
- pulumi_gcp/parametermanager/get_regional_parameter_version.py +235 -0
- pulumi_gcp/parametermanager/get_regional_parameters.py +157 -0
- pulumi_gcp/parametermanager/outputs.py +366 -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 +477 -1
- pulumi_gcp/pubsub/outputs.py +631 -2
- pulumi_gcp/pubsub/subscription.py +6 -6
- pulumi_gcp/pubsub/topic.py +112 -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/resourcemanager/lien.py +12 -0
- pulumi_gcp/secretmanager/regional_secret.py +4 -0
- pulumi_gcp/secretmanager/regional_secret_version.py +12 -0
- pulumi_gcp/secretmanager/secret.py +4 -0
- pulumi_gcp/secretmanager/secret_version.py +12 -0
- pulumi_gcp/securityposture/posture.py +4 -0
- pulumi_gcp/securityposture/posture_deployment.py +4 -0
- pulumi_gcp/serviceaccount/get_s.py +98 -8
- pulumi_gcp/spanner/_inputs.py +68 -0
- pulumi_gcp/spanner/backup_schedule.py +70 -4
- pulumi_gcp/spanner/outputs.py +60 -0
- pulumi_gcp/storage/get_bucket_object_content.py +4 -4
- pulumi_gcp/vertex/ai_endpoint.py +4 -4
- pulumi_gcp/vertex/ai_feature_online_store_featureview.py +4 -4
- pulumi_gcp/workflows/workflow.py +175 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/RECORD +137 -110
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.17.0a1738274430.dist-info → pulumi_gcp-8.18.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/bigquery/_inputs.py
CHANGED
@@ -171,6 +171,8 @@ __all__ = [
|
|
171
171
|
'TableRangePartitioningArgsDict',
|
172
172
|
'TableRangePartitioningRangeArgs',
|
173
173
|
'TableRangePartitioningRangeArgsDict',
|
174
|
+
'TableSchemaForeignTypeInfoArgs',
|
175
|
+
'TableSchemaForeignTypeInfoArgsDict',
|
174
176
|
'TableTableConstraintsArgs',
|
175
177
|
'TableTableConstraintsArgsDict',
|
176
178
|
'TableTableConstraintsForeignKeyArgs',
|
@@ -7598,6 +7600,37 @@ class TableRangePartitioningRangeArgs:
|
|
7598
7600
|
pulumi.set(self, "start", value)
|
7599
7601
|
|
7600
7602
|
|
7603
|
+
if not MYPY:
|
7604
|
+
class TableSchemaForeignTypeInfoArgsDict(TypedDict):
|
7605
|
+
type_system: pulumi.Input[str]
|
7606
|
+
"""
|
7607
|
+
Specifies the system which defines the foreign data type.
|
7608
|
+
"""
|
7609
|
+
elif False:
|
7610
|
+
TableSchemaForeignTypeInfoArgsDict: TypeAlias = Mapping[str, Any]
|
7611
|
+
|
7612
|
+
@pulumi.input_type
|
7613
|
+
class TableSchemaForeignTypeInfoArgs:
|
7614
|
+
def __init__(__self__, *,
|
7615
|
+
type_system: pulumi.Input[str]):
|
7616
|
+
"""
|
7617
|
+
:param pulumi.Input[str] type_system: Specifies the system which defines the foreign data type.
|
7618
|
+
"""
|
7619
|
+
pulumi.set(__self__, "type_system", type_system)
|
7620
|
+
|
7621
|
+
@property
|
7622
|
+
@pulumi.getter(name="typeSystem")
|
7623
|
+
def type_system(self) -> pulumi.Input[str]:
|
7624
|
+
"""
|
7625
|
+
Specifies the system which defines the foreign data type.
|
7626
|
+
"""
|
7627
|
+
return pulumi.get(self, "type_system")
|
7628
|
+
|
7629
|
+
@type_system.setter
|
7630
|
+
def type_system(self, value: pulumi.Input[str]):
|
7631
|
+
pulumi.set(self, "type_system", value)
|
7632
|
+
|
7633
|
+
|
7601
7634
|
if not MYPY:
|
7602
7635
|
class TableTableConstraintsArgsDict(TypedDict):
|
7603
7636
|
foreign_keys: NotRequired[pulumi.Input[Sequence[pulumi.Input['TableTableConstraintsForeignKeyArgsDict']]]]
|
pulumi_gcp/bigquery/dataset.py
CHANGED
@@ -118,7 +118,7 @@ class DatasetArgs:
|
|
118
118
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
119
119
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
120
120
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
121
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
121
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
122
122
|
for more details.
|
123
123
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
124
124
|
Set this flag value to LOGICAL to use logical bytes for storage billing,
|
@@ -418,7 +418,7 @@ class DatasetArgs:
|
|
418
418
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
419
419
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
420
420
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
421
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
421
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
422
422
|
for more details.
|
423
423
|
"""
|
424
424
|
return pulumi.get(self, "resource_tags")
|
@@ -557,7 +557,7 @@ class _DatasetState:
|
|
557
557
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
558
558
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
559
559
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
560
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
560
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
561
561
|
for more details.
|
562
562
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
563
563
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
@@ -934,7 +934,7 @@ class _DatasetState:
|
|
934
934
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
935
935
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
936
936
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
937
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
937
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
938
938
|
for more details.
|
939
939
|
"""
|
940
940
|
return pulumi.get(self, "resource_tags")
|
@@ -1288,7 +1288,7 @@ class Dataset(pulumi.CustomResource):
|
|
1288
1288
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1289
1289
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1290
1290
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1291
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1291
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1292
1292
|
for more details.
|
1293
1293
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
1294
1294
|
Set this flag value to LOGICAL to use logical bytes for storage billing,
|
@@ -1711,7 +1711,7 @@ class Dataset(pulumi.CustomResource):
|
|
1711
1711
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] resource_tags: The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1712
1712
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1713
1713
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1714
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1714
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1715
1715
|
for more details.
|
1716
1716
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1717
1717
|
:param pulumi.Input[str] storage_billing_model: Specifies the storage billing model for the dataset.
|
@@ -1985,7 +1985,7 @@ class Dataset(pulumi.CustomResource):
|
|
1985
1985
|
The tags attached to this table. Tag keys are globally unique. Tag key is expected to be
|
1986
1986
|
in the namespaced format, for example "123456789012/environment" where 123456789012 is the
|
1987
1987
|
ID of the parent organization or project resource for this tag key. Tag value is expected
|
1988
|
-
to be the short name, for example "Production". See [Tag definitions](https://
|
1988
|
+
to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1989
1989
|
for more details.
|
1990
1990
|
"""
|
1991
1991
|
return pulumi.get(self, "resource_tags")
|
pulumi_gcp/bigquery/outputs.py
CHANGED
@@ -94,6 +94,7 @@ __all__ = [
|
|
94
94
|
'TableMaterializedView',
|
95
95
|
'TableRangePartitioning',
|
96
96
|
'TableRangePartitioningRange',
|
97
|
+
'TableSchemaForeignTypeInfo',
|
97
98
|
'TableTableConstraints',
|
98
99
|
'TableTableConstraintsForeignKey',
|
99
100
|
'TableTableConstraintsForeignKeyColumnReferences',
|
@@ -5931,6 +5932,41 @@ class TableRangePartitioningRange(dict):
|
|
5931
5932
|
return pulumi.get(self, "start")
|
5932
5933
|
|
5933
5934
|
|
5935
|
+
@pulumi.output_type
|
5936
|
+
class TableSchemaForeignTypeInfo(dict):
|
5937
|
+
@staticmethod
|
5938
|
+
def __key_warning(key: str):
|
5939
|
+
suggest = None
|
5940
|
+
if key == "typeSystem":
|
5941
|
+
suggest = "type_system"
|
5942
|
+
|
5943
|
+
if suggest:
|
5944
|
+
pulumi.log.warn(f"Key '{key}' not found in TableSchemaForeignTypeInfo. Access the value via the '{suggest}' property getter instead.")
|
5945
|
+
|
5946
|
+
def __getitem__(self, key: str) -> Any:
|
5947
|
+
TableSchemaForeignTypeInfo.__key_warning(key)
|
5948
|
+
return super().__getitem__(key)
|
5949
|
+
|
5950
|
+
def get(self, key: str, default = None) -> Any:
|
5951
|
+
TableSchemaForeignTypeInfo.__key_warning(key)
|
5952
|
+
return super().get(key, default)
|
5953
|
+
|
5954
|
+
def __init__(__self__, *,
|
5955
|
+
type_system: str):
|
5956
|
+
"""
|
5957
|
+
:param str type_system: Specifies the system which defines the foreign data type.
|
5958
|
+
"""
|
5959
|
+
pulumi.set(__self__, "type_system", type_system)
|
5960
|
+
|
5961
|
+
@property
|
5962
|
+
@pulumi.getter(name="typeSystem")
|
5963
|
+
def type_system(self) -> str:
|
5964
|
+
"""
|
5965
|
+
Specifies the system which defines the foreign data type.
|
5966
|
+
"""
|
5967
|
+
return pulumi.get(self, "type_system")
|
5968
|
+
|
5969
|
+
|
5934
5970
|
@pulumi.output_type
|
5935
5971
|
class TableTableConstraints(dict):
|
5936
5972
|
@staticmethod
|
pulumi_gcp/bigquery/table.py
CHANGED
@@ -40,6 +40,7 @@ class TableArgs:
|
|
40
40
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
41
41
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
42
42
|
schema: Optional[pulumi.Input[str]] = None,
|
43
|
+
schema_foreign_type_info: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']] = None,
|
43
44
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
44
45
|
table_replication_info: Optional[pulumi.Input['TableTableReplicationInfoArgs']] = None,
|
45
46
|
time_partitioning: Optional[pulumi.Input['TableTimePartitioningArgs']] = None,
|
@@ -91,8 +92,10 @@ class TableArgs:
|
|
91
92
|
globally unique. Tag key is expected to be in the namespaced format, for
|
92
93
|
example "123456789012/environment" where 123456789012 is the ID of the
|
93
94
|
parent organization or project resource for this tag key. Tag value is
|
94
|
-
expected to be the short name, for example "Production".
|
95
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
96
|
+
for more details.
|
95
97
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
98
|
+
:param pulumi.Input['TableSchemaForeignTypeInfoArgs'] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
96
99
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
97
100
|
Structure is documented below.
|
98
101
|
:param pulumi.Input['TableTableReplicationInfoArgs'] table_replication_info: Replication info of a table created
|
@@ -140,6 +143,8 @@ class TableArgs:
|
|
140
143
|
pulumi.set(__self__, "resource_tags", resource_tags)
|
141
144
|
if schema is not None:
|
142
145
|
pulumi.set(__self__, "schema", schema)
|
146
|
+
if schema_foreign_type_info is not None:
|
147
|
+
pulumi.set(__self__, "schema_foreign_type_info", schema_foreign_type_info)
|
143
148
|
if table_constraints is not None:
|
144
149
|
pulumi.set(__self__, "table_constraints", table_constraints)
|
145
150
|
if table_replication_info is not None:
|
@@ -385,7 +390,8 @@ class TableArgs:
|
|
385
390
|
globally unique. Tag key is expected to be in the namespaced format, for
|
386
391
|
example "123456789012/environment" where 123456789012 is the ID of the
|
387
392
|
parent organization or project resource for this tag key. Tag value is
|
388
|
-
expected to be the short name, for example "Production".
|
393
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
394
|
+
for more details.
|
389
395
|
"""
|
390
396
|
return pulumi.get(self, "resource_tags")
|
391
397
|
|
@@ -405,6 +411,18 @@ class TableArgs:
|
|
405
411
|
def schema(self, value: Optional[pulumi.Input[str]]):
|
406
412
|
pulumi.set(self, "schema", value)
|
407
413
|
|
414
|
+
@property
|
415
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
416
|
+
def schema_foreign_type_info(self) -> Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]:
|
417
|
+
"""
|
418
|
+
Specifies metadata of the foreign data type definition in field schema.
|
419
|
+
"""
|
420
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
421
|
+
|
422
|
+
@schema_foreign_type_info.setter
|
423
|
+
def schema_foreign_type_info(self, value: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]):
|
424
|
+
pulumi.set(self, "schema_foreign_type_info", value)
|
425
|
+
|
408
426
|
@property
|
409
427
|
@pulumi.getter(name="tableConstraints")
|
410
428
|
def table_constraints(self) -> Optional[pulumi.Input['TableTableConstraintsArgs']]:
|
@@ -490,6 +508,7 @@ class _TableState:
|
|
490
508
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
491
509
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
492
510
|
schema: Optional[pulumi.Input[str]] = None,
|
511
|
+
schema_foreign_type_info: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']] = None,
|
493
512
|
self_link: Optional[pulumi.Input[str]] = None,
|
494
513
|
table_constraints: Optional[pulumi.Input['TableTableConstraintsArgs']] = None,
|
495
514
|
table_id: Optional[pulumi.Input[str]] = None,
|
@@ -566,8 +585,10 @@ class _TableState:
|
|
566
585
|
globally unique. Tag key is expected to be in the namespaced format, for
|
567
586
|
example "123456789012/environment" where 123456789012 is the ID of the
|
568
587
|
parent organization or project resource for this tag key. Tag value is
|
569
|
-
expected to be the short name, for example "Production".
|
588
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
589
|
+
for more details.
|
570
590
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
591
|
+
:param pulumi.Input['TableSchemaForeignTypeInfoArgs'] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
571
592
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
572
593
|
:param pulumi.Input['TableTableConstraintsArgs'] table_constraints: Defines the primary key and foreign keys.
|
573
594
|
Structure is documented below.
|
@@ -637,6 +658,8 @@ class _TableState:
|
|
637
658
|
pulumi.set(__self__, "resource_tags", resource_tags)
|
638
659
|
if schema is not None:
|
639
660
|
pulumi.set(__self__, "schema", schema)
|
661
|
+
if schema_foreign_type_info is not None:
|
662
|
+
pulumi.set(__self__, "schema_foreign_type_info", schema_foreign_type_info)
|
640
663
|
if self_link is not None:
|
641
664
|
pulumi.set(__self__, "self_link", self_link)
|
642
665
|
if table_constraints is not None:
|
@@ -998,7 +1021,8 @@ class _TableState:
|
|
998
1021
|
globally unique. Tag key is expected to be in the namespaced format, for
|
999
1022
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1000
1023
|
parent organization or project resource for this tag key. Tag value is
|
1001
|
-
expected to be the short name, for example "Production".
|
1024
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1025
|
+
for more details.
|
1002
1026
|
"""
|
1003
1027
|
return pulumi.get(self, "resource_tags")
|
1004
1028
|
|
@@ -1018,6 +1042,18 @@ class _TableState:
|
|
1018
1042
|
def schema(self, value: Optional[pulumi.Input[str]]):
|
1019
1043
|
pulumi.set(self, "schema", value)
|
1020
1044
|
|
1045
|
+
@property
|
1046
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
1047
|
+
def schema_foreign_type_info(self) -> Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]:
|
1048
|
+
"""
|
1049
|
+
Specifies metadata of the foreign data type definition in field schema.
|
1050
|
+
"""
|
1051
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
1052
|
+
|
1053
|
+
@schema_foreign_type_info.setter
|
1054
|
+
def schema_foreign_type_info(self, value: Optional[pulumi.Input['TableSchemaForeignTypeInfoArgs']]):
|
1055
|
+
pulumi.set(self, "schema_foreign_type_info", value)
|
1056
|
+
|
1021
1057
|
@property
|
1022
1058
|
@pulumi.getter(name="selfLink")
|
1023
1059
|
def self_link(self) -> Optional[pulumi.Input[str]]:
|
@@ -1133,6 +1169,7 @@ class Table(pulumi.CustomResource):
|
|
1133
1169
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1134
1170
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1135
1171
|
schema: Optional[pulumi.Input[str]] = None,
|
1172
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1136
1173
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1137
1174
|
table_id: Optional[pulumi.Input[str]] = None,
|
1138
1175
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
@@ -1269,8 +1306,10 @@ class Table(pulumi.CustomResource):
|
|
1269
1306
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1270
1307
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1271
1308
|
parent organization or project resource for this tag key. Tag value is
|
1272
|
-
expected to be the short name, for example "Production".
|
1309
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1310
|
+
for more details.
|
1273
1311
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1312
|
+
:param pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
1274
1313
|
:param pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']] table_constraints: Defines the primary key and foreign keys.
|
1275
1314
|
Structure is documented below.
|
1276
1315
|
:param pulumi.Input[str] table_id: A unique ID for the resource.
|
@@ -1408,6 +1447,7 @@ class Table(pulumi.CustomResource):
|
|
1408
1447
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1409
1448
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1410
1449
|
schema: Optional[pulumi.Input[str]] = None,
|
1450
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1411
1451
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1412
1452
|
table_id: Optional[pulumi.Input[str]] = None,
|
1413
1453
|
table_replication_info: Optional[pulumi.Input[Union['TableTableReplicationInfoArgs', 'TableTableReplicationInfoArgsDict']]] = None,
|
@@ -1442,6 +1482,7 @@ class Table(pulumi.CustomResource):
|
|
1442
1482
|
__props__.__dict__["require_partition_filter"] = require_partition_filter
|
1443
1483
|
__props__.__dict__["resource_tags"] = resource_tags
|
1444
1484
|
__props__.__dict__["schema"] = schema
|
1485
|
+
__props__.__dict__["schema_foreign_type_info"] = schema_foreign_type_info
|
1445
1486
|
__props__.__dict__["table_constraints"] = table_constraints
|
1446
1487
|
if table_id is None and not opts.urn:
|
1447
1488
|
raise TypeError("Missing required property 'table_id'")
|
@@ -1499,6 +1540,7 @@ class Table(pulumi.CustomResource):
|
|
1499
1540
|
require_partition_filter: Optional[pulumi.Input[bool]] = None,
|
1500
1541
|
resource_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1501
1542
|
schema: Optional[pulumi.Input[str]] = None,
|
1543
|
+
schema_foreign_type_info: Optional[pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']]] = None,
|
1502
1544
|
self_link: Optional[pulumi.Input[str]] = None,
|
1503
1545
|
table_constraints: Optional[pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']]] = None,
|
1504
1546
|
table_id: Optional[pulumi.Input[str]] = None,
|
@@ -1580,8 +1622,10 @@ class Table(pulumi.CustomResource):
|
|
1580
1622
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1581
1623
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1582
1624
|
parent organization or project resource for this tag key. Tag value is
|
1583
|
-
expected to be the short name, for example "Production".
|
1625
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1626
|
+
for more details.
|
1584
1627
|
:param pulumi.Input[str] schema: A JSON schema for the table.
|
1628
|
+
:param pulumi.Input[Union['TableSchemaForeignTypeInfoArgs', 'TableSchemaForeignTypeInfoArgsDict']] schema_foreign_type_info: Specifies metadata of the foreign data type definition in field schema.
|
1585
1629
|
:param pulumi.Input[str] self_link: The URI of the created resource.
|
1586
1630
|
:param pulumi.Input[Union['TableTableConstraintsArgs', 'TableTableConstraintsArgsDict']] table_constraints: Defines the primary key and foreign keys.
|
1587
1631
|
Structure is documented below.
|
@@ -1628,6 +1672,7 @@ class Table(pulumi.CustomResource):
|
|
1628
1672
|
__props__.__dict__["require_partition_filter"] = require_partition_filter
|
1629
1673
|
__props__.__dict__["resource_tags"] = resource_tags
|
1630
1674
|
__props__.__dict__["schema"] = schema
|
1675
|
+
__props__.__dict__["schema_foreign_type_info"] = schema_foreign_type_info
|
1631
1676
|
__props__.__dict__["self_link"] = self_link
|
1632
1677
|
__props__.__dict__["table_constraints"] = table_constraints
|
1633
1678
|
__props__.__dict__["table_id"] = table_id
|
@@ -1883,7 +1928,8 @@ class Table(pulumi.CustomResource):
|
|
1883
1928
|
globally unique. Tag key is expected to be in the namespaced format, for
|
1884
1929
|
example "123456789012/environment" where 123456789012 is the ID of the
|
1885
1930
|
parent organization or project resource for this tag key. Tag value is
|
1886
|
-
expected to be the short name, for example "Production".
|
1931
|
+
expected to be the short name, for example "Production". See [Tag definitions](https://cloud.google.com/iam/docs/tags-access-control#definitions)
|
1932
|
+
for more details.
|
1887
1933
|
"""
|
1888
1934
|
return pulumi.get(self, "resource_tags")
|
1889
1935
|
|
@@ -1895,6 +1941,14 @@ class Table(pulumi.CustomResource):
|
|
1895
1941
|
"""
|
1896
1942
|
return pulumi.get(self, "schema")
|
1897
1943
|
|
1944
|
+
@property
|
1945
|
+
@pulumi.getter(name="schemaForeignTypeInfo")
|
1946
|
+
def schema_foreign_type_info(self) -> pulumi.Output[Optional['outputs.TableSchemaForeignTypeInfo']]:
|
1947
|
+
"""
|
1948
|
+
Specifies metadata of the foreign data type definition in field schema.
|
1949
|
+
"""
|
1950
|
+
return pulumi.get(self, "schema_foreign_type_info")
|
1951
|
+
|
1898
1952
|
@property
|
1899
1953
|
@pulumi.getter(name="selfLink")
|
1900
1954
|
def self_link(self) -> pulumi.Output[str]:
|
pulumi_gcp/chronicle/__init__.py
CHANGED
pulumi_gcp/chronicle/_inputs.py
CHANGED
@@ -29,6 +29,10 @@ __all__ = [
|
|
29
29
|
'ReferenceListScopeInfoArgsDict',
|
30
30
|
'ReferenceListScopeInfoReferenceListScopeArgs',
|
31
31
|
'ReferenceListScopeInfoReferenceListScopeArgsDict',
|
32
|
+
'RetrohuntExecutionIntervalArgs',
|
33
|
+
'RetrohuntExecutionIntervalArgsDict',
|
34
|
+
'RetrohuntProcessIntervalArgs',
|
35
|
+
'RetrohuntProcessIntervalArgsDict',
|
32
36
|
'RuleCompilationDiagnosticArgs',
|
33
37
|
'RuleCompilationDiagnosticArgsDict',
|
34
38
|
'RuleCompilationDiagnosticPositionArgs',
|
@@ -536,6 +540,126 @@ class ReferenceListScopeInfoReferenceListScopeArgs:
|
|
536
540
|
pulumi.set(self, "scope_names", value)
|
537
541
|
|
538
542
|
|
543
|
+
if not MYPY:
|
544
|
+
class RetrohuntExecutionIntervalArgsDict(TypedDict):
|
545
|
+
end_time: NotRequired[pulumi.Input[str]]
|
546
|
+
"""
|
547
|
+
Optional. Exclusive end of the interval.
|
548
|
+
If specified, a Timestamp matching this interval will have to be before the
|
549
|
+
end.
|
550
|
+
"""
|
551
|
+
start_time: NotRequired[pulumi.Input[str]]
|
552
|
+
"""
|
553
|
+
Optional. Inclusive start of the interval.
|
554
|
+
If specified, a Timestamp matching this interval will have to be the same
|
555
|
+
or after the start.
|
556
|
+
"""
|
557
|
+
elif False:
|
558
|
+
RetrohuntExecutionIntervalArgsDict: TypeAlias = Mapping[str, Any]
|
559
|
+
|
560
|
+
@pulumi.input_type
|
561
|
+
class RetrohuntExecutionIntervalArgs:
|
562
|
+
def __init__(__self__, *,
|
563
|
+
end_time: Optional[pulumi.Input[str]] = None,
|
564
|
+
start_time: Optional[pulumi.Input[str]] = None):
|
565
|
+
"""
|
566
|
+
:param pulumi.Input[str] end_time: Optional. Exclusive end of the interval.
|
567
|
+
If specified, a Timestamp matching this interval will have to be before the
|
568
|
+
end.
|
569
|
+
:param pulumi.Input[str] start_time: Optional. Inclusive start of the interval.
|
570
|
+
If specified, a Timestamp matching this interval will have to be the same
|
571
|
+
or after the start.
|
572
|
+
"""
|
573
|
+
if end_time is not None:
|
574
|
+
pulumi.set(__self__, "end_time", end_time)
|
575
|
+
if start_time is not None:
|
576
|
+
pulumi.set(__self__, "start_time", start_time)
|
577
|
+
|
578
|
+
@property
|
579
|
+
@pulumi.getter(name="endTime")
|
580
|
+
def end_time(self) -> Optional[pulumi.Input[str]]:
|
581
|
+
"""
|
582
|
+
Optional. Exclusive end of the interval.
|
583
|
+
If specified, a Timestamp matching this interval will have to be before the
|
584
|
+
end.
|
585
|
+
"""
|
586
|
+
return pulumi.get(self, "end_time")
|
587
|
+
|
588
|
+
@end_time.setter
|
589
|
+
def end_time(self, value: Optional[pulumi.Input[str]]):
|
590
|
+
pulumi.set(self, "end_time", value)
|
591
|
+
|
592
|
+
@property
|
593
|
+
@pulumi.getter(name="startTime")
|
594
|
+
def start_time(self) -> Optional[pulumi.Input[str]]:
|
595
|
+
"""
|
596
|
+
Optional. Inclusive start of the interval.
|
597
|
+
If specified, a Timestamp matching this interval will have to be the same
|
598
|
+
or after the start.
|
599
|
+
"""
|
600
|
+
return pulumi.get(self, "start_time")
|
601
|
+
|
602
|
+
@start_time.setter
|
603
|
+
def start_time(self, value: Optional[pulumi.Input[str]]):
|
604
|
+
pulumi.set(self, "start_time", value)
|
605
|
+
|
606
|
+
|
607
|
+
if not MYPY:
|
608
|
+
class RetrohuntProcessIntervalArgsDict(TypedDict):
|
609
|
+
end_time: pulumi.Input[str]
|
610
|
+
"""
|
611
|
+
Exclusive end of the interval.
|
612
|
+
|
613
|
+
- - -
|
614
|
+
"""
|
615
|
+
start_time: pulumi.Input[str]
|
616
|
+
"""
|
617
|
+
Inclusive start of the interval.
|
618
|
+
"""
|
619
|
+
elif False:
|
620
|
+
RetrohuntProcessIntervalArgsDict: TypeAlias = Mapping[str, Any]
|
621
|
+
|
622
|
+
@pulumi.input_type
|
623
|
+
class RetrohuntProcessIntervalArgs:
|
624
|
+
def __init__(__self__, *,
|
625
|
+
end_time: pulumi.Input[str],
|
626
|
+
start_time: pulumi.Input[str]):
|
627
|
+
"""
|
628
|
+
:param pulumi.Input[str] end_time: Exclusive end of the interval.
|
629
|
+
|
630
|
+
- - -
|
631
|
+
:param pulumi.Input[str] start_time: Inclusive start of the interval.
|
632
|
+
"""
|
633
|
+
pulumi.set(__self__, "end_time", end_time)
|
634
|
+
pulumi.set(__self__, "start_time", start_time)
|
635
|
+
|
636
|
+
@property
|
637
|
+
@pulumi.getter(name="endTime")
|
638
|
+
def end_time(self) -> pulumi.Input[str]:
|
639
|
+
"""
|
640
|
+
Exclusive end of the interval.
|
641
|
+
|
642
|
+
- - -
|
643
|
+
"""
|
644
|
+
return pulumi.get(self, "end_time")
|
645
|
+
|
646
|
+
@end_time.setter
|
647
|
+
def end_time(self, value: pulumi.Input[str]):
|
648
|
+
pulumi.set(self, "end_time", value)
|
649
|
+
|
650
|
+
@property
|
651
|
+
@pulumi.getter(name="startTime")
|
652
|
+
def start_time(self) -> pulumi.Input[str]:
|
653
|
+
"""
|
654
|
+
Inclusive start of the interval.
|
655
|
+
"""
|
656
|
+
return pulumi.get(self, "start_time")
|
657
|
+
|
658
|
+
@start_time.setter
|
659
|
+
def start_time(self, value: pulumi.Input[str]):
|
660
|
+
pulumi.set(self, "start_time", value)
|
661
|
+
|
662
|
+
|
539
663
|
if not MYPY:
|
540
664
|
class RuleCompilationDiagnosticArgsDict(TypedDict):
|
541
665
|
message: NotRequired[pulumi.Input[str]]
|
pulumi_gcp/chronicle/outputs.py
CHANGED
@@ -23,6 +23,8 @@ __all__ = [
|
|
23
23
|
'ReferenceListEntry',
|
24
24
|
'ReferenceListScopeInfo',
|
25
25
|
'ReferenceListScopeInfoReferenceListScope',
|
26
|
+
'RetrohuntExecutionInterval',
|
27
|
+
'RetrohuntProcessInterval',
|
26
28
|
'RuleCompilationDiagnostic',
|
27
29
|
'RuleCompilationDiagnosticPosition',
|
28
30
|
'RuleSeverity',
|
@@ -449,6 +451,116 @@ class ReferenceListScopeInfoReferenceListScope(dict):
|
|
449
451
|
return pulumi.get(self, "scope_names")
|
450
452
|
|
451
453
|
|
454
|
+
@pulumi.output_type
|
455
|
+
class RetrohuntExecutionInterval(dict):
|
456
|
+
@staticmethod
|
457
|
+
def __key_warning(key: str):
|
458
|
+
suggest = None
|
459
|
+
if key == "endTime":
|
460
|
+
suggest = "end_time"
|
461
|
+
elif key == "startTime":
|
462
|
+
suggest = "start_time"
|
463
|
+
|
464
|
+
if suggest:
|
465
|
+
pulumi.log.warn(f"Key '{key}' not found in RetrohuntExecutionInterval. Access the value via the '{suggest}' property getter instead.")
|
466
|
+
|
467
|
+
def __getitem__(self, key: str) -> Any:
|
468
|
+
RetrohuntExecutionInterval.__key_warning(key)
|
469
|
+
return super().__getitem__(key)
|
470
|
+
|
471
|
+
def get(self, key: str, default = None) -> Any:
|
472
|
+
RetrohuntExecutionInterval.__key_warning(key)
|
473
|
+
return super().get(key, default)
|
474
|
+
|
475
|
+
def __init__(__self__, *,
|
476
|
+
end_time: Optional[str] = None,
|
477
|
+
start_time: Optional[str] = None):
|
478
|
+
"""
|
479
|
+
:param str end_time: Optional. Exclusive end of the interval.
|
480
|
+
If specified, a Timestamp matching this interval will have to be before the
|
481
|
+
end.
|
482
|
+
:param str start_time: Optional. Inclusive start of the interval.
|
483
|
+
If specified, a Timestamp matching this interval will have to be the same
|
484
|
+
or after the start.
|
485
|
+
"""
|
486
|
+
if end_time is not None:
|
487
|
+
pulumi.set(__self__, "end_time", end_time)
|
488
|
+
if start_time is not None:
|
489
|
+
pulumi.set(__self__, "start_time", start_time)
|
490
|
+
|
491
|
+
@property
|
492
|
+
@pulumi.getter(name="endTime")
|
493
|
+
def end_time(self) -> Optional[str]:
|
494
|
+
"""
|
495
|
+
Optional. Exclusive end of the interval.
|
496
|
+
If specified, a Timestamp matching this interval will have to be before the
|
497
|
+
end.
|
498
|
+
"""
|
499
|
+
return pulumi.get(self, "end_time")
|
500
|
+
|
501
|
+
@property
|
502
|
+
@pulumi.getter(name="startTime")
|
503
|
+
def start_time(self) -> Optional[str]:
|
504
|
+
"""
|
505
|
+
Optional. Inclusive start of the interval.
|
506
|
+
If specified, a Timestamp matching this interval will have to be the same
|
507
|
+
or after the start.
|
508
|
+
"""
|
509
|
+
return pulumi.get(self, "start_time")
|
510
|
+
|
511
|
+
|
512
|
+
@pulumi.output_type
|
513
|
+
class RetrohuntProcessInterval(dict):
|
514
|
+
@staticmethod
|
515
|
+
def __key_warning(key: str):
|
516
|
+
suggest = None
|
517
|
+
if key == "endTime":
|
518
|
+
suggest = "end_time"
|
519
|
+
elif key == "startTime":
|
520
|
+
suggest = "start_time"
|
521
|
+
|
522
|
+
if suggest:
|
523
|
+
pulumi.log.warn(f"Key '{key}' not found in RetrohuntProcessInterval. Access the value via the '{suggest}' property getter instead.")
|
524
|
+
|
525
|
+
def __getitem__(self, key: str) -> Any:
|
526
|
+
RetrohuntProcessInterval.__key_warning(key)
|
527
|
+
return super().__getitem__(key)
|
528
|
+
|
529
|
+
def get(self, key: str, default = None) -> Any:
|
530
|
+
RetrohuntProcessInterval.__key_warning(key)
|
531
|
+
return super().get(key, default)
|
532
|
+
|
533
|
+
def __init__(__self__, *,
|
534
|
+
end_time: str,
|
535
|
+
start_time: str):
|
536
|
+
"""
|
537
|
+
:param str end_time: Exclusive end of the interval.
|
538
|
+
|
539
|
+
- - -
|
540
|
+
:param str start_time: Inclusive start of the interval.
|
541
|
+
"""
|
542
|
+
pulumi.set(__self__, "end_time", end_time)
|
543
|
+
pulumi.set(__self__, "start_time", start_time)
|
544
|
+
|
545
|
+
@property
|
546
|
+
@pulumi.getter(name="endTime")
|
547
|
+
def end_time(self) -> str:
|
548
|
+
"""
|
549
|
+
Exclusive end of the interval.
|
550
|
+
|
551
|
+
- - -
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "end_time")
|
554
|
+
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="startTime")
|
557
|
+
def start_time(self) -> str:
|
558
|
+
"""
|
559
|
+
Inclusive start of the interval.
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "start_time")
|
562
|
+
|
563
|
+
|
452
564
|
@pulumi.output_type
|
453
565
|
class RuleCompilationDiagnostic(dict):
|
454
566
|
def __init__(__self__, *,
|