pulumi-gcp 8.21.0a1741103856__py3-none-any.whl → 8.21.0a1741183435__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 +64 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/compute/__init__.py +5 -0
- pulumi_gcp/compute/_inputs.py +770 -0
- pulumi_gcp/compute/backend_service.py +14 -7
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +295 -0
- pulumi_gcp/compute/get_disk.py +56 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/instant_snapshot.py +796 -0
- pulumi_gcp/compute/instant_snapshot_iam_binding.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_member.py +1087 -0
- pulumi_gcp/compute/instant_snapshot_iam_policy.py +906 -0
- pulumi_gcp/compute/outputs.py +1329 -6
- pulumi_gcp/compute/region_backend_service.py +14 -7
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +3 -3
- pulumi_gcp/container/outputs.py +4 -4
- pulumi_gcp/datacatalog/entry.py +4 -0
- pulumi_gcp/datacatalog/tag.py +4 -0
- pulumi_gcp/dataproc/_inputs.py +12 -15
- pulumi_gcp/dataproc/outputs.py +8 -10
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +1 -0
- pulumi_gcp/eventarc/_inputs.py +40 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +41 -0
- pulumi_gcp/gemini/__init__.py +1 -0
- pulumi_gcp/gemini/data_sharing_with_google_setting_binding.py +20 -8
- pulumi_gcp/gemini/gemini_gcp_enablement_setting.py +6 -0
- pulumi_gcp/gemini/gemini_gcp_enablement_setting_binding.py +734 -0
- pulumi_gcp/gemini/logging_setting_binding.py +7 -7
- pulumi_gcp/iam/_inputs.py +33 -9
- pulumi_gcp/iam/outputs.py +22 -6
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networkservices/grpc_route.py +116 -12
- pulumi_gcp/notebooks/location.py +4 -0
- pulumi_gcp/pulumi-plugin.json +1 -1
- pulumi_gcp/storage/__init__.py +1 -0
- pulumi_gcp/storage/_inputs.py +74 -0
- pulumi_gcp/storage/anywhere_cache.py +552 -0
- pulumi_gcp/storage/outputs.py +65 -0
- pulumi_gcp/storage/transfer_job.py +67 -0
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/RECORD +56 -46
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/WHEEL +0 -0
- {pulumi_gcp-8.21.0a1741103856.dist-info → pulumi_gcp-8.21.0a1741183435.dist-info}/top_level.txt +0 -0
pulumi_gcp/dataproc/_inputs.py
CHANGED
@@ -4816,7 +4816,7 @@ if not MYPY:
|
|
4816
4816
|
"""
|
4817
4817
|
provisioning_model_mix: NotRequired[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict']]
|
4818
4818
|
"""
|
4819
|
-
Defines how
|
4819
|
+
Defines how the Group selects the provisioning model to ensure required reliability.
|
4820
4820
|
"""
|
4821
4821
|
elif False:
|
4822
4822
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4830,7 +4830,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
|
4830
4830
|
"""
|
4831
4831
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgs']]] instance_selection_lists: List of instance selection options that the group will use when creating new VMs.
|
4832
4832
|
:param pulumi.Input[Sequence[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgs']]] instance_selection_results: A list of instance selection results in the group.
|
4833
|
-
:param pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs'] provisioning_model_mix: Defines how
|
4833
|
+
:param pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs'] provisioning_model_mix: Defines how the Group selects the provisioning model to ensure required reliability.
|
4834
4834
|
"""
|
4835
4835
|
if instance_selection_lists is not None:
|
4836
4836
|
pulumi.set(__self__, "instance_selection_lists", instance_selection_lists)
|
@@ -4867,7 +4867,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyArgs:
|
|
4867
4867
|
@pulumi.getter(name="provisioningModelMix")
|
4868
4868
|
def provisioning_model_mix(self) -> Optional[pulumi.Input['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs']]:
|
4869
4869
|
"""
|
4870
|
-
Defines how
|
4870
|
+
Defines how the Group selects the provisioning model to ensure required reliability.
|
4871
4871
|
"""
|
4872
4872
|
return pulumi.get(self, "provisioning_model_mix")
|
4873
4873
|
|
@@ -4885,8 +4885,6 @@ if not MYPY:
|
|
4885
4885
|
rank: NotRequired[pulumi.Input[int]]
|
4886
4886
|
"""
|
4887
4887
|
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4888
|
-
|
4889
|
-
- - -
|
4890
4888
|
"""
|
4891
4889
|
elif False:
|
4892
4890
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -4899,8 +4897,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
4899
4897
|
"""
|
4900
4898
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] machine_types: Full machine-type names, e.g. `"n1-standard-16"`.
|
4901
4899
|
:param pulumi.Input[int] rank: Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4902
|
-
|
4903
|
-
- - -
|
4904
4900
|
"""
|
4905
4901
|
if machine_types is not None:
|
4906
4902
|
pulumi.set(__self__, "machine_types", machine_types)
|
@@ -4924,8 +4920,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
4924
4920
|
def rank(self) -> Optional[pulumi.Input[int]]:
|
4925
4921
|
"""
|
4926
4922
|
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
4927
|
-
|
4928
|
-
- - -
|
4929
4923
|
"""
|
4930
4924
|
return pulumi.get(self, "rank")
|
4931
4925
|
|
@@ -4990,11 +4984,12 @@ if not MYPY:
|
|
4990
4984
|
class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict(TypedDict):
|
4991
4985
|
standard_capacity_base: NotRequired[pulumi.Input[int]]
|
4992
4986
|
"""
|
4993
|
-
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
4987
|
+
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
4994
4988
|
"""
|
4995
4989
|
standard_capacity_percent_above_base: NotRequired[pulumi.Input[int]]
|
4996
4990
|
"""
|
4997
|
-
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
4991
|
+
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
4992
|
+
- - -
|
4998
4993
|
"""
|
4999
4994
|
elif False:
|
5000
4995
|
ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -5005,8 +5000,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5005
5000
|
standard_capacity_base: Optional[pulumi.Input[int]] = None,
|
5006
5001
|
standard_capacity_percent_above_base: Optional[pulumi.Input[int]] = None):
|
5007
5002
|
"""
|
5008
|
-
:param pulumi.Input[int] standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
5009
|
-
:param pulumi.Input[int] standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
5003
|
+
:param pulumi.Input[int] standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
5004
|
+
:param pulumi.Input[int] standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
5005
|
+
- - -
|
5010
5006
|
"""
|
5011
5007
|
if standard_capacity_base is not None:
|
5012
5008
|
pulumi.set(__self__, "standard_capacity_base", standard_capacity_base)
|
@@ -5017,7 +5013,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5017
5013
|
@pulumi.getter(name="standardCapacityBase")
|
5018
5014
|
def standard_capacity_base(self) -> Optional[pulumi.Input[int]]:
|
5019
5015
|
"""
|
5020
|
-
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
5016
|
+
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
5021
5017
|
"""
|
5022
5018
|
return pulumi.get(self, "standard_capacity_base")
|
5023
5019
|
|
@@ -5029,7 +5025,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
5029
5025
|
@pulumi.getter(name="standardCapacityPercentAboveBase")
|
5030
5026
|
def standard_capacity_percent_above_base(self) -> Optional[pulumi.Input[int]]:
|
5031
5027
|
"""
|
5032
|
-
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
5028
|
+
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
5029
|
+
- - -
|
5033
5030
|
"""
|
5034
5031
|
return pulumi.get(self, "standard_capacity_percent_above_base")
|
5035
5032
|
|
pulumi_gcp/dataproc/outputs.py
CHANGED
@@ -3791,7 +3791,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicy(dict)
|
|
3791
3791
|
"""
|
3792
3792
|
:param Sequence['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionListArgs'] instance_selection_lists: List of instance selection options that the group will use when creating new VMs.
|
3793
3793
|
:param Sequence['ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstanceSelectionResultArgs'] instance_selection_results: A list of instance selection results in the group.
|
3794
|
-
:param 'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs' provisioning_model_mix: Defines how
|
3794
|
+
:param 'ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMixArgs' provisioning_model_mix: Defines how the Group selects the provisioning model to ensure required reliability.
|
3795
3795
|
"""
|
3796
3796
|
if instance_selection_lists is not None:
|
3797
3797
|
pulumi.set(__self__, "instance_selection_lists", instance_selection_lists)
|
@@ -3820,7 +3820,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicy(dict)
|
|
3820
3820
|
@pulumi.getter(name="provisioningModelMix")
|
3821
3821
|
def provisioning_model_mix(self) -> Optional['outputs.ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvisioningModelMix']:
|
3822
3822
|
"""
|
3823
|
-
Defines how
|
3823
|
+
Defines how the Group selects the provisioning model to ensure required reliability.
|
3824
3824
|
"""
|
3825
3825
|
return pulumi.get(self, "provisioning_model_mix")
|
3826
3826
|
|
@@ -3850,8 +3850,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
3850
3850
|
"""
|
3851
3851
|
:param Sequence[str] machine_types: Full machine-type names, e.g. `"n1-standard-16"`.
|
3852
3852
|
:param int rank: Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
3853
|
-
|
3854
|
-
- - -
|
3855
3853
|
"""
|
3856
3854
|
if machine_types is not None:
|
3857
3855
|
pulumi.set(__self__, "machine_types", machine_types)
|
@@ -3871,8 +3869,6 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyInstan
|
|
3871
3869
|
def rank(self) -> Optional[int]:
|
3872
3870
|
"""
|
3873
3871
|
Preference of this instance selection. A lower number means higher preference. Dataproc will first try to create a VM based on the machine-type with priority rank and fallback to next rank based on availability. Machine types and instance selections with the same priority have the same preference.
|
3874
|
-
|
3875
|
-
- - -
|
3876
3872
|
"""
|
3877
3873
|
return pulumi.get(self, "rank")
|
3878
3874
|
|
@@ -3952,8 +3948,9 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
3952
3948
|
standard_capacity_base: Optional[int] = None,
|
3953
3949
|
standard_capacity_percent_above_base: Optional[int] = None):
|
3954
3950
|
"""
|
3955
|
-
:param int standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
3956
|
-
:param int standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
3951
|
+
:param int standard_capacity_base: The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
3952
|
+
:param int standard_capacity_percent_above_base: The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
3953
|
+
- - -
|
3957
3954
|
"""
|
3958
3955
|
if standard_capacity_base is not None:
|
3959
3956
|
pulumi.set(__self__, "standard_capacity_base", standard_capacity_base)
|
@@ -3964,7 +3961,7 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
3964
3961
|
@pulumi.getter(name="standardCapacityBase")
|
3965
3962
|
def standard_capacity_base(self) -> Optional[int]:
|
3966
3963
|
"""
|
3967
|
-
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need.
|
3964
|
+
The base capacity that will always use Standard VMs to avoid risk of more preemption than the minimum capacity you need. Dataproc will create only standard VMs until it reaches standardCapacityBase, then it will start using standardCapacityPercentAboveBase to mix Spot with Standard VMs. eg. If 15 instances are requested and standardCapacityBase is 5, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances.
|
3968
3965
|
"""
|
3969
3966
|
return pulumi.get(self, "standard_capacity_base")
|
3970
3967
|
|
@@ -3972,7 +3969,8 @@ class ClusterClusterConfigPreemptibleWorkerConfigInstanceFlexibilityPolicyProvis
|
|
3972
3969
|
@pulumi.getter(name="standardCapacityPercentAboveBase")
|
3973
3970
|
def standard_capacity_percent_above_base(self) -> Optional[int]:
|
3974
3971
|
"""
|
3975
|
-
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs.
|
3972
|
+
The percentage of target capacity that should use Standard VM. The remaining percentage will use Spot VMs. The percentage applies only to the capacity above standardCapacityBase. eg. If 15 instances are requested and standardCapacityBase is 5 and standardCapacityPercentAboveBase is 30, Dataproc will create 5 standard VMs and then start mixing spot and standard VMs for remaining 10 instances. The mix will be 30% standard and 70% spot.
|
3973
|
+
- - -
|
3976
3974
|
"""
|
3977
3975
|
return pulumi.get(self, "standard_capacity_percent_above_base")
|
3978
3976
|
|
@@ -449,7 +449,7 @@ class TargetSite(pulumi.CustomResource):
|
|
449
449
|
basic = gcp.discoveryengine.TargetSite("basic",
|
450
450
|
location=basic_data_store.location,
|
451
451
|
data_store_id=basic_data_store.data_store_id,
|
452
|
-
provided_uri_pattern="
|
452
|
+
provided_uri_pattern="cloud.google.com/docs/*",
|
453
453
|
type="INCLUDE",
|
454
454
|
exact_match=False)
|
455
455
|
```
|
@@ -471,7 +471,7 @@ class TargetSite(pulumi.CustomResource):
|
|
471
471
|
advanced = gcp.discoveryengine.TargetSite("advanced",
|
472
472
|
location=advanced_data_store.location,
|
473
473
|
data_store_id=advanced_data_store.data_store_id,
|
474
|
-
provided_uri_pattern="
|
474
|
+
provided_uri_pattern="cloud.google.com/docs/*",
|
475
475
|
type="INCLUDE",
|
476
476
|
exact_match=False)
|
477
477
|
```
|
@@ -555,7 +555,7 @@ class TargetSite(pulumi.CustomResource):
|
|
555
555
|
basic = gcp.discoveryengine.TargetSite("basic",
|
556
556
|
location=basic_data_store.location,
|
557
557
|
data_store_id=basic_data_store.data_store_id,
|
558
|
-
provided_uri_pattern="
|
558
|
+
provided_uri_pattern="cloud.google.com/docs/*",
|
559
559
|
type="INCLUDE",
|
560
560
|
exact_match=False)
|
561
561
|
```
|
@@ -577,7 +577,7 @@ class TargetSite(pulumi.CustomResource):
|
|
577
577
|
advanced = gcp.discoveryengine.TargetSite("advanced",
|
578
578
|
location=advanced_data_store.location,
|
579
579
|
data_store_id=advanced_data_store.data_store_id,
|
580
|
-
provided_uri_pattern="
|
580
|
+
provided_uri_pattern="cloud.google.com/docs/*",
|
581
581
|
type="INCLUDE",
|
582
582
|
exact_match=False)
|
583
583
|
```
|
pulumi_gcp/eventarc/__init__.py
CHANGED
pulumi_gcp/eventarc/_inputs.py
CHANGED
@@ -15,6 +15,8 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'MessageBusLoggingConfigArgs',
|
19
|
+
'MessageBusLoggingConfigArgsDict',
|
18
20
|
'TriggerDestinationArgs',
|
19
21
|
'TriggerDestinationArgsDict',
|
20
22
|
'TriggerDestinationCloudRunServiceArgs',
|
@@ -35,6 +37,44 @@ __all__ = [
|
|
35
37
|
|
36
38
|
MYPY = False
|
37
39
|
|
40
|
+
if not MYPY:
|
41
|
+
class MessageBusLoggingConfigArgsDict(TypedDict):
|
42
|
+
log_severity: NotRequired[pulumi.Input[str]]
|
43
|
+
"""
|
44
|
+
Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
45
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
46
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
47
|
+
"""
|
48
|
+
elif False:
|
49
|
+
MessageBusLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
50
|
+
|
51
|
+
@pulumi.input_type
|
52
|
+
class MessageBusLoggingConfigArgs:
|
53
|
+
def __init__(__self__, *,
|
54
|
+
log_severity: Optional[pulumi.Input[str]] = None):
|
55
|
+
"""
|
56
|
+
:param pulumi.Input[str] log_severity: Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
57
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
58
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
59
|
+
"""
|
60
|
+
if log_severity is not None:
|
61
|
+
pulumi.set(__self__, "log_severity", log_severity)
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="logSeverity")
|
65
|
+
def log_severity(self) -> Optional[pulumi.Input[str]]:
|
66
|
+
"""
|
67
|
+
Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
68
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
69
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
70
|
+
"""
|
71
|
+
return pulumi.get(self, "log_severity")
|
72
|
+
|
73
|
+
@log_severity.setter
|
74
|
+
def log_severity(self, value: Optional[pulumi.Input[str]]):
|
75
|
+
pulumi.set(self, "log_severity", value)
|
76
|
+
|
77
|
+
|
38
78
|
if not MYPY:
|
39
79
|
class TriggerDestinationArgsDict(TypedDict):
|
40
80
|
cloud_function: NotRequired[pulumi.Input[str]]
|