pulumi-gcp 8.21.0a1741156431__py3-none-any.whl → 8.22.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 +96 -0
- pulumi_gcp/alloydb/_inputs.py +66 -0
- pulumi_gcp/alloydb/cluster.py +148 -0
- pulumi_gcp/alloydb/instance.py +28 -28
- pulumi_gcp/alloydb/outputs.py +95 -0
- pulumi_gcp/apihub/__init__.py +1 -0
- pulumi_gcp/apihub/host_project_registration.py +535 -0
- pulumi_gcp/backupdisasterrecovery/_inputs.py +3 -3
- pulumi_gcp/backupdisasterrecovery/outputs.py +4 -4
- pulumi_gcp/bigquery/table.py +1 -1
- pulumi_gcp/certificatemanager/certificate.py +53 -7
- pulumi_gcp/certificatemanager/outputs.py +8 -2
- pulumi_gcp/compute/__init__.py +6 -0
- pulumi_gcp/compute/_inputs.py +1370 -17
- pulumi_gcp/compute/backend_service.py +209 -14
- pulumi_gcp/compute/ca_external_account_key.py +48 -3
- pulumi_gcp/compute/disk.py +403 -0
- pulumi_gcp/compute/firewall_policy_association.py +28 -2
- pulumi_gcp/compute/get_backend_service.py +12 -1
- pulumi_gcp/compute/get_disk.py +78 -1
- pulumi_gcp/compute/get_instant_snapshot_iam_policy.py +182 -0
- pulumi_gcp/compute/get_region_disk.py +23 -1
- pulumi_gcp/compute/get_region_ssl_policy.py +203 -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 +1952 -29
- pulumi_gcp/compute/region_backend_service.py +207 -14
- pulumi_gcp/compute/region_disk.py +114 -0
- pulumi_gcp/compute/route.py +228 -2
- pulumi_gcp/compute/shared_vpc_service_project.py +0 -4
- pulumi_gcp/compute/subnetwork.py +147 -0
- pulumi_gcp/compute/url_map.py +8 -0
- pulumi_gcp/container/_inputs.py +6 -6
- pulumi_gcp/container/outputs.py +8 -8
- 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/datastream/_inputs.py +273 -0
- pulumi_gcp/datastream/connection_profile.py +54 -2
- pulumi_gcp/datastream/outputs.py +224 -0
- pulumi_gcp/discoveryengine/target_site.py +4 -4
- pulumi_gcp/eventarc/__init__.py +2 -0
- pulumi_gcp/eventarc/_inputs.py +80 -0
- pulumi_gcp/eventarc/channel.py +85 -93
- pulumi_gcp/eventarc/google_api_source.py +997 -0
- pulumi_gcp/eventarc/message_bus.py +927 -0
- pulumi_gcp/eventarc/outputs.py +82 -0
- pulumi_gcp/firebase/data_connect_service.py +40 -2
- 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/__init__.py +2 -0
- pulumi_gcp/iam/_inputs.py +84 -27
- pulumi_gcp/iam/folders_policy_binding.py +10 -26
- pulumi_gcp/iam/oauth_client.py +979 -0
- pulumi_gcp/iam/oauth_client_credential.py +641 -0
- pulumi_gcp/iam/organizations_policy_binding.py +8 -24
- pulumi_gcp/iam/outputs.py +56 -18
- pulumi_gcp/iam/principal_access_boundary_policy.py +58 -22
- pulumi_gcp/iam/projects_policy_binding.py +8 -24
- pulumi_gcp/iam/workforce_pool_provider.py +2 -2
- pulumi_gcp/kms/crypto_key_version.py +14 -7
- pulumi_gcp/memorystore/__init__.py +1 -0
- pulumi_gcp/memorystore/get_instance.py +425 -0
- pulumi_gcp/memorystore/outputs.py +582 -0
- pulumi_gcp/monitoring/_inputs.py +15 -18
- pulumi_gcp/monitoring/alert_policy.py +46 -0
- pulumi_gcp/monitoring/outputs.py +10 -12
- pulumi_gcp/networkconnectivity/hub.py +84 -0
- pulumi_gcp/networksecurity/__init__.py +1 -0
- pulumi_gcp/networksecurity/_inputs.py +30 -18
- pulumi_gcp/networksecurity/backend_authentication_config.py +847 -0
- pulumi_gcp/networksecurity/intercept_deployment.py +178 -94
- pulumi_gcp/networksecurity/intercept_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/intercept_endpoint_group.py +161 -66
- pulumi_gcp/networksecurity/intercept_endpoint_group_association.py +137 -80
- pulumi_gcp/networksecurity/mirroring_deployment.py +178 -94
- pulumi_gcp/networksecurity/mirroring_deployment_group.py +161 -77
- pulumi_gcp/networksecurity/mirroring_endpoint_group.py +161 -80
- pulumi_gcp/networksecurity/mirroring_endpoint_group_association.py +137 -105
- pulumi_gcp/networksecurity/outputs.py +20 -12
- pulumi_gcp/networkservices/endpoint_policy.py +12 -0
- pulumi_gcp/networkservices/grpc_route.py +128 -12
- pulumi_gcp/networkservices/http_route.py +16 -0
- pulumi_gcp/networkservices/mesh.py +16 -0
- pulumi_gcp/networkservices/service_binding.py +14 -0
- pulumi_gcp/networkservices/tcp_route.py +16 -0
- pulumi_gcp/networkservices/tls_route.py +12 -0
- 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/tpu/_inputs.py +21 -1
- pulumi_gcp/tpu/outputs.py +13 -1
- pulumi_gcp/tpu/v2_vm.py +2 -0
- pulumi_gcp/vmwareengine/_inputs.py +6 -0
- pulumi_gcp/vmwareengine/outputs.py +8 -0
- pulumi_gcp/workstations/workstation_cluster.py +137 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/METADATA +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/RECORD +110 -95
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/WHEEL +1 -1
- {pulumi_gcp-8.21.0a1741156431.dist-info → pulumi_gcp-8.22.0.dist-info}/top_level.txt +0 -0
pulumi_gcp/datastream/outputs.py
CHANGED
@@ -24,6 +24,9 @@ __all__ = [
|
|
24
24
|
'ConnectionProfileOracleProfile',
|
25
25
|
'ConnectionProfilePostgresqlProfile',
|
26
26
|
'ConnectionProfilePrivateConnectivity',
|
27
|
+
'ConnectionProfileSalesforceProfile',
|
28
|
+
'ConnectionProfileSalesforceProfileOauth2ClientCredentials',
|
29
|
+
'ConnectionProfileSalesforceProfileUserCredentials',
|
27
30
|
'ConnectionProfileSqlServerProfile',
|
28
31
|
'PrivateConnectionError',
|
29
32
|
'PrivateConnectionVpcPeeringConfig',
|
@@ -650,6 +653,227 @@ class ConnectionProfilePrivateConnectivity(dict):
|
|
650
653
|
return pulumi.get(self, "private_connection")
|
651
654
|
|
652
655
|
|
656
|
+
@pulumi.output_type
|
657
|
+
class ConnectionProfileSalesforceProfile(dict):
|
658
|
+
@staticmethod
|
659
|
+
def __key_warning(key: str):
|
660
|
+
suggest = None
|
661
|
+
if key == "oauth2ClientCredentials":
|
662
|
+
suggest = "oauth2_client_credentials"
|
663
|
+
elif key == "userCredentials":
|
664
|
+
suggest = "user_credentials"
|
665
|
+
|
666
|
+
if suggest:
|
667
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfile. Access the value via the '{suggest}' property getter instead.")
|
668
|
+
|
669
|
+
def __getitem__(self, key: str) -> Any:
|
670
|
+
ConnectionProfileSalesforceProfile.__key_warning(key)
|
671
|
+
return super().__getitem__(key)
|
672
|
+
|
673
|
+
def get(self, key: str, default = None) -> Any:
|
674
|
+
ConnectionProfileSalesforceProfile.__key_warning(key)
|
675
|
+
return super().get(key, default)
|
676
|
+
|
677
|
+
def __init__(__self__, *,
|
678
|
+
domain: str,
|
679
|
+
oauth2_client_credentials: Optional['outputs.ConnectionProfileSalesforceProfileOauth2ClientCredentials'] = None,
|
680
|
+
user_credentials: Optional['outputs.ConnectionProfileSalesforceProfileUserCredentials'] = None):
|
681
|
+
"""
|
682
|
+
:param str domain: Domain for the Salesforce Org.
|
683
|
+
:param 'ConnectionProfileSalesforceProfileOauth2ClientCredentialsArgs' oauth2_client_credentials: OAuth credentials to use for Salesforce authentication.
|
684
|
+
Structure is documented below.
|
685
|
+
:param 'ConnectionProfileSalesforceProfileUserCredentialsArgs' user_credentials: User credentials to use for Salesforce authentication.
|
686
|
+
Structure is documented below.
|
687
|
+
"""
|
688
|
+
pulumi.set(__self__, "domain", domain)
|
689
|
+
if oauth2_client_credentials is not None:
|
690
|
+
pulumi.set(__self__, "oauth2_client_credentials", oauth2_client_credentials)
|
691
|
+
if user_credentials is not None:
|
692
|
+
pulumi.set(__self__, "user_credentials", user_credentials)
|
693
|
+
|
694
|
+
@property
|
695
|
+
@pulumi.getter
|
696
|
+
def domain(self) -> str:
|
697
|
+
"""
|
698
|
+
Domain for the Salesforce Org.
|
699
|
+
"""
|
700
|
+
return pulumi.get(self, "domain")
|
701
|
+
|
702
|
+
@property
|
703
|
+
@pulumi.getter(name="oauth2ClientCredentials")
|
704
|
+
def oauth2_client_credentials(self) -> Optional['outputs.ConnectionProfileSalesforceProfileOauth2ClientCredentials']:
|
705
|
+
"""
|
706
|
+
OAuth credentials to use for Salesforce authentication.
|
707
|
+
Structure is documented below.
|
708
|
+
"""
|
709
|
+
return pulumi.get(self, "oauth2_client_credentials")
|
710
|
+
|
711
|
+
@property
|
712
|
+
@pulumi.getter(name="userCredentials")
|
713
|
+
def user_credentials(self) -> Optional['outputs.ConnectionProfileSalesforceProfileUserCredentials']:
|
714
|
+
"""
|
715
|
+
User credentials to use for Salesforce authentication.
|
716
|
+
Structure is documented below.
|
717
|
+
"""
|
718
|
+
return pulumi.get(self, "user_credentials")
|
719
|
+
|
720
|
+
|
721
|
+
@pulumi.output_type
|
722
|
+
class ConnectionProfileSalesforceProfileOauth2ClientCredentials(dict):
|
723
|
+
@staticmethod
|
724
|
+
def __key_warning(key: str):
|
725
|
+
suggest = None
|
726
|
+
if key == "clientId":
|
727
|
+
suggest = "client_id"
|
728
|
+
elif key == "clientSecret":
|
729
|
+
suggest = "client_secret"
|
730
|
+
elif key == "secretManagerStoredClientSecret":
|
731
|
+
suggest = "secret_manager_stored_client_secret"
|
732
|
+
|
733
|
+
if suggest:
|
734
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfileOauth2ClientCredentials. Access the value via the '{suggest}' property getter instead.")
|
735
|
+
|
736
|
+
def __getitem__(self, key: str) -> Any:
|
737
|
+
ConnectionProfileSalesforceProfileOauth2ClientCredentials.__key_warning(key)
|
738
|
+
return super().__getitem__(key)
|
739
|
+
|
740
|
+
def get(self, key: str, default = None) -> Any:
|
741
|
+
ConnectionProfileSalesforceProfileOauth2ClientCredentials.__key_warning(key)
|
742
|
+
return super().get(key, default)
|
743
|
+
|
744
|
+
def __init__(__self__, *,
|
745
|
+
client_id: Optional[str] = None,
|
746
|
+
client_secret: Optional[str] = None,
|
747
|
+
secret_manager_stored_client_secret: Optional[str] = None):
|
748
|
+
"""
|
749
|
+
:param str client_id: Client ID to use for authentication.
|
750
|
+
:param str client_secret: Client secret to use for authentication.
|
751
|
+
:param str secret_manager_stored_client_secret: A reference to a Secret Manager resource name storing the client secret.
|
752
|
+
"""
|
753
|
+
if client_id is not None:
|
754
|
+
pulumi.set(__self__, "client_id", client_id)
|
755
|
+
if client_secret is not None:
|
756
|
+
pulumi.set(__self__, "client_secret", client_secret)
|
757
|
+
if secret_manager_stored_client_secret is not None:
|
758
|
+
pulumi.set(__self__, "secret_manager_stored_client_secret", secret_manager_stored_client_secret)
|
759
|
+
|
760
|
+
@property
|
761
|
+
@pulumi.getter(name="clientId")
|
762
|
+
def client_id(self) -> Optional[str]:
|
763
|
+
"""
|
764
|
+
Client ID to use for authentication.
|
765
|
+
"""
|
766
|
+
return pulumi.get(self, "client_id")
|
767
|
+
|
768
|
+
@property
|
769
|
+
@pulumi.getter(name="clientSecret")
|
770
|
+
def client_secret(self) -> Optional[str]:
|
771
|
+
"""
|
772
|
+
Client secret to use for authentication.
|
773
|
+
"""
|
774
|
+
return pulumi.get(self, "client_secret")
|
775
|
+
|
776
|
+
@property
|
777
|
+
@pulumi.getter(name="secretManagerStoredClientSecret")
|
778
|
+
def secret_manager_stored_client_secret(self) -> Optional[str]:
|
779
|
+
"""
|
780
|
+
A reference to a Secret Manager resource name storing the client secret.
|
781
|
+
"""
|
782
|
+
return pulumi.get(self, "secret_manager_stored_client_secret")
|
783
|
+
|
784
|
+
|
785
|
+
@pulumi.output_type
|
786
|
+
class ConnectionProfileSalesforceProfileUserCredentials(dict):
|
787
|
+
@staticmethod
|
788
|
+
def __key_warning(key: str):
|
789
|
+
suggest = None
|
790
|
+
if key == "secretManagerStoredPassword":
|
791
|
+
suggest = "secret_manager_stored_password"
|
792
|
+
elif key == "secretManagerStoredSecurityToken":
|
793
|
+
suggest = "secret_manager_stored_security_token"
|
794
|
+
elif key == "securityToken":
|
795
|
+
suggest = "security_token"
|
796
|
+
|
797
|
+
if suggest:
|
798
|
+
pulumi.log.warn(f"Key '{key}' not found in ConnectionProfileSalesforceProfileUserCredentials. Access the value via the '{suggest}' property getter instead.")
|
799
|
+
|
800
|
+
def __getitem__(self, key: str) -> Any:
|
801
|
+
ConnectionProfileSalesforceProfileUserCredentials.__key_warning(key)
|
802
|
+
return super().__getitem__(key)
|
803
|
+
|
804
|
+
def get(self, key: str, default = None) -> Any:
|
805
|
+
ConnectionProfileSalesforceProfileUserCredentials.__key_warning(key)
|
806
|
+
return super().get(key, default)
|
807
|
+
|
808
|
+
def __init__(__self__, *,
|
809
|
+
password: Optional[str] = None,
|
810
|
+
secret_manager_stored_password: Optional[str] = None,
|
811
|
+
secret_manager_stored_security_token: Optional[str] = None,
|
812
|
+
security_token: Optional[str] = None,
|
813
|
+
username: Optional[str] = None):
|
814
|
+
"""
|
815
|
+
:param str password: Password of the user.
|
816
|
+
:param str secret_manager_stored_password: A reference to a Secret Manager resource name storing the user's password.
|
817
|
+
:param str secret_manager_stored_security_token: A reference to a Secret Manager resource name storing the user's security token.
|
818
|
+
|
819
|
+
<a name="nested_salesforce_profile_oauth2_client_credentials"></a>The `oauth2_client_credentials` block supports:
|
820
|
+
:param str security_token: Security token of the user.
|
821
|
+
:param str username: Username to use for authentication.
|
822
|
+
"""
|
823
|
+
if password is not None:
|
824
|
+
pulumi.set(__self__, "password", password)
|
825
|
+
if secret_manager_stored_password is not None:
|
826
|
+
pulumi.set(__self__, "secret_manager_stored_password", secret_manager_stored_password)
|
827
|
+
if secret_manager_stored_security_token is not None:
|
828
|
+
pulumi.set(__self__, "secret_manager_stored_security_token", secret_manager_stored_security_token)
|
829
|
+
if security_token is not None:
|
830
|
+
pulumi.set(__self__, "security_token", security_token)
|
831
|
+
if username is not None:
|
832
|
+
pulumi.set(__self__, "username", username)
|
833
|
+
|
834
|
+
@property
|
835
|
+
@pulumi.getter
|
836
|
+
def password(self) -> Optional[str]:
|
837
|
+
"""
|
838
|
+
Password of the user.
|
839
|
+
"""
|
840
|
+
return pulumi.get(self, "password")
|
841
|
+
|
842
|
+
@property
|
843
|
+
@pulumi.getter(name="secretManagerStoredPassword")
|
844
|
+
def secret_manager_stored_password(self) -> Optional[str]:
|
845
|
+
"""
|
846
|
+
A reference to a Secret Manager resource name storing the user's password.
|
847
|
+
"""
|
848
|
+
return pulumi.get(self, "secret_manager_stored_password")
|
849
|
+
|
850
|
+
@property
|
851
|
+
@pulumi.getter(name="secretManagerStoredSecurityToken")
|
852
|
+
def secret_manager_stored_security_token(self) -> Optional[str]:
|
853
|
+
"""
|
854
|
+
A reference to a Secret Manager resource name storing the user's security token.
|
855
|
+
|
856
|
+
<a name="nested_salesforce_profile_oauth2_client_credentials"></a>The `oauth2_client_credentials` block supports:
|
857
|
+
"""
|
858
|
+
return pulumi.get(self, "secret_manager_stored_security_token")
|
859
|
+
|
860
|
+
@property
|
861
|
+
@pulumi.getter(name="securityToken")
|
862
|
+
def security_token(self) -> Optional[str]:
|
863
|
+
"""
|
864
|
+
Security token of the user.
|
865
|
+
"""
|
866
|
+
return pulumi.get(self, "security_token")
|
867
|
+
|
868
|
+
@property
|
869
|
+
@pulumi.getter
|
870
|
+
def username(self) -> Optional[str]:
|
871
|
+
"""
|
872
|
+
Username to use for authentication.
|
873
|
+
"""
|
874
|
+
return pulumi.get(self, "username")
|
875
|
+
|
876
|
+
|
653
877
|
@pulumi.output_type
|
654
878
|
class ConnectionProfileSqlServerProfile(dict):
|
655
879
|
def __init__(__self__, *,
|
@@ -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
@@ -6,7 +6,9 @@ from .. import _utilities
|
|
6
6
|
import typing
|
7
7
|
# Export this package's modules as members:
|
8
8
|
from .channel import *
|
9
|
+
from .google_api_source import *
|
9
10
|
from .google_channel_config import *
|
11
|
+
from .message_bus import *
|
10
12
|
from .trigger import *
|
11
13
|
from ._inputs import *
|
12
14
|
from . import outputs
|
pulumi_gcp/eventarc/_inputs.py
CHANGED
@@ -15,6 +15,10 @@ else:
|
|
15
15
|
from .. import _utilities
|
16
16
|
|
17
17
|
__all__ = [
|
18
|
+
'GoogleApiSourceLoggingConfigArgs',
|
19
|
+
'GoogleApiSourceLoggingConfigArgsDict',
|
20
|
+
'MessageBusLoggingConfigArgs',
|
21
|
+
'MessageBusLoggingConfigArgsDict',
|
18
22
|
'TriggerDestinationArgs',
|
19
23
|
'TriggerDestinationArgsDict',
|
20
24
|
'TriggerDestinationCloudRunServiceArgs',
|
@@ -35,6 +39,82 @@ __all__ = [
|
|
35
39
|
|
36
40
|
MYPY = False
|
37
41
|
|
42
|
+
if not MYPY:
|
43
|
+
class GoogleApiSourceLoggingConfigArgsDict(TypedDict):
|
44
|
+
log_severity: NotRequired[pulumi.Input[str]]
|
45
|
+
"""
|
46
|
+
The minimum severity of logs that will be sent to Stackdriver/Platform
|
47
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
48
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
49
|
+
"""
|
50
|
+
elif False:
|
51
|
+
GoogleApiSourceLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
52
|
+
|
53
|
+
@pulumi.input_type
|
54
|
+
class GoogleApiSourceLoggingConfigArgs:
|
55
|
+
def __init__(__self__, *,
|
56
|
+
log_severity: Optional[pulumi.Input[str]] = None):
|
57
|
+
"""
|
58
|
+
:param pulumi.Input[str] log_severity: The minimum severity of logs that will be sent to Stackdriver/Platform
|
59
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
60
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
61
|
+
"""
|
62
|
+
if log_severity is not None:
|
63
|
+
pulumi.set(__self__, "log_severity", log_severity)
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="logSeverity")
|
67
|
+
def log_severity(self) -> Optional[pulumi.Input[str]]:
|
68
|
+
"""
|
69
|
+
The minimum severity of logs that will be sent to Stackdriver/Platform
|
70
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
71
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
72
|
+
"""
|
73
|
+
return pulumi.get(self, "log_severity")
|
74
|
+
|
75
|
+
@log_severity.setter
|
76
|
+
def log_severity(self, value: Optional[pulumi.Input[str]]):
|
77
|
+
pulumi.set(self, "log_severity", value)
|
78
|
+
|
79
|
+
|
80
|
+
if not MYPY:
|
81
|
+
class MessageBusLoggingConfigArgsDict(TypedDict):
|
82
|
+
log_severity: NotRequired[pulumi.Input[str]]
|
83
|
+
"""
|
84
|
+
Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
85
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
86
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
87
|
+
"""
|
88
|
+
elif False:
|
89
|
+
MessageBusLoggingConfigArgsDict: TypeAlias = Mapping[str, Any]
|
90
|
+
|
91
|
+
@pulumi.input_type
|
92
|
+
class MessageBusLoggingConfigArgs:
|
93
|
+
def __init__(__self__, *,
|
94
|
+
log_severity: Optional[pulumi.Input[str]] = None):
|
95
|
+
"""
|
96
|
+
:param pulumi.Input[str] log_severity: Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
97
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
98
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
99
|
+
"""
|
100
|
+
if log_severity is not None:
|
101
|
+
pulumi.set(__self__, "log_severity", log_severity)
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="logSeverity")
|
105
|
+
def log_severity(self) -> Optional[pulumi.Input[str]]:
|
106
|
+
"""
|
107
|
+
Optional. The minimum severity of logs that will be sent to Stackdriver/Platform
|
108
|
+
Telemetry. Logs at severitiy ≥ this value will be sent, unless it is NONE.
|
109
|
+
Possible values are: `NONE`, `DEBUG`, `INFO`, `NOTICE`, `WARNING`, `ERROR`, `CRITICAL`, `ALERT`, `EMERGENCY`.
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "log_severity")
|
112
|
+
|
113
|
+
@log_severity.setter
|
114
|
+
def log_severity(self, value: Optional[pulumi.Input[str]]):
|
115
|
+
pulumi.set(self, "log_severity", value)
|
116
|
+
|
117
|
+
|
38
118
|
if not MYPY:
|
39
119
|
class TriggerDestinationArgsDict(TypedDict):
|
40
120
|
cloud_function: NotRequired[pulumi.Input[str]]
|